/* ── HERO (Rotating Slideshow) ── */
  .hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-slideshow {
    position: absolute;
    inset: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 74, 80, 0.78) 0%, rgba(13, 74, 80, 0.6) 45%, rgba(20, 10, 3, 0.72) 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 6% 90px;
    max-width: 860px;
    margin: 0 auto;
    animation: fadeUp 1s 0.3s ease both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(28px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 146, 42, 0.18);
    border: 1px solid rgba(232, 185, 106, 0.55);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .hero h1 em {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-divider {
    width: 48px;
    height: 2px;
    background: var(--gold-light);
    margin: 0 auto 1.4rem;
    border-radius: 2px;
    opacity: 0.8;
  }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto 2.6rem;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 0.95rem 2.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter 0.3s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
  }

  .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 0.92rem 2.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
  }

  .hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.7rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .hero-dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }

  /* ── SECTIONS ── */
  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--teal-dark);
    margin-bottom: 1.2rem;
  }

  .section-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
  }

  .divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
  }

  /* ── SHOP PRODUCTS ── */
  .shop-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .shop-section {
    padding: 90px 5%;
    background: var(--warm-white);
  }

  .shop-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .shop-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .fp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .fp-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
    transform: translateY(-3px);
  }

  .fp-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 1.5rem;
  }

  .fp-body {
    padding: 1.1rem 1.4rem 0.8rem;
  }

  .fp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.3;
  }

  .fp-sub {
    font-size: 0.92rem;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 500;
  }

  .fp-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.4rem 1.2rem;
    border-top: 1px solid var(--border);
  }

  .fp-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal-dark);
  }

  .fp-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }

  .fp-btn:hover {
    background: #b8882e;
  }

  @media (max-width:1100px) {
    .fp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width:540px) {
    .fp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .fp-img {
      height: 200px;
      padding: 1rem;
    }
  }

  .fp-shop-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.4rem;
    border: 2px solid var(--teal-dark);
    color: var(--teal-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
  }

  .fp-shop-more-btn:hover {
    background: var(--teal-dark);
    color: #fff;
  }

  /* ── New Arrivals ── */
  .arrivals-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .arrivals-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
  }

  .arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .arrivals-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.25s;
  }

  .arrivals-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
  }

  .arrivals-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: var(--warm-white);
    padding: 1rem;
    display: block;
  }

  .arrivals-body {
    padding: 0.9rem 1rem 0.7rem;
    flex: 1;
  }

  .arrivals-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }

  .arrivals-sub {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
  }

  .arrivals-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem 0.9rem;
    border-top: 1px solid var(--border);
  }

  .arrivals-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal-dark);
  }

  .arrivals-btn {
    background: var(--gold);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
  }

  .arrivals-btn:hover {
    background: #b8882e;
  }

  .arrivals-shop-more {
    text-align: center;
    margin-top: 2.5rem;
  }

  @media(max-width:1100px) {
    .arrivals-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:540px) {
    .arrivals-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
    }

    .arrivals-img {
      padding: 0.7rem;
    }

    .arrivals-name {
      font-size: 0.95rem;
    }

    .arrivals-price {
      font-size: 1.1rem;
    }
  }

  /* ── WHAT IS TALBEENA ── */
  .what-section {
    padding: 90px 5%;
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .what-images {
    position: relative;
    min-height: 460px;
  }

  .what-img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    aspect-ratio: 3/4;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  }

  .what-img-front {
    position: absolute;
    top: 60px;
    right: 0;
    width: 65%;
    aspect-ratio: 3/4;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    border: 4px solid #fff;
  }

  .what-img-badge {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    font-size: 0.82rem;
    color: var(--teal-dark);
    font-weight: 700;
  }

  .what-img-badge span {
    font-size: 1.4rem;
  }

  .what-content .section-label {
    text-align: left;
  }

  .what-content .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-align: left;
  }

  .what-content .divider {
    margin: 1rem 0 1.5rem;
  }

  .what-content p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .what-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
  }

  .what-btn:hover {
    background: #b8882e;
    transform: translateX(3px);
  }

  /* ── HADITH ── */
  .hadith-section {
    background: var(--teal-dark);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
  }

  .hadith-section::before {
    content: '\273B';
    position: absolute;
    font-size: 20rem;
    opacity: 0.04;
    color: #fff;
    top: -5rem;
    right: -3rem;
    line-height: 1;
  }

  .hadith-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .hadith-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
  }

  .hadith-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: #fff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.2rem;
  }

  .hadith-text span {
    color: var(--gold-light);
  }

  .hadith-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hadith-stars {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin: 1.2rem 0 0;
  }

  /* ── BENEFITS ── */
  .benefits-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .benefit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }

  .benefit-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .benefit-body {
    padding: 1.5rem;
  }

  .benefit-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 0.6rem;
  }

  .benefit-body p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text-mid);
  }

  /* ── TESTIMONIALS (Carousel) ── */
  .testimonials-section {
    padding: 90px 5%;
    background: var(--warm-white);
    overflow: hidden;
  }

  .testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .testimonials-track-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .testimonials-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1rem;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(25% - 0.9rem);
    min-width: 240px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    padding: 1.6rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .testimonial-stars {
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    font-style: italic;
  }

  .testimonial-author strong {
    font-size: 0.9rem;
    color: var(--text-dark);
  }

  .testimonial-author .location {
    font-size: 0.78rem;
    color: var(--text-soft);
    display: block;
    margin-top: 2px;
  }

  .testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0e4a4e;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
    color: #fff;
  }

  .testimonial-arrow:hover {
    background: #c49a45;
    transform: translateY(-50%) scale(1.08);
  }

  .testimonial-arrow.prev {
    left: 0;
  }

  .testimonial-arrow.next {
    right: 0;
  }

  @media (max-width:1024px) {
    .testimonial-card {
      flex: 0 0 calc(33.333% - 0.8rem);
    }
  }

  @media (max-width:768px) {
    .testimonial-card {
      flex: 0 0 80%;
      min-width: 0;
    }

    .testimonials-track-wrapper {
      padding: 0 2.5rem;
    }
  }

  @media (max-width:480px) {
    .testimonial-card {
      flex: 0 0 90%;
    }

    .testimonials-track-wrapper {
      padding: 0 2rem;
    }
  }

  /* ── BLOG ── */
  .blog-section {
    padding: 80px 5%;
    background: var(--cream);
    text-align: center;
  }

  .blog-header {
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
  }

  .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  }

  .blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .blog-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.7rem;
    line-height: 1.3;
  }

  .blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    flex: 1;
    margin-bottom: 1.2rem;
  }

  .blog-card-read {
    display: inline-block;
    margin-top: auto;
    padding: 0.65rem 1.4rem;
    background: var(--teal-dark);
    color: #fff;
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    transition: background 0.2s;
  }

  .blog-card-read:hover {
    background: var(--teal);
  }

  @media (max-width:900px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:768px) {
    .blog-section {
      padding: 60px 0 60px 5%;
    }

    .blog-grid {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-right: 5%;
      padding-bottom: 1rem;
      grid-template-columns: unset;
    }

    .blog-grid::-webkit-scrollbar {
      display: none;
    }

    .blog-card {
      flex: 0 0 78vw;
      scroll-snap-align: start;
    }
  }

  @media (max-width:480px) {
    .blog-card {
      flex: 0 0 85vw;
    }
  }

  @media (max-width: 768px) {
    .what-section {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 60px 5%;
    }

    .what-images {
      order: 2;
      min-height: unset;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }

    .what-img-back {
      position: static;
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    }

    .what-img-front {
      position: static;
      width: 100%;
      aspect-ratio: 3/4;
      top: unset;
      right: unset;
      border-radius: 14px;
      border: 3px solid #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    }

    .what-img-badge {
      display: none;
    }

    .what-content {
      order: 1;
    }

    .benefits-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .newsletter-form {
      flex-direction: column;
    }
  }

  @media (max-width: 480px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }


  /* ── NEW SECTIONS CSS ── */
  .benefits-section-new {
    padding: 90px 5%;
    background: #fcf9f2;
    position: relative;
    overflow: hidden;
  }

  .benefits-header-new {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .benefits-header-new .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c49a45;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

  .benefits-header-new .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0e4a4e;
    margin-bottom: 1rem;
  }

  .benefits-header-new .divider {
    width: 50px;
    height: 2px;
    background: #c49a45;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
  }

  .benefits-header-new .section-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
  }

  .benefits-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2.5rem;
    flex-wrap: nowrap;
  }

  .benefits-left {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .benefits-left img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
  }

  .benefits-right {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    z-index: 2;
    padding: 1rem 0;
    width: 100%;
  }

  .benefit-item {
    flex: 1 1 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid #eee1cf;
    border-radius: 12px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefit-item:hover {
    transform: translateY(-5px);
    border-color: #c49a45;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  }

  .benefit-icon-new {
    font-size: 2.4rem;
    color: #0e4a4e;
    margin-bottom: 1.2rem;
    display: inline-block;
  }

  .benefit-item h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .benefit-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }

  @media (max-width:1100px) {
    .benefits-layout {
      flex-wrap: wrap;
    }

    .benefits-right {
      flex-wrap: wrap;
      justify-content: center;
    }

    .benefit-item {
      flex: 0 1 200px;
    }
  }

  @media (max-width:768px) {
    .benefits-layout {
      flex-direction: column;
      gap: 2rem;
    }

    .benefits-left {
      display: none;
    }

    .benefits-right {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      flex-wrap: unset;
    }

    .benefit-item {
      flex: unset;
      min-width: 0;
    }
  }

  @media (max-width:480px) {
    .benefits-right {
      grid-template-columns: 1fr;
    }
  }

  .hadith-img-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 5% 90px;
    min-height: 340px;
    display: flex;
    align-items: stretch;
  }

  .hadith-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }

  .hadith-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0b3d3e 0%, #0b3d3e 48%, rgba(11, 61, 62, 0.55) 70%, transparent 100%);
  }

  .hadith-img-content {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 3.5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hadith-img-label {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1.4rem;
  }

  .hadith-arabic {
    font-family: 'Amiri', 'Scheherazade New', 'Traditional Arabic', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.7;
    color: #e8d5a3;
    text-align: left;
    direction: rtl;
    margin-bottom: 1.6rem;
    font-weight: 700;
  }

  .hadith-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.7;
    color: #fff;
    font-style: italic;
    margin-bottom: 0.7rem;
  }

  .hadith-author {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .hadith-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hadith-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  .hadith-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 213, 163, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  @media (max-width:768px) {
    .hadith-img-section {
      margin: 0 0 60px;
      border-radius: 0;
      min-height: auto;
    }

    .hadith-img-overlay {
      background: linear-gradient(to bottom, rgba(11, 61, 62, 0.92) 0%, rgba(11, 61, 62, 0.88) 70%, rgba(11, 61, 62, 0.6) 100%);
    }

    .hadith-img-content {
      width: 100%;
      padding: 3rem 6%;
    }

    .hadith-arabic {
      font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .hadith-badges {
      gap: 1.2rem;
    }
  }

  .ingredients-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .ingredients-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    background: #fffdf9;
    border: 1px solid #f0e6d2;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }

  .ingredients-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .ingredients-left .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.2;
    color: #0e4a4e;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .ingredients-left .divider-left {
    width: 40px;
    height: 2px;
    background: #c49a45;
    margin: 0 auto 1.5rem;
  }

  .ingredients-left .section-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  .ingredients-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 1rem;
    width: 100%;
  }

  .ingredient-card {
    flex: 0 0 calc(100% / 7 - 1rem);
    border: 1px solid #f0e6d2;
    border-radius: 16px;
    padding: 0.35rem 0.35rem 0.6rem;
    text-align: center;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #e5d8c1;
  }

  .ingredient-img-wrapper {
    background: #f5ede0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }

  .ingredient-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .ingredient-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #0e4a4e;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
  }

  @media (max-width: 1200px) {
    .ingredient-card {
      flex: 0 0 calc(100% / 7 - 1rem);
    }
  }

  @media (max-width: 900px) {
    .ingredients-container {
      grid-template-columns: 1fr;
      padding: 2.5rem 1.5rem;
      text-align: center;
      gap: 2rem;
    }

    .ingredients-left {
      text-align: center;
    }

    .ingredients-left .divider-left {
      margin: 0 auto 1.5rem;
    }

    .ingredient-card {
      flex: 0 0 calc(100% / 3 - 1rem);
    }
  }

  @media (max-width: 600px) {
    .ingredients-section {
      padding: 60px 4%;
    }

    .ingredients-container {
      padding: 2rem 1.2rem;
      gap: 1.8rem;
      grid-template-columns: 1fr;
    }

    .ingredients-left .section-title {
      font-size: 2.4rem;
    }

    .ingredients-left .section-body {
      font-size: 1rem;
    }

    .ingredients-right {
      gap: 1.2rem 1rem;
      max-width: 100%;
    }

    .ingredient-card {
      flex: 0 0 calc(33.333% - 1rem);
      padding: 0.3rem 0.3rem 0.5rem;
      gap: 0.35rem;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .ingredient-img-wrapper {
      width: 100%;
      aspect-ratio: 1 / 1;
      height: auto;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ingredient-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ingredient-card h4 {
      font-size: 0.85rem;
      line-height: 1.2;
      text-align: center;
    }
  }

  @media (max-width: 400px) {
    .ingredients-right { gap: 0.6rem; }
    .ingredient-card {
      flex: 0 0 calc(33.333% - 0.6rem);
      padding: 0.25rem 0.25rem 0.45rem;
    }
    .ingredient-img-wrapper {
      width: 100%;
      aspect-ratio: 1 / 1;
      height: auto;
    }
  }

  /* ── For Every Age ── */
  .family-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .family-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
  }

  .family-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }

  .family-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s, box-shadow 0.35s;
  }

  .family-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  }

  .family-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .family-card:hover img {
    transform: scale(1.05);
  }

  .family-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 46, 50, 0.92) 0%, rgba(8, 46, 50, 0.3) 55%, transparent 100%);
  }

  .family-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.4rem 1.5rem;
    color: #fff;
  }

  .family-card-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
  }

  .family-card-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin: 0;
  }

  @media(max-width:900px) {
    .family-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:500px) {
    .family-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
    }

    .family-card-text h3 {
      font-size: 1.3rem;
    }

    .family-card-text p {
      font-size: 0.88rem;
    }
  }

  /* ── How to Prepare (redesigned) ── */
  .prepare-section {
    padding: 90px 5%;
    background: var(--warm-white);
  }

  .prepare-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
  }

  .prepare-content .section-label {
    text-align: left;
  }

  .prepare-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .prepare-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
  }

  .prepare-steps {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .prep-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .prep-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .prep-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.25rem;
  }

  .prep-body p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
  }

  .prepare-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 400px;
  }

  .prepare-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media(max-width:900px) {
    .prepare-section {
      padding: 60px 5%;
    }

    .prepare-layout {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .prepare-img-wrap {
      height: 280px;
      min-height: unset;
      border-radius: 16px;
    }
  }

  @media(max-width:480px) {
    .prepare-section {
      padding: 50px 4%;
    }

    .prepare-title {
      font-size: 2rem;
    }

    .prepare-subtitle {
      margin-bottom: 1.8rem;
    }

    .prepare-steps {
      gap: 1.2rem;
    }

    .prep-num {
      width: 34px;
      height: 34px;
      font-size: 0.85rem;
    }

    .prep-body h4 {
      font-size: 1.05rem;
    }

    .prepare-img-wrap {
      height: 240px;
      border-radius: 14px;
    }
  }

  /* ── Blessed Mothers ── */
  .blessed-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
  }

  .blessed-img {
    overflow: hidden;
  }

  .blessed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .blessed-content {
    background: #fdf4d3;
    padding: 5rem 5% 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blessed-content .section-label {
    text-align: left;
    margin-bottom: 0.8rem;
  }

  .blessed-content .divider {
    margin: 0.8rem 0 1.4rem;
  }

  .blessed-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .blessed-desc {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.4rem;
  }

  .blessed-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .blessed-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .blessed-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .blessed-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .blessed-btn:hover {
    background: #b8882e;
  }

  @media(max-width:900px) {
    .blessed-section {
      grid-template-columns: 1fr;
    }

    .blessed-img {
      min-height: 55vw;
    }

    .blessed-content {
      padding: 3rem 6%;
    }
  }

  /* ── Begin Your Journey CTA ── */
  .journey-section {
    padding: 100px 5%;
    background: var(--teal-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3Cpolygon points='40,14 66,28 66,52 40,66 14,52 14,28'/%3E%3C/g%3E%3C/svg%3E") center/80px 80px;
    pointer-events: none;
  }

  .journey-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .journey-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .journey-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  .journey-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
  }

  .journey-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
  }

  .journey-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .journey-btn-primary:hover {
    background: #b8882e;
    transform: translateY(-2px);
  }

  .journey-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }

  .journey-btn-outline:hover {
    border-color: #fff;
    transform: translateY(-2px);
  }

  .journey-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .journey-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .compare-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .compare-section-header {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }

  .compare-section-header .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #0e4a4e;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .compare-section-header .divider-gold {
    width: 44px;
    height: 2px;
    background: #c49a45;
    margin: 0.8rem auto 1rem;
  }

  .compare-section-header .section-body {
    font-size: 1rem;
    color: #777;
  }

  .compare-wrapper {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0e6d2;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
  }

  .compare-center {
    flex: 1;
    display: flex;
    position: relative;
    min-width: 0;
  }

  .compare-col {
    flex: 1;
    padding: 2rem 2.2rem;
  }

  .compare-col.regular {
    background: #fafafa;
    border-right: 1px solid #f0e6d2;
  }

  .compare-col.talbeena {
    background: #fff;
  }

  .compare-title {
    font-size: 1.05rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 1.2rem;
    color: #222;
    letter-spacing: 0.01em;
  }

  .compare-title.talbeena-title {
    color: #0e4a4e;
  }

  .compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .compare-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
  }

  .compare-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .compare-icon.cross {
    border: 2px solid #e05252;
    color: #e05252;
  }

  .compare-icon.check {
    background: #2a9d6e;
    color: #fff;
  }

  .compare-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #0e4a4e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.05em;
  }

  .compare-right {
    flex: 0 0 380px;
    overflow: hidden;
  }

  .compare-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  @media (max-width:1100px) {
    .compare-right {
      flex: 0 0 280px;
    }
  }

  @media (max-width:900px) {
    .compare-wrapper {
      flex-direction: column;
    }

    .compare-right {
      flex: 0 0 260px;
    }

    .compare-vs {
      display: flex;
    }
  }

  @media (max-width:600px) {
    .compare-center {
      flex-direction: column;
    }

    .compare-col {
      padding: 1.4rem 1.2rem;
    }

    .compare-col.regular {
      border-right: none;
      border-bottom: 1px solid #f0e6d2;
    }

    .compare-vs {
      display: none;
    }

    .compare-right {
      flex: 0 0 210px;
    }
  }

  .features-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 36px 5%;
    background: var(--warm-white);
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--teal-dark);
    font-weight: 700;
    white-space: nowrap;
  }

  .feature-icon {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
  }

  @media (max-width:768px) {
    .features-bar {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 28px 5%;
      gap: 0;
    }

    .features-bar::-webkit-scrollbar {
      display: none;
    }

    .feature-item {
      scroll-snap-align: start;
      flex-shrink: 0;
      padding: 0 1.8rem;
      border-right: 1px solid var(--border);
    }

    .feature-item:first-child {
      padding-left: 0;
    }

    .feature-item:last-child {
      border-right: none;
      padding-right: 5vw;
    }
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-accordion {
    border-top: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    cursor: pointer;
  }

  .faq-q {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--teal-dark);
    font-size: 1.05rem;
  }

  .faq-a {
    display: none;
    padding-top: 1rem;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cta-card {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: #fff;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(13, 74, 80, 0.2);
  }

  .cta-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .cta-card p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  @media (max-width:768px) {
    .faq-cta-section {
      grid-template-columns: 1fr;
    }
  }

  /* ── SCROLL FADE-IN ── */
  .fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-d1 {
    transition-delay: 0.1s;
  }

  .fade-in-d2 {
    transition-delay: 0.2s;
  }

  .fade-in-d3 {
    transition-delay: 0.3s;
  }

  .fade-in-d4 {
    transition-delay: 0.4s;
  }

  .fade-in-d5 {
    transition-delay: 0.5s;
  }

  /* ── VIDEO CAROUSEL ── */
  .video-carousel-section {
    padding: 90px 5%;
    background: var(--warm-white);
  }

  .video-carousel-container {
    max-width: 100%;
  }

  .video-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-carousel-header .section-title {
    margin-bottom: 0.8rem;
  }

  .video-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }

  .video-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: visible;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .video-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-item.active {
    opacity: 1;
    z-index: 10;
  }

  .carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 20;
  }

  .video-btn-unmute {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }

  .video-btn-unmute:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.08);
  }

  .video-btn-unmute.muted {
    background: rgba(200, 146, 42, 0.8);
  }

  /* Desktop: Arrow Navigation */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: background 0.2s, transform 0.2s;
  }

  .carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-arrow-prev {
    left: 16px;
  }

  .carousel-arrow-next {
    right: 16px;
  }

  /* Dots Indicator */
  .carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }

  .dot.active {
    background: #fff;
    transform: scale(1.25);
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .video-carousel-section {
      padding: 60px 4%;
    }

    .carousel-arrow {
      display: none;
    }

    .carousel-arrow-prev {
      left: 0;
    }

    .carousel-arrow-next {
      right: 0;
    }
  }

  @media (max-width: 480px) {
    .video-carousel-section {
      padding: 40px 4%;
    }

    .video-carousel-header {
      margin-bottom: 2rem;
    }

    .video-carousel-header .section-title {
      font-size: 1.8rem;
    }
  }

  /* ── FOLLOW US SECTION ── */
  .follow-us-section {
    padding: 90px 5%;
    background: var(--cream);
  }

  .follow-us-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .follow-us-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .follow-us-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.9rem;
  }

  .follow-us-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 1rem;
  }

  .follow-us-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .follow-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .follow-card {
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .follow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }

  .follow-card.instagram {
    background: linear-gradient(135deg, #c11b8e 0%, #ff006b 25%, #ff6b35 100%);
  }

  .follow-card.facebook {
    background: linear-gradient(135deg, #1f5fb8 0%, #0a66c2 100%);
  }

  .follow-card.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #c41e3a 100%);
  }

  .follow-card-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
  }

  .follow-card-content {
    flex: 1;
  }

  .follow-card-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 0.3rem;
  }

  .follow-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .follow-card-desc {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
  }

  .follow-card-arrow {
    font-size: 1.5rem;
    flex-shrink: 0;
    opacity: 0.8;
    transition: transform 0.3s;
  }

  .follow-card:hover .follow-card-arrow {
    transform: translateX(4px);
  }

  @media (max-width: 1024px) {
    .follow-us-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .follow-us-section {
      padding: 60px 5%;
    }

    .follow-us-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .follow-card {
      padding: 2rem;
      gap: 1.5rem;
    }

    .follow-card-icon {
      font-size: 2.5rem;
    }

    .follow-card-name {
      font-size: 1.2rem;
    }

    .follow-card-desc {
      font-size: 0.9rem;
    }
  }
