:root {
    --pink-deep: #c2185b;
    --pink-mid: #e91e8c;
    --pink-light: #f48fb1;
    --pink-pale: #fce4ec;
    --pink-blush: #fff0f5;
    --white: #ffffff;
    --gold: #d4a017;
    --text-dark: #3d0020;
    --text-mid: #7b1040;
    --shadow-pink: rgba(194,24,91,0.25);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── CURSOR ─── */
  body { cursor: none; }
  #cursor {
    width: 18px; height: 18px;
    border: 2px solid var(--pink-deep);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99999;
    transition: transform 0.15s ease, background 0.2s;
    mix-blend-mode: multiply;
  }
  #cursor.hover { transform: scale(2.2); background: var(--pink-pale); }

  /* ─── PARTICLES ─── */
  #particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
  .particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
  }
  @keyframes floatUp {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
  }
  /* ─── NAV ─── */
  /* ─── NAV LOGO ─── */
.nav-logo-img {
  height: 140px;        /* Increase logo size */
  width: auto;
  object-fit: contain;
  transform: translateY(2px); /* Move logo up */
}

.logo-text {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #c2185b;
}
  /* =========================
   PREMIUM FIXED NAVBAR
========================= */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 2rem;

    z-index: 9999;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(194,24,91,0.12);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}
/* ===========================
   MOBILE THREE-DOT MENU
   =========================== */

/* Three-dot button */
.menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 34px;
    font-weight: bold;
    color: #c2185b;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    z-index: 10001;
}

/* Dropdown container */
.mobile-dropdown {
    display: none;
    position: fixed;
    top: 75px;
    right: 12px;
    width: 220px;
    padding: 10px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);

    z-index: 99999;

    animation: dropdownFade 0.25s ease;
}

/* Individual menu items */
.mobile-dropdown a {
    display: block;

    margin: 8px 0;
    padding: 14px 16px;

    text-decoration: none;
    text-align: center;

    font-size: 17px;
    font-weight: 700;
    color: #8a0054;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);

    transition: all 0.3s ease;
}

/* Hover effect */
.mobile-dropdown a:hover {
    background: rgba(194, 24, 91, 0.18);
    color: #c2185b;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(194, 24, 91, 0.2);
}

/* Smooth animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===========================
   MOBILE ONLY
   =========================== */

@media (max-width: 768px) {

    /* Show three-dot button */
    .menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }
}
/* When navbar is hidden */
nav.nav-hidden{
    transform: translateY(-100%);
}

/* When navbar is visible */
nav.nav-visible{
    transform: translateY(0);
}

