
    :root {
      --cream:     #FDF6EE;
      --ivory:     #FFF9F3;
      --burgundy:  #7D1C4A;
      --rose:      #B5436A;
      --gold:      #C9903C;
      --gold-lt:   #E8C27A;
      --peach:     #F2D5BB;
      --brown:     #3D1F14;
      --brown-lt:  #7A4A35;
      --muted:     #A07060;
      --white:     #FFFFFF;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
    }
    a{
      text-decoration: none!important;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--peach); }
    ::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

    /* ── SECTION TITLES ── */
    .section-label {
      font-family: 'Dancing Script', cursive;
      font-size: 1.3rem;
      color: var(--gold);
      display: block;
      margin-bottom: 4px;
      letter-spacing: 1px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--burgundy);
      line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--rose); }
    .divider-ornament {
      display: flex; align-items: center; gap: 10px;
      margin: 18px 0 32px;
    }
    .divider-ornament span { height: 1.5px; flex: 1; background: linear-gradient(to right, transparent, var(--gold-lt)); }
    .divider-ornament span:last-child { background: linear-gradient(to left, transparent, var(--gold-lt)); }
    .divider-ornament i { color: var(--gold); font-size: 1rem; }

    /* ─────────────────────────────────────────
       TOP BAR
    ───────────────────────────────────────── */
    .top-bar {
      background: var(--burgundy);
      color: rgba(255,255,255,.85);
      font-size: .8rem;
      padding: 6px 0;
      letter-spacing: .4px;
    }
    .top-bar a { color: var(--gold-lt); text-decoration: none; }
    .top-bar .social-icons a {
      width: 26px; height: 26px; display: inline-flex; align-items: center;
      justify-content: center; border-radius: 50%;
      background: rgba(255,255,255,.1); color: #fff;
      font-size: .75rem; transition: background .3s;
    }
    .top-bar .social-icons a:hover { background: var(--gold); }

    /* ─────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────── */
    #mainNav {
      background: var(--ivory);
      transition: all .4s ease;
      border-bottom: 1px solid rgba(197,144,60,.25);
    }
    #mainNav.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 30px rgba(125,28,74,.12);
    }
    /* Hover Dropdown */
.nav-item.dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
}

/* Remove Bootstrap default arrow */
.custom-dropdown::after{
    display: none;
}

/* Dropdown icon */
.dropdown-icon{
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s;
}

/* Rotate icon on hover */
.nav-item.dropdown:hover .dropdown-icon{
    transform: rotate(180deg);
}

