/* Customer Stories Marquee */
.customer-stories-section {
  position: relative;
}

.stories-marquee {
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

.stories-marquee::before,
.stories-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 6;
  pointer-events: none;
}

.stories-marquee::before {
  left: 0;
  background: linear-gradient(to right, #F5EBD9 0%, rgba(245, 235, 217, 0) 100%);
}

.stories-marquee::after {
  right: 0;
  background: linear-gradient(to left, #F5EBD9 0%, rgba(245, 235, 217, 0) 100%);
}

.story-track {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

.story-track > div {
  position: relative;
  background: #7a8a67;
  border-radius: 26px;
  padding: 52px 28px 28px;
  min-width: 520px;
  max-width: 620px;
  height: auto;
  min-height: 240px;
  box-shadow: 0 14px 30px rgba(67, 72, 50, 0.25);
  overflow: visible;
}

.story-track > div h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-track > div p {
  color: #f7f4ee;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.story-track > div > img:first-child {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid #f5ebd9;
  box-shadow: 0 10px 20px rgba(48, 52, 32, 0.3);
  position: absolute;
  top: -18px;
  left: 24px;
}

.story-track > div > img:nth-child(2) {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: absolute;
  top: -18px;
  right: 24px;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
  .story-track {
    gap: 20px;
  }

  .story-track > div {
    min-width: 420px;
    padding: 48px 22px 22px;
  }
}

@media (max-width: 768px) {
  .stories-marquee {
    padding: 0 8px;
  }

  .story-track {
    gap: 16px;
  }

  .stories-marquee::before,
  .stories-marquee::after {
    width: 60px;
  }

  .story-track > div {
    min-width: 300px;
    padding: 44px 18px 20px;
  }

  .story-track > div p {
    font-size: 0.9rem;
  }
}

/* Anjeer Contact Form */
.anjeer-contact {
  background: #F5EBD9;
  padding: 40px 16px 10px;
}

.anjeer-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 247, 236, 0.95));
  border: 1px solid rgba(96, 70, 35, 0.15);
  box-shadow: 0 24px 50px rgba(78, 55, 25, 0.15);
  position: relative;
  overflow: hidden;
}

.anjeer-form-wrap::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(196, 92, 73, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.anjeer-form-wrap::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(107, 142, 35, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.anjeer-form-intro {
  position: relative;
  z-index: 1;
  color: #3d2a17;
}

.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b8e23;
  background: rgba(107, 142, 35, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.anjeer-form-intro h3 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-badges span {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(61, 42, 23, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
}

.anjeer-form {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(96, 70, 35, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4c331b;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(96, 70, 35, 0.2);
  background: #fffaf2;
  font-size: 0.95rem;
  color: #3d2a17;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #6b8e23;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.15);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.form-submit {
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #6b8e23, #4f6a19);
  box-shadow: 0 10px 20px rgba(79, 106, 25, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(79, 106, 25, 0.35);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  display: none;
}

.form-message.success {
  display: inline-block;
  color: #1b5e20;
  background: rgba(76, 175, 80, 0.15);
}

.form-message.error {
  display: inline-block;
  color: #b71c1c;
  background: rgba(244, 67, 54, 0.15);
}

@media (max-width: 1024px) {
  .anjeer-form-wrap {
    grid-template-columns: 1fr;
  }

  .anjeer-form-intro h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .anjeer-form-wrap {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .anjeer-form {
    padding: 18px;
  }
}