/* Optional shadow after scrolling */
nav.scrolled{
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900; font-style: italic;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 0.85rem; font-weight: 500;
    color: var(--text-mid); letter-spacing: 0.05em; text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--pink-deep);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--pink-deep); }
  .nav-links a:hover::after { width: 100%; }
  .social-btn {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: none;
    overflow: hidden;
    flex-shrink: 0;
  }
  .social-btn svg { display: block; }
  .social-btn:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
  .s-ig { background: radial-gradient(circle at 30% 110%, #ffdb8b 0%, #ff8f37 25%, #de2b82 50%, #782dc2 75%, #3d63e6 100%); }
  .s-wa { background: #25d366; }
  .s-fb { background: #1877f2; }
  .s-ph { background: linear-gradient(135deg, #c2185b, #e91e8c); }

  /* ─── HERO ─── */
  .hero-new{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:90px 8%;
    background:linear-gradient(135deg,#fff5f9,#ffe6f0,#fffafd);
    position:relative;
    overflow:hidden;
}

.hero-left{
    width:48%;
    position:relative;
    min-height:550px;
}

.main-card{
    width:380px;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(194,24,91,.15);
}

.main-card img{
    width:100%;
    display:block;
}

.small-card{
    position:absolute;
    bottom:20px;
    right:40px;
    width:210px;
    border-radius:25px;
    overflow:hidden;
    transform:rotate(0deg);
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.small-card img{
    width:100%;
    display:block;
}

.circle-card{
    position:absolute;
    top:-10px;
    right:70px;
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.circle-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.experience-card{
    position:absolute;
    left:-20px;
    bottom:70px;
    background:white;
    padding:18px 24px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(194,24,91,.15);
}

.experience-card h3{
    color:#c2185b;
    font-size:32px;
}

.experience-card p{
    font-size:14px;
    color:#666;
}

.hero-right{
    width:45%;
}

.hero-mini{
    color:#d63384;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-right h1{
    font-family: "Playfair Display", serif;
    font-size: 78px;
    font-weight: 900;

    line-height: 1.08;      /* Increase this */
    letter-spacing: -1px;   /* Don't make it too negative */

    background: linear-gradient(
        135deg,
        #6b0f3b,
        #b52d72,
        #e85ca8
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    padding-bottom: 8px;    /* Prevent descenders like Q from clipping */
}
.hero-right h2{
    font-family:'Playfair Display', serif;
    font-size:32px;
    font-weight:700;
    line-height:1.2;

    background:linear-gradient(
        90deg,
        #c2185b,
        #ff4fa3
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin:20px 0;
}

.hero-right p{
    font-size:16px;
    line-height:1.9;
    color:#5f5f5f;
    font-weight:500;
    max-width:620px;
}
/* ===========================
   HERO BUTTON CONTAINER
=========================== */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:30px;
    flex-wrap:wrap;
}

/* ===========================
   COMMON BUTTON STYLE
=========================== */

.btn-primary,
.btn-outline{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:190px;
    height:55px;

    padding:0 30px;

    border-radius:50px;

    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:700;
    text-decoration:none;

    overflow:hidden;
    transition:all .35s ease;
}

/* ===========================
   BOOK APPOINTMENT BUTTON
=========================== */

.btn-primary{

    color:#fff;

    background:linear-gradient(
        180deg,
        #ff7bc3 0%,
        #e83d8f 45%,
        #c2185b 100%
    );

    border:none;

    box-shadow:
        inset 0 2px 2px rgba(255,255,255,.35),
        0 7px 0 #8d1045,
        0 14px 28px rgba(194,24,91,.35);
}

/* glossy shine */

.btn-primary::before{

    content:"";

    position:absolute;

    top:-80%;

    left:-40%;

    width:35%;

    height:250%;

    background:rgba(255,255,255,.35);

    transform:rotate(25deg);

    transition:.8s;
}

.btn-primary:hover::before{

    left:130%;
}

.btn-primary:hover{

    transform:translateY(-4px) scale(1.03);

    box-shadow:
        inset 0 2px 2px rgba(255,255,255,.35),
        0 11px 0 #8d1045,
        0 22px 35px rgba(194,24,91,.45);
}

.btn-primary:active{

    transform:translateY(3px);

    box-shadow:
        0 2px 0 #8d1045,
        0 8px 15px rgba(194,24,91,.25);
}

/* ===========================
   GALLERY BUTTON
=========================== */

.btn-outline{

    background:#ffffff;

    color:#c2185b;

    border:2px solid #d63384;

    box-shadow:
        inset 0 2px 2px rgba(255,255,255,.8),
        0 8px 20px rgba(0,0,0,.08);
}

.btn-outline:hover{

    background:linear-gradient(
        135deg,
        #ff8fc8,
        #d63384
    );

    color:#fff;

    border-color:#d63384;

    transform:translateY(-4px) scale(1.03);

    box-shadow:
        0 16px 30px rgba(214,51,132,.30);
}

.btn-outline:active{

    transform:translateY(2px);
}
@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.main-card{
    animation:slideLeft .9s ease both;
}

.circle-card{
    animation:slideLeft 1.2s ease both;
}

.small-card{
    animation:slideLeft 1.4s ease both;
}

.experience-card{
    animation:fadeUp 1.6s ease both;
}

.hero-mini{
    animation:slideRight .6s ease both;
}

.hero-right h1{
    animation:slideRight .9s ease both;
}

.hero-right h2{
    animation:slideRight 1.2s ease both;
}

.hero-right p{
    animation:slideRight 1.5s ease both;
}

.hero-buttons{
    animation:fadeUp 1.8s ease both;
}

.hero-stats{
    animation:fadeUp 2.1s ease both;
}

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:20px;   /* Change from 45px/50px to 20px */
    align-items:center;
}
@keyframes luxuryFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-14px);
    }
    100%{
        transform:translateY(0px);
    }
}

.main-card,
.small-card,
.circle-card{
    animation:luxuryFloat 5s ease-in-out infinite;
}

.small-card{
    animation-delay:1s;
}

.circle-card{
    animation-delay:2s;
}
.hero-stats strong{
    font-size:42px;
    color:#c2185b;
    display:block;
    font-weight:900;
}

.hero-stats span{
    color:#666;
    font-size:16px;
}
.hero-decor{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
    opacity:.25;
}

.hero-decor-1{
    width:260px;
    height:260px;
    background:#f48fb1;
    left:-80px;
    top:-60px;
}
.hero-decor-2{
    width:320px;
    height:320px;
    background:#ffd6e7;
    right:-100px;
    bottom:-100px;
}
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.main-card,
.small-card,
.circle-card,
.experience-card {
    animation: floating 4s ease-in-out infinite;
}

.small-card {
    animation-delay: 0.8s;
}

.circle-card {
    animation-delay: 1.5s;
}

.experience-card {
    animation-delay: 2s;
}

.main-card:hover,
.small-card:hover,
.circle-card:hover {
    transform: scale(1.05);
    transition: 0.4s;
}
  /* ─── FLOATING 3D FLOWERS ─── */
  .flower-3d {
    position: absolute; font-size: 2rem;
    animation: floatFlower ease-in-out infinite;
    pointer-events: none; user-select: none;
    filter: drop-shadow(0 4px 8px var(--shadow-pink));
  }
  @keyframes floatFlower {
    0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
    33%      { transform: translateY(-20px) rotate(10deg) scale(1.05); }
    66%      { transform: translateY(10px) rotate(-8deg) scale(0.95); }
  }

  /* ─── SECTION COMMON ─── */
  section { position: relative; z-index: 1; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-deep), #8b0046);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }
  .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.1rem; color: var(--text-mid);
    margin-bottom: 3rem;
  }
  .section-header { text-align: center; }
  .gold-divider {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 2rem;
    border-radius: 2px;
  }

  /* ─── SERVICES ─── */
  #services {
    padding: 100px 2rem;
    background: var(--white);
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; max-width: 1100px; margin: 0 auto;
  }
  .service-card {
    background: linear-gradient(145deg, #fff, var(--pink-blush));
    border: 1px solid rgba(194,24,91,0.12);
    border-radius: 24px; padding: 2.5rem 2rem;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 8px 30px rgba(194,24,91,0.08);
    cursor: none;
  }
  .service-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(194,24,91,0.2);
  }
  .service-icon {
    font-size: 3rem; margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 10px var(--shadow-pink));
    animation: iconPulse 3s ease-in-out infinite;
  }
  @keyframes iconPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--pink-deep); margin-bottom: 0.8rem;
  }
  .service-card p { font-size: 0.9rem; color: #8b5a6b; line-height: 1.7; }

  /* ─── DESIGNS / PRICING ─── */
  #designs {
    padding: 100px 2rem;
    background: linear-gradient(180deg, var(--pink-blush) 0%, #fff 100%);
  }
  .designs-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; max-width: 1100px; margin: 0 auto;
  }
  .design-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(194,24,91,0.15);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(194,24,91,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: none;
    transform-style: preserve-3d;
  }
  .design-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(194,24,91,0.2);
  }
  .design-img {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    position: relative; overflow: hidden;
  }
  .design-img::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--pink-pale), var(--pink-blush));
  }
  .design-img span { position: relative; z-index: 1; animation: designSpin 8s linear infinite; }
  @keyframes designSpin { 0%{transform:rotate(0deg)scale(1)} 25%{transform:rotate(5deg)scale(1.1)} 75%{transform:rotate(-5deg)scale(0.9)} 100%{transform:rotate(0deg)scale(1)} }
  .design-info { padding: 1.5rem; }
  .design-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--pink-deep);
    margin-bottom: 0.4rem;
  }
  .design-info p { font-size: 0.85rem; color: #8b5a6b; margin-bottom: 1rem; line-height: 1.6; }
  .design-price {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
  }
  .price-tag {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    color: #fff; padding: 6px 18px; border-radius: 50px;
    font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 4px 12px var(--shadow-pink);
  }
  .price-tag span { font-size: 0.7rem; opacity: 0.85; }
  .btn-book-small {
    background: transparent; border: 2px solid var(--pink-deep);
    color: var(--pink-deep); padding: 6px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; cursor: none;
    transition: all 0.3s; text-decoration: none;
    display: inline-block;
  }
  .btn-book-small:hover { background: var(--pink-deep); color: #fff; }
  /* Gallery */
#gallery {
  padding: 80px 0;
  overflow: hidden;
  background: #fff7fb;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
}

.marquee-item img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
/* ===========================
   MOBILE OPTIMIZATION
=========================== */

@media (max-width: 768px) {

    /* Hide custom cursor on mobile */
    #cursor {
        display: none;
    }

    body {
        cursor: auto;
        overflow-x: hidden;
    }

    /* Navbar */
    nav {
        height: 65px;
        padding: 0 15px;
    }

    .nav-logo-img {
        height: 90px;
        transform: translateY(5px);
    }

    .nav-links {
        display: none;
    }

    /* Hero */
    .hero-new {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 90px 20px 40px;
        min-height: auto;
        gap: 25px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        min-height: 320px;
    }

    .main-card {
        width: 230px;
        margin: 0 auto;
    }

    .small-card {
        width: 130px;
        right: 15px;
        bottom: 5px;
    }

    .circle-card {
        width: 90px;
        height: 90px;
        right: 20px;
        top: -10px;
    }

    .experience-card {
        left: 5px;
        bottom: 20px;
        padding: 10px 14px;
    }

    .experience-card h3 {
        font-size: 22px;
    }

    .experience-card p {
        font-size: 11px;
    }

    .hero-mini {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-right h1 {
        font-size: 52px;
        line-height: 1;
    }

    .hero-right h2 {
        font-size: 26px;
        margin: 10px 0;
    }

    .hero-right p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Stats */
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .hero-stats strong {
        font-size: 28px;
    }

    .hero-stats span {
        font-size: 13px;
    }

    /* Services */
    #services,
    #gallery,
    #offers,
    #booking-custom,
    #booking-training,
    #testimonials,
    #contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Contact */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-frame iframe {
        height: 250px;
    }

    /* Booking forms */
    .booking-inner {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-social {
        flex-wrap: wrap;
    }

    /* Disable hover scaling on touch devices */
    .main-card:hover,
    .small-card:hover,
    .circle-card:hover,
    .service-card:hover,
    .offer-card:hover {
        transform: none;
    }
}
@media (max-width: 768px) {
  .marquee-item img {
    width: 180px;
    height: 240px;
  }

  .marquee-track {
    gap: 12px;
    animation-duration: 18s;
  }
}
  /* ─── BOOKING SECTIONS ─── */
  .booking-section {
    padding: 100px 2rem;
  }
  .booking-section:nth-child(odd) { background: var(--pink-blush); }
  .booking-section:nth-child(even) { background: var(--white); }
  .booking-inner {
    max-width: 680px; margin: 0 auto;
    background: var(--white);
    border-radius: 30px; padding: 3rem;
    box-shadow: 0 20px 60px rgba(194,24,91,0.12);
    border: 1px solid rgba(194,24,91,0.1);
    animation: floatCard 6s ease-in-out infinite;
  }
  @keyframes floatCard { 0%,100%{box-shadow:0 20px 60px rgba(194,24,91,0.12)} 50%{box-shadow:0 30px 80px rgba(194,24,91,0.2)} }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-mid); margin-bottom: 0.5rem;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid rgba(194,24,91,0.2);
    border-radius: 14px; font-family: 'Poppins', sans-serif;
    font-size: 0.9rem; color: var(--text-dark);
    background: var(--pink-blush);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    outline: none;
    cursor: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--pink-deep);
    box-shadow: 0 0 0 4px rgba(194,24,91,0.1);
    transform: translateY(-2px);
    background: #fff;
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    color: #fff; border: none; padding: 16px;
    border-radius: 14px; font-size: 1rem; font-weight: 700;
    cursor: none; font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px var(--shadow-pink);
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05em;
  }
  .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px var(--shadow-pink); }
  .success-msg {
    display: none; background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: #2e7d32; border: 1px solid #a5d6a7;
    border-radius: 12px; padding: 1rem 1.5rem;
    margin-top: 1rem; font-size: 0.9rem; font-weight: 500;
    text-align: center;
  }

  /* ─── FEEDBACK DISPLAY ─── */
  #testimonials {
    padding: 100px 2rem;
    background: linear-gradient(180deg, var(--pink-blush), #fff);
  }
  .feedback-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
  }
  .feedback-card {
    background: var(--white);
    border-radius: 20px; padding: 2rem;
    box-shadow: 0 8px 30px rgba(194,24,91,0.08);
    border: 1px solid rgba(194,24,91,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: none;
  }
  .feedback-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(194,24,91,0.16); }
  .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; }
  .feedback-text { font-size: 0.9rem; color: #6d3d50; line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
  .feedback-author { font-weight: 600; font-size: 0.85rem; color: var(--pink-deep); }

  /* ─── MAP / CONTACT ─── */
  #contact {
    padding: 100px 2rem;
    background: var(--white);
  }
  .contact-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--pink-deep); margin-bottom: 1.5rem;
  }
  .contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
  .contact-icon { font-size: 1.5rem; flex-shrink: 0; }
  .contact-text { font-size: 0.9rem; color: #6d3d50; line-height: 1.6; }
  .contact-text strong { color: var(--pink-deep); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
  .map-frame {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(194,24,91,0.15);
    border: 3px solid rgba(194,24,91,0.2);
  }
  .map-frame iframe { display: block; width: 100%; height: 320px; border: none; }

  /* ─── FOOTER ─── */
  footer {
    background: linear-gradient(135deg, #3d0020, #7b1040);
    color: rgba(255,255,255,0.8); padding: 3rem 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-style: italic; color: var(--pink-light);
    margin-bottom: 0.5rem;
  }
  .footer-tagline { font-size: 0.85rem; margin-bottom: 1.5rem; opacity: 0.7; }
  .footer-social { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
  .footer-copyright { font-size: 0.78rem; opacity: 0.5; }

  /* ─── ADMIN CONSOLE ─── */
  #admin-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 90000;
    backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
  }
  #admin-overlay.show { display: flex; }
  #admin-panel {
    background: var(--white); border-radius: 24px;
    width: min(960px, 96vw); max-height: 90vh;
    overflow-y: auto; padding: 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: panelSlide 0.4s ease;
  }
  @keyframes panelSlide { from{transform:translateY(40px);opacity:0} to{transform:translateY(0);opacity:1} }
  .admin-header {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    padding: 1.5rem 2rem; border-radius: 24px 24px 0 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .admin-header h2 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.4rem; }
  .admin-close {
    background: rgba(255,255,255,0.2); border: none; color: #fff;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; transition: background 0.2s;
  }
  .admin-close:hover { background: rgba(255,255,255,0.35); }
  .admin-tabs {
    display: flex; border-bottom: 2px solid var(--pink-pale);
    padding: 0 2rem; background: var(--pink-blush);
  }
  .admin-tab {
    padding: 1rem 1.5rem; font-size: 0.85rem; font-weight: 600;
    color: var(--text-mid); cursor: pointer; border-bottom: 3px solid transparent;
    transition: all 0.2s; margin-bottom: -2px; white-space: nowrap;
  }
  .admin-tab.active { color: var(--pink-deep); border-bottom-color: var(--pink-deep); }
  .admin-body { padding: 2rem; }
  .admin-section { display: none; }
  .admin-section.active { display: block; }
  .booking-entry {
    background: var(--pink-blush); border-radius: 14px;
    padding: 1.2rem 1.5rem; margin-bottom: 1rem;
    border: 1px solid rgba(194,24,91,0.1);
  }
  .booking-entry h4 { color: var(--pink-deep); font-size: 1rem; margin-bottom: 0.5rem; }
  .booking-entry p { font-size: 0.85rem; color: #6d3d50; margin-bottom: 0.2rem; }
  .booking-badge {
    display: inline-block; padding: 3px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem;
  }
  .badge-training { background: #e3f2fd; color: #1565c0; }
  .badge-custom { background: #fce4ec; color: var(--pink-deep); }
  .design-edit-row {
    display: grid; grid-template-columns: 2fr 2fr 1fr auto;
    gap: 0.8rem; align-items: end; margin-bottom: 1rem;
  }
  .design-edit-row input {
    padding: 10px 14px; border: 2px solid rgba(194,24,91,0.2);
    border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.85rem;
    outline: none; cursor: text;
  }
  .design-edit-row input:focus { border-color: var(--pink-deep); }
  .btn-save {
    background: var(--pink-deep); color: #fff;
    border: none; padding: 10px 18px; border-radius: 10px;
    font-size: 0.82rem; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: background 0.2s;
  }
  .btn-save:hover { background: var(--pink-mid); }
  .admin-feedback-form { display: grid; gap: 1rem; }
  .admin-feedback-form input,
  .admin-feedback-form textarea,
  .admin-feedback-form select {
    padding: 12px 16px; border: 2px solid rgba(194,24,91,0.2);
    border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.88rem;
    outline: none; cursor: text;
    transition: border-color 0.2s;
  }
  .admin-feedback-form input:focus,
  .admin-feedback-form textarea:focus,
  .admin-feedback-form select:focus { border-color: var(--pink-deep); }
  .btn-add-feedback {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    color: #fff; border: none; padding: 12px 24px; border-radius: 10px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: opacity 0.2s;
  }
  .btn-add-feedback:hover { opacity: 0.9; }
  .empty-state { text-align: center; color: #b0849e; padding: 2rem; font-style: italic; }

  /* ─── LOGIN ─── */
  #admin-login {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 90001;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
  }
  #admin-login.show { display: flex; }
  .login-box {
    background: var(--white); border-radius: 24px;
    padding: 3rem; width: min(420px, 90vw);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: panelSlide 0.3s ease;
  }
  .login-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--pink-deep); margin-bottom: 0.3rem;
  }
  .login-box p { font-size: 0.85rem; color: #b0849e; margin-bottom: 1.5rem; }
  .login-box input {
    width: 100%; padding: 14px 18px;
    border: 2px solid rgba(194,24,91,0.2); border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 1rem;
    outline: none; margin-bottom: 1rem; cursor: text;
    transition: border-color 0.2s;
  }
  .login-box input:focus { border-color: var(--pink-deep); }
  .login-box button {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
    color: #fff; border: none; border-radius: 12px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px var(--shadow-pink);
    transition: transform 0.2s;
  }
  .login-box button:hover { transform: translateY(-2px); }
  .login-error { color: #c62828; font-size: 0.85rem; margin-top: 0.5rem; display: none; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .design-edit-row { grid-template-columns: 1fr 1fr; }
    .booking-inner { padding: 2rem 1.5rem; }
    .admin-tabs { overflow-x: auto; }
  }
  /* ---------- OFFER CARDS ---------- */
#offers{
    padding:80px 20px;
}
.offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    margin-top:40px;
    margin-bottom: 80px; 
}

.offer-card{
    width:300px;
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:0.35s;
    cursor:pointer;
    text-align:center;
    border:2px solid #f5d5e3;
}

.offer-card:hover{
    transform:scale(1.08);
    box-shadow:0 15px 35px rgba(194,24,91,.35);
}

.offer-card h3{
    color:#c2185b;
    margin-bottom:15px;
    font-size:24px;
}

.offer-price{
    font-size:22px;
    font-weight:bold;
    color:#e91e63;
    margin:12px 0;
}

.offer-valid{
    color:#666;
    font-size:15px;
}

.offer-quote{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
   
}

.offer-quote h3{
    color:#c2185b;
    margin-bottom:10px;
}
#admin-login {
    display: none;
}

#admin-login.show {
    display: flex;
}
/* Bridal Booking */

#booking-bridal{
    background:linear-gradient(180deg,#fff8fb,#fff);
}

#booking-bridal textarea{
    min-height:120px;
}

#booking-bridal .submit-btn{
    width:100%;
}

#booking-bridal .success-msg{
    display:none;
    margin-top:20px;
    padding:15px;
    border-radius:10px;
    background:#d4edda;
    color:#155724;
    font-weight:600;
    text-align:center;
}