/* Smooth dropdown */
.dropdown-menu{
    border-radius: 12px;
    border: none;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Dropdown items */
.dropdown-item{
    padding: 10px 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item:hover{
    background: #f8f1f1;
    color: #c2185b;
}
    
    .navbar-brand-wrap { display: flex; align-items: center; gap: 12px; }
    .main-logo{
    height: 45px;
    width: auto;
    object-fit: contain;
}
    .nav-link {
      font-size: .88rem; font-weight: 500; letter-spacing: .5px;
      color: var(--brown) !important; padding: 6px 14px !important;
      position: relative; text-transform: uppercase; transition: color .3s;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--gold);
      transition: left .3s, right .3s; border-radius: 2px;
    }
    .nav-link:hover, .nav-link.active { color: var(--burgundy) !important; }
    .nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
    .btn-book {
      background: linear-gradient(135deg,#7D1C4A,#D6A437)!important;
      color: #fff !important; border-radius: 30px;
      padding: 9px 24px !important; font-size: .82rem !important;
      letter-spacing: .8px; text-transform: uppercase; font-weight: 600;
      border: none; transition: all .3s; box-shadow: 0 4px 15px rgba(125,28,74,.3);
    }
    .btn-book:hover {
      transform: translateY(-2px); box-shadow: 0 8px 25px rgba(125,28,74,.4)!important;
    }
    

    /* ─────────────────────────────────────────
       HERO / BANNER
    ───────────────────────────────────────── */
  #hero{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Slider */
.hero-slider{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active{
    opacity: 1;
}
     .btn-primary-custom {
      background: linear-gradient(135deg,#7D1C4A,#D6A437);
      color: #fff; border: none; border-radius: 40px;
      padding: 14px 34px; font-size: .92rem; font-weight: 600;
      letter-spacing: .5px; transition: all .3s; cursor: pointer;
      box-shadow: 0 6px 24px rgba(125,28,74,.35);
      text-decoration: none; display: inline-block;
    }
    .btn-primary-custom:hover {
      transform: translateY(-3px); box-shadow: 0 10px 32px rgba(125,28,74,.45);
      color: #fff;
    }
    .btn-outline-custom {
      background: transparent; color: var(--burgundy);
      border: 2px solid var(--burgundy); border-radius: 40px;
      padding: 12px 32px; font-size: .92rem; font-weight: 600;
      letter-spacing: .5px; transition: all .3s; cursor: pointer;
      text-decoration: none; display: inline-block;
    }
    .btn-outline-custom:hover {
      background: var(--burgundy); color: #fff;
      transform: translateY(-3px);
    }
    
    /* ─────────────────────────────────────────
       MARQUEE STRIP
    ───────────────────────────────────────── */
    .marquee-strip {
      background: var(--burgundy); padding: 14px 0;
      overflow: hidden; white-space: nowrap;
    }
    .marquee-inner {
      display: inline-flex; gap: 0;
      animation: marqueeScroll 22s linear infinite;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0 36px; color: rgba(255,255,255,.85);
      font-size: .83rem; letter-spacing: 1.5px; text-transform: uppercase;
    }
    .marquee-item i { color: var(--gold-lt); font-size: .75rem; }
    @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─────────────────────────────────────────
       ABOUT
    ───────────────────────────────────────── */
    #about { padding: 75px 0; background: var(--ivory); position: relative; overflow: hidden; }
    #about::before {
      content: ''; position: absolute; top: 0; right: 0;
      width: 350px; height: 350px; border-radius: 50%;
      background: radial-gradient(circle, rgba(197,144,60,.08), transparent);
      transform: translate(40%, -40%);
    }
    .about-image-collage {
      position: relative; height: 520px;
    }
    .about-img-main {
      position: absolute; top: 0; left: 0; width: 68%; height: 82%;
      border-radius: 20px 80px 20px 20px;
      background: linear-gradient(135deg, var(--peach), #E0A88A);
      overflow: hidden; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 16px 48px rgba(125,28,74,.15);
    }
    .about-img-secondary {
      position: absolute; bottom: 0; right: 0; width: 52%; height: 58%;
      border-radius: 20px 20px 80px 20px;
      background: linear-gradient(135deg, #F5D5C0, var(--peach));
      overflow: hidden; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 12px 36px rgba(125,28,74,.12);
      border: 5px solid var(--ivory);
    }
    .about-img-accent {
      position: absolute; top: 40%; left: 60%; transform: translate(-50%,-50%);
      width: 70px; height: 70px; border-radius: 50%;
      background: var(--gold); display: flex; align-items: center;
      justify-content: center; font-size: 1.5rem; color: #fff;
      box-shadow: 0 8px 24px rgba(197,144,60,.5); z-index: 2;
      animation: floatOrb 4s ease infinite;
    }
    .img-placeholder-content {
      display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 30px;
    }
    .img-placeholder-content svg { opacity: .45; }
    .img-placeholder-content p {
      font-family: 'Dancing Script', cursive; font-size: 1.2rem;
      color: var(--burgundy); opacity: .6; text-align: center;
    }
    .about-experience-badge {
      position: absolute; bottom: 30px; left: -16px;
      background: var(--burgundy); color: #fff; border-radius: 16px;
      padding: 14px 20px; text-align: center;
      box-shadow: 0 8px 24px rgba(125,28,74,.35);
    }
    .about-experience-badge .num {
      font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700;
      color: var(--gold-lt); line-height: 1;
    }
    .about-experience-badge .lbl { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .8; }
    .about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
    .about-feat-item {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 18px; border-radius: 12px;
      background: var(--cream); border-left: 3px solid var(--gold);
      transition: transform .3s, box-shadow .3s;
    }
    .about-feat-item:hover { transform: translateX(6px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
    .about-feat-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: linear-gradient(135deg, var(--burgundy), var(--rose));
      display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem;
    }
    .about-img-main img,
.about-img-secondary img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    .about-feat-text h6 { font-weight: 600; font-size: .9rem; margin-bottom: 2px; color: var(--brown); }
    .about-feat-text p { font-size: .8rem; color: var(--muted); margin: 0; }

    /* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
    #services {
      padding: 100px 0;
      background: linear-gradient(135deg, #FDF6EE 0%, #FCEEE4 100%);
      position: relative; overflow: hidden;
    }

    .blog-img{
    background-size: cover!important;
    background-position: center;
    background-repeat: no-repeat;
}   
    .services-bg-ornament {
      position: absolute; width: 600px; height: 600px;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      border-radius: 50%; border: 80px solid rgba(197,144,60,.04);
      pointer-events: none;
    }
    .service-card {
      background: #fff; border-radius: 24px;
      padding: 36px 28px; position: relative; overflow: hidden;
      border: 1px solid rgba(197,144,60,.15);
      transition: transform .4s, box-shadow .4s;
      height: 100%; cursor: default;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--burgundy), var(--gold));
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .service-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(125,28,74,.12); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 70px; height: 70px; border-radius: 20px; margin-bottom: 22px;
      background: linear-gradient(135deg, #FDF0E6, #F5D5C0);
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
      transition: all .4s;
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--burgundy), var(--rose));
    }
    .service-card h5 {
      font-family: 'Playfair Display', serif; font-size: 1.2rem;
      font-weight: 700; color: var(--brown); margin-bottom: 10px;
    }
    .service-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
    .service-price {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      font-weight: 700; color: var(--burgundy);
    }
    .service-price span { font-family: 'Jost', sans-serif; font-size: .8rem; color: var(--muted); font-weight: 400; }
    .service-tag {
      position: absolute; top: 18px; right: 18px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: #fff; font-size: .68rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 12px; border-radius: 20px;
    }

    /* ─────────────────────────────────────────
       GALLERY
    ───────────────────────────────────────── */
   /* ─────────────────────────────────────────
       GALLERY
    ───────────────────────────────────────── */
    #gallery { padding: 50px 0; background: var(--ivory); }
    .gallery-filter-btns {
      display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
    }
    .filter-btn {
      background: transparent; border: 1.5px solid rgba(125,28,74,.2);
      border-radius: 30px; padding: 8px 22px; font-size: .82rem;
      font-weight: 600; color: var(--brown-lt); cursor: pointer;
      transition: all .3s; letter-spacing: .5px;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--burgundy); border-color: var(--burgundy); color: #fff;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .gallery-item {
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform .4s;
    }
    .gallery-item:hover {
      transform: scale(0.98);
    }
    .gallery-item-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
      transition: transform .5s;
    }
    .gallery-item:hover .gallery-item-inner {
      transform: scale(1.05);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(125,28,74,.8) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    .gallery-overlay-text {
      color: #fff;
      font-size: .9rem;
      font-weight: 600;
      font-family: 'Playfair Display', serif;
    }
    /* Gallery item background colours (henna palette) */
    .gi-1 { background: linear-gradient(135deg, #F5D0B5, #E8A882); }
    .gi-2 { background: linear-gradient(135deg, #FCDEDE, #F5B8C0); }
    .gi-3 { background: linear-gradient(135deg, #F0E6D3, #E8D0B0); }
    .gi-4 { background: linear-gradient(135deg, #FCEADC, #F8D0C0); }
    .gi-5 { background: linear-gradient(135deg, #E8D5E8, #D5B8D5); }
    .gi-6 { background: linear-gradient(135deg, #D5E8E0, #B8D5CC); }
    .gi-7 { background: linear-gradient(135deg, #F5E6D0, #EAD0B8); }
    .gi-8 { background: linear-gradient(135deg, #FCD5D5, #F5B8B8); }

    /* Responsive */
    @media (max-width: 991px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
    }
    @media (max-width: 575px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
    }
    /* ─────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────── */
 /* =========================
   TESTIMONIAL SECTION
========================= */

#testimonials{
    padding: 50px 0;
    background: linear-gradient(160deg, var(--burgundy) 0%, #5C1035 100%);
    position: relative;
    overflow: hidden;
}

#testimonials::before{
    content: '❝';
    position: absolute;
    font-size: 30vw;
    color: rgba(255,255,255,.03);
    top: -5%;
    left: -2%;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
}

#testimonials .section-label{
    color: var(--gold-lt);
}

#testimonials .section-title{
    color: #fff;
}

#testimonials .divider-ornament span{
    background: linear-gradient(to right, transparent, rgba(232,194,122,.4));
}

#testimonials .divider-ornament span:last-child{
    background: linear-gradient(to left, transparent, rgba(232,194,122,.4));
}

#testimonials .divider-ornament i{
    color: var(--gold-lt);
}

/* =========================
   VIDEO CARD
========================= */

.testi-video-card{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.video-thumb{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16/9;
    background: #000;
}

/* VIDEO */

.video-thumb video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* OPTIONAL OVERLAY */

.video-thumb::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05),
        transparent);
    pointer-events: none;
}

/* =========================
   RATING BOX
========================= */

.rating-box{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    margin-top: 18px;
    backdrop-filter: blur(10px);
}

.rating-number{
    font-family:'Playfair Display',serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
}

.rating-stars{
    color: var(--gold-lt);
    font-size: 1rem;
    letter-spacing: 3px;
    margin: 8px 0;
}

.rating-text{
    font-size: .82rem;
    color: rgba(255,255,255,.62);
}

.rating-platforms{
    font-size: .74rem;
    color: rgba(255,255,255,.40);
    margin-top: 5px;
}

/* =========================
   MINI TESTIMONIAL CARDS
========================= */

.testi-card-mini{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    transition: all .35s ease;
    backdrop-filter: blur(10px);
}

.testi-card-mini:hover{
    transform: translateY(-5px);
    border-color: rgba(232,194,122,.35);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

.testi-card-mini .star-row{
    color: var(--gold-lt);
    font-size: .78rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testi-card-mini .quote{
    font-size: .88rem;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-card-mini .author{
    font-size: .80rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}

.testi-card-mini .author i{
    color: var(--gold-lt);
    margin-left: 6px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .video-thumb{
        aspect-ratio: 16/10;
    }

    .rating-number{
        font-size: 2.5rem;
    }

    .testi-card-mini{
        padding: 18px;
    }
}

@media (max-width: 576px){

    #testimonials{
        padding: 70px 0;
    }

    .testi-video-card{
        border-radius: 20px;
        padding: 10px;
    }

    .video-thumb{
        border-radius: 14px;
    }

    .video-thumb video{
        border-radius: 14px;
    }

    .rating-box{
        padding: 18px;
    }

    .rating-number{
        font-size: 2.2rem;
    }
}   /* ─────────────────────────────────────────
       BLOGS
    ───────────────────────────────────────── */
    #blogs { padding: 50px 0; background: var(--cream); }
    .blog-card {
      background: #fff; border-radius: 24px; overflow: hidden;
      border: 1px solid rgba(197,144,60,.12);
      transition: transform .4s, box-shadow .4s; height: 100%;
    }
    .blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(125,28,74,.1); }
    .blog-img {
      height: 220px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .blog-img-content { font-size: 4rem; opacity: .35; }
    .blog-category {
      position: absolute; top: 16px; left: 16px;
      background: var(--burgundy); color: #fff;
      font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
    }
    .blog-body { padding: 26px; }
    .blog-meta { font-size: 20px; font-weight: 600; color: var(--muted); }
    .blog-meta i { color: var(--gold); margin-right: 4px; }
    .blog-body h5 {
      font-family: 'Playfair Display', serif; font-size: 1.15rem;
      font-weight: 700; color: var(--brown); margin-bottom: 10px;
      line-height: 1.4;
    }
    .blog-body p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
    .blog-read-more {
      color: var(--burgundy); font-size: .83rem; font-weight: 600;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: gap .3s;
    }
    .blog-read-more:hover { gap: 10px; color: var(--rose); }

    /* ─────────────────────────────────────────
       CTA STRIP
    ───────────────────────────────────────── */
    .cta-strip {
      padding: 50px 0;
      background: linear-gradient(135deg, #F8EAD8, #F5D8C0);
      position: relative; overflow: hidden; text-align: center;
    }
    .cta-strip::before {
      content: '🌸'; font-size: 15vw; position: absolute;
      top: 50%; left: 0; transform: translateY(-50%);
      opacity: .06; pointer-events: none;
    }
    .cta-strip::after {
      content: '🌸'; font-size: 15vw; position: absolute;
      top: 50%; right: 0; transform: translateY(-50%) scaleX(-1);
      opacity: .06; pointer-events: none;
    }
    .cta-strip h2 {
      font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--burgundy); margin-bottom: 12px;
    }
    .cta-strip p { color: var(--brown-lt); font-size: 1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--brown); color: rgba(255,255,255,.75);
      padding: 55px 0 0;
    }
    .footer-logo img{
    max-width: 75px;
    height: auto;
    object-fit: contain;
}
    .footer-brand-tag { font-size: .72rem; color: var(--gold-lt); letter-spacing: 2.5px; text-transform: uppercase; }
    .footer-about { font-size: .85rem; line-height: 1.75; margin: 16px 0 20px; color: rgba(255,255,255,.6); }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .85rem; transition: all .3s; text-decoration: none; margin-right: 6px;
    }
    .footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
    .footer-title {
      font-family: 'Playfair Display', serif; font-size: 1.05rem;
      color: #fff; margin-bottom: 22px; padding-bottom: 12px;
      border-bottom: 1px solid rgba(197,144,60,.2);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem;
      transition: all .3s; display: inline-flex; align-items: center; gap: 8px;
    }
    .footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
    .footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }
    .footer-contact-item {
      display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start;
    }
    .footer-contact-icon {
      width: 34px; height: 34px; flex-shrink: 0; border-radius: 8px;
      background: rgba(197,144,60,.15); display: flex; align-items: center;
      justify-content: center; color: var(--gold-lt); font-size: .85rem;
    }
    .footer-contact-text { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.55; }
    .footer-contact-text strong { color: rgba(255,255,255,.85); display: block; font-size: .8rem; margin-bottom: 1px; }
    .footer-bottom {
      margin-top: 50px; padding: 18px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: .78rem; color: rgba(255,255,255,.4);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    }
    .footer-bottom a { color: var(--gold-lt); text-decoration: none; }

    /* ─────────────────────────────────────────
       MISC UTILITIES
    ───────────────────────────────────────── */
    .text-gold { color: var(--gold) !important; }
    .bg-cream { background: var(--cream) !important; }
    .henna-motif {
      position: absolute; opacity: .06; pointer-events: none;
    }

    .floating-btns{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.float-btn:hover{
    transform: scale(1.1);
    color: #fff;
}
  
  .float-btn i{
    font-size: 20px;
  }

.whatsapp-btn{
    background: #25D366;
}

.call-btn{
    background: linear-gradient(135deg,#7D1C4A,#D6A437);
}


  .mehendi-card-btns-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.mehendi-main-book-btn{
    flex: 1;
    height: 40px;
    border-radius: 40px;
    background: linear-gradient(135deg,#7D1C4A,#D6A437);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(125,28,74,0.2);
}

.mehendi-main-book-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

.mehendi-side-icon-btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.mehendi-side-icon-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

.mehendi-whatsapp-btn{
    background: #25D366;
}

.mehendi-call-btn{
    background: #7D1C4A;
}


    /* Responsive tweaks */
    @media (max-width: 991px) {
      .hero-image-wrap { padding-top: 30px; padding-bottom: 60px; }
      .about-image-collage { height: 340px; margin-bottom: 50px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(4) { grid-column: span 1; }
    }
    @media (max-width: 767px) {
      #hero{min-height: 25vh;}
      .hero-stats { gap: 20px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-row: span 1; }
    }
    @media (max-width: 575px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .about-image-collage { height: 260px; }
    }
      
@media (max-width: 767px){

    .footer-mobile-row{
        display: flex;
        flex-wrap: wrap;
    }

    .footer-mobile-row .col-sm-6{
        width: 50%;
    }

}