/* ============================================
   Orchid Salon and Academy — Premium Stylesheet
   ============================================ */

:root {
    /* Brand palette — sampled from logo (bright magenta orchid on rich black) */
    --pink-primary: #E91E63;
    --pink-hot:     #EC008C;
    --pink-deep:    #C2185B;
    --pink-light:   #F8BBD0;
    --pink-soft:    #FCE4EC;
    --pink-blush:   #FFF0F5;

    --black:        #0A0A0A;
    --black-soft:   #1A1A1A;
    --charcoal:     #2D2D2D;

    --white:        #ffffff;
    --cream:        #FFF9FB;
    --text-dark:    #1A1A1A;
    --text-muted:   #6E6E78;

    /* Legacy aliases — mapped to the new palette so existing class names stay valid */
    --rose-gold:       #E91E63;
    --rose-gold-light: #F48FB1;
    --gold:            #E91E63;
    --gold-light:      #F8BBD0;
    --lavender:        #FCE4EC;
    --lavender-deep:   #EC008C;
    --purple-dark:     #1A1A1A;

    /* Gradients */
    --grad-primary:  linear-gradient(135deg, #EC008C 0%, #C2185B 100%);
    --grad-feminine: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 50%, #E91E63 100%);
    --grad-dark:     linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);

    /* Shadows */
    --shadow-soft:   0 10px 40px rgba(233, 30, 99, 0.18);
    --shadow-strong: 0 20px 60px rgba(10, 10, 10, 0.28);
    --shadow-glow:   0 0 30px rgba(233, 30, 99, 0.5);

    --ff-heading: 'Playfair Display', serif;
    --ff-display: 'Cinzel', serif;
    --ff-body:    'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--ff-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Clip decorative elements that extend beyond sections */
.section {
    overflow: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Top Announcement Bar
   ============================================ */
.top-bar {
    background: var(--grad-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 17px;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.welcome-text {
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.welcome-text i {
    margin-right: 6px;
    color: var(--pink-blush);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-item {
    color: var(--white);
    transition: color 0.3s ease;
    font-weight: 300;
}

.top-bar-item:hover { color: var(--gold-light); }
.top-bar-item i { margin-right: 6px; color: var(--gold-light); }

.top-bar-right { gap: 10px; }

.top-bar-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-bar-icon:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.tb-whatsapp { background: #25d366; }
.tb-facebook { background: #1877f2; }
.tb-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tb-youtube { background: #ff0000; }
.tb-twitter { background: #000000; }
.tb-pinterest { background: #e60023; }

/* ============================================
   Navbar
   ============================================ */
.navbar {
    background: rgba(255, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(74, 35, 90, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 3px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.3);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--purple-dark);
    letter-spacing: 1px;
}
.logo-sub {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--rose-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-gold);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 6px 4px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--purple-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay — pseudo-element on body (avoids stacking-context issues) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(26, 13, 31, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    font-family: var(--ff-body);
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(183, 110, 121, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--purple-dark);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-light);
}
.btn-outline-light:hover { background: var(--gold-light); color: var(--purple-dark); }

.btn-mini {
    padding: 9px 22px;
    font-size: 13px;
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(183, 110, 121, 0.3);
}
.btn-mini:hover { transform: translateY(-2px); }

/* Nav CTA pills (WhatsApp + Call Now) */
.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.nav-btn i { font-size: 14px; }

.nav-btn-dark {
    background: var(--black);
    color: var(--white);
    border: 1.5px solid rgba(233, 30, 99, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.nav-btn-dark:hover {
    background: var(--black-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: var(--pink-light);
}
.nav-btn-dark i { color: #25d366; }

.nav-btn-gold {
    background: linear-gradient(135deg, #EC008C 0%, #C2185B 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.4);
}
.nav-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233, 30, 99, 0.55);
    background: linear-gradient(135deg, #F06292 0%, #C2185B 100%);
}

.btn-block { width: 100%; justify-content: center; }

.glow {
    position: relative;
    overflow: hidden;
}

.glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.glow:hover::before { left: 100%; }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--black);
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-sizer {
    display: block;
    width: 100%;
    height: auto;
    visibility: hidden;
    pointer-events: none;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: var(--ff-display);
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 30px;
}

.hero-content h1 {
    font-family: var(--ff-heading);
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 .text-gold {
    background: linear-gradient(135deg, #F8BBD0 0%, #EC008C 50%, #F48FB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-content p {
    font-size: clamp(15px, 1.6vw, 18px);
    max-width: 640px;
    margin: 0 auto 38px;
    font-weight: 300;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}

.scroll-down {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    z-index: 3;
}

.scroll-down span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    margin: 8px auto;
    animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ============================================
   Section Base
   ============================================ */
.section {
    padding: 48px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.section-tag {
    display: inline-block;
    color: var(--rose-gold);
    font-family: var(--ff-display);
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: 37px;
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 19px;
    font-weight: 300;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(135deg, #FFF9FB 0%, #FCE4EC 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 560px;
}

.about-img-main,
.about-img-sub {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: absolute;
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 50%, #E91E63 100%);
}

.about-img-main {
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
}

.about-img-sub {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    border: 6px solid var(--cream);
}

.about-img-main img,
.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-primary);
    color: var(--white);
    padding: 22px 26px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    z-index: 2;
}

.badge-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.about-content .section-tag {
    color: var(--rose-gold);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 22px;
}

.lead {
    font-size: 18px;
    color: var(--purple-dark);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    margin-bottom: 32px;
}

.about-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 400;
}

.about-features i {
    color: var(--rose-gold);
    margin-right: 10px;
    font-size: 26px;
}

/* Counters */
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 55px;
    padding: 32px 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.counter-box {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(183, 110, 121, 0.15);
}

.counter-box:last-child { border-right: none; }

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-feminine);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.3);
}

.counter-num {
    font-family: var(--ff-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--purple-dark);
    line-height: 1;
}

.counter-box p {
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
}

/* ============================================
   Services
   ============================================ */
.services {
    background: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.55), transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services-grid .service-card {
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
}

.service-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(74, 35, 90, 0.18);
}

.service-img {
    height: 220px;
    background-color: #e1bee7;
    background-image: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 50%, #E91E63 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

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

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(74, 35, 90, 0.5) 100%);
}

.service-body {
    padding: 30px 28px 32px;
    position: relative;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -60px 0 18px;
    box-shadow: 0 10px 24px rgba(183, 110, 121, 0.4);
    border: 4px solid var(--white);
    position: relative;
    z-index: 2;
}

.service-body h3 {
    font-family: var(--ff-heading);
    font-size: 30px;
    color: var(--purple-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-body > p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 16px;
}

.service-highlights {
    margin-bottom: 22px;
}

.service-highlights li {
    color: var(--text-dark);
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    padding-left: 22px;
}

.service-highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
}

.service-link {
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover { gap: 14px; color: var(--purple-dark); }

.service-card-cta {
    background: var(--grad-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

.service-card-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.3), transparent 60%);
}

.cta-card-inner {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.cta-gem {
    font-size: 56px;
    color: var(--gold-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.6));
}

.service-card-cta h3 {
    font-family: var(--ff-heading);
    font-size: 30px;
    margin-bottom: 14px;
    color: var(--gold-light);
}

.service-card-cta p {
    margin-bottom: 24px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-us {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.why-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-strong);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: var(--grad-primary);
    color: var(--white);
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 28px rgba(183, 110, 121, 0.35);
    transition: transform 0.5s ease;
}

.why-card:hover .why-icon {
    transform: rotate(8deg) scale(1.05);
}

.why-card h3 {
    font-family: var(--ff-heading);
    font-size: 24px;
    color: var(--purple-dark);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   Gallery
   ============================================ */
.gallery { background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 50%, #E91E63 100%);
}

.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.75), rgba(10, 10, 10, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 13, 31, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ============================================
   Blog
   ============================================ */
.blog {
    background: linear-gradient(135deg, #FFF9FB 0%, #FCE4EC 100%);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.55), transparent 70%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(74, 35, 90, 0.18);
}

.blog-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 50%, #E91E63 100%);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--grad-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

.blog-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 18px;
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.blog-meta i {
    color: var(--rose-gold);
    margin-right: 5px;
}

.blog-body h3 {
    font-family: var(--ff-heading);
    font-size: 22px;
    color: var(--purple-dark);
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-body h3 {
    color: var(--rose-gold);
}

.blog-body p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    align-self: flex-start;
}

.blog-link:hover {
    gap: 14px;
    color: var(--purple-dark);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--grad-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.32), transparent 70%);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.28), transparent 70%);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-tag {
    color: var(--gold-light);
}

.testimonials .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 36px;
    position: relative;
    text-align: center;
}

.quote-mark {
    font-size: 26px;
    color: var(--gold-light);
    opacity: 0.4;
    margin-bottom: 8px;
}

.stars {
    color: var(--gold-light);
    margin-bottom: 14px;
    font-size: 16px;
    letter-spacing: 4px;
}

.testimonial-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

.testimonial-author h4 {
    font-family: var(--ff-heading);
    font-size: 17px;
    color: var(--white);
    text-align: left;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.slider-btn:hover {
    background: var(--grad-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .sdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .sdot.active {
    background: var(--gold-light);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Contact — Dark Hero Panel + Floating Form
   ============================================ */
.contact {
    background: linear-gradient(135deg, #FFF9FB 0%, #FCE4EC 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.10), transparent 70%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.4), transparent 70%);
    pointer-events: none;
}

.contact .container { position: relative; z-index: 1; }

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
    position: relative;
}

/* ===== LEFT: Dark info panel ===== */
.contact-dark-panel {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    border-radius: 28px;
    padding: 54px 50px 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 70px rgba(10, 10, 10, 0.28);
    z-index: 1;
}

.contact-dark-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC008C, #F48FB1, #EC008C);
    z-index: 3;
}

.contact-dark-panel::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.32), transparent 70%);
    z-index: 0;
}

.cdp-content {
    position: relative;
    z-index: 2;
}

.cdp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--pink-light);
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(236, 0, 140, 0.12);
    border: 1px solid rgba(236, 0, 140, 0.3);
    border-radius: 50px;
    margin-bottom: 22px;
}

.cdp-eyebrow i { font-size: 10px; color: var(--pink-primary); }

.cdp-title {
    font-family: var(--ff-heading);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.cdp-accent {
    background: linear-gradient(135deg, #F8BBD0 0%, #EC008C 50%, #F48FB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.cdp-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 460px;
}

.cdp-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cdp-info li a,
.cdp-info-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.cdp-info li a:hover {
    transform: translateX(6px);
}

.cdp-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(236, 0, 140, 0.18) 0%, rgba(194, 24, 91, 0.10) 100%);
    border: 1px solid rgba(236, 0, 140, 0.35);
    color: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.cdp-info li:hover .cdp-info-icon {
    background: var(--grad-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(236, 0, 140, 0.45);
}

.cdp-info-body { flex: 1; min-width: 0; padding-top: 2px; }

.cdp-info-label {
    display: block;
    font-family: var(--ff-display);
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--pink-light);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.cdp-info p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
}

/* ===== RIGHT: White form panel ===== */
.contact-form-float {
    background: var(--white);
    border-radius: 26px;
    padding: 44px 40px;
    box-shadow: 0 30px 70px rgba(10, 10, 10, 0.15),
                0 0 0 1px rgba(233, 30, 99, 0.06);
    position: relative;
    z-index: 2;
    overflow: hidden;
    isolation: isolate;
}

.contact-form-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC008C 0%, #F48FB1 50%, #EC008C 100%);
    z-index: 2;
}

.contact-form-float::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.55), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ===== Full-width map band ===== */
.contact-map-band {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 30px 70px rgba(10, 10, 10, 0.15),
                0 0 0 1px rgba(233, 30, 99, 0.06);
    background: var(--black);
    isolation: isolate;
}

.contact-map-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 25%, transparent 75%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-map-band iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}

.map-iframe-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}

.form-head {
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-size: 12.5px;
    letter-spacing: 3px;
    color: var(--pink-deep);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    border-radius: 50px;
}

.form-head h3 {
    font-family: var(--ff-heading);
    font-size: 32px;
    color: var(--black-soft);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.15;
}

.form-head p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.55;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.map-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(10, 10, 10, 0.22),
                0 0 0 1px rgba(236, 0, 140, 0.08);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(236, 0, 140, 0.22);
}

.map-badge i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 14px rgba(236, 0, 140, 0.4);
}

.map-badge strong {
    display: block;
    font-family: var(--ff-heading);
    color: var(--black-soft);
    font-size: 14.5px;
    letter-spacing: 0.3px;
}

.map-badge span {
    font-size: 11.5px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.map-direction-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 28px rgba(236, 0, 140, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.map-direction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(236, 0, 140, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.map-direction-btn i { font-size: 14px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    color: var(--black-soft);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--text-dark);
    background: #FFF9FB;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(110, 110, 120, 0.6);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(233, 30, 99, 0.35);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12),
                0 6px 18px rgba(233, 30, 99, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.error-msg {
    display: block;
    font-size: 12px;
    color: var(--pink-deep);
    margin-top: 5px;
    min-height: 16px;
}

.form-success {
    display: none;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 14px;
    border-radius: 10px;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
}

.form-success.active { display: block; animation: fadeInUp 0.5s ease; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-wrap iframe {
    display: block;
    filter: saturate(0.9);
}

/* ============================================
   Footer — Premium Dark + Gold
   ============================================ */
.footer {
    background: var(--grad-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about-col {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 4px;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
}

.footer-about {
    margin: 14px 0 24px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-4px) rotate(8deg);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.4);
}

.footer-col h4 {
    font-family: var(--ff-heading);
    color: var(--gold-light);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1.5px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
}

.fc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-contact li:hover .fc-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    color: var(--gold-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit:hover { color: var(--white); }

.footer-policy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-policy a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-policy a:hover { color: var(--gold-light); }

.footer-policy .divider {
    color: rgba(201, 169, 110, 0.4);
}

/* ============================================
   Floating Buttons
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1) rotate(8deg); }

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

.call-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.5);
    z-index: 998;
    transition: transform 0.3s ease;
}

.call-float:hover { transform: scale(1.1) rotate(-8deg); }

.call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--rose-gold);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   Mobile Sticky Action Bar (WhatsApp + Call Now)
   ============================================ */
.mobile-action-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 996;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.mab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 8px;
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mab-btn:active {
    transform: scale(0.96);
    opacity: 0.85;
}

.mab-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.mab-label {
    white-space: nowrap;
}

.mab-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ============================================
   Policy / Terms Modal
   ============================================ */
.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.policy-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.policy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 13, 31, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.policy-dialog {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: 4px solid var(--gold);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.policy-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(183, 110, 121, 0.1);
    color: var(--purple-dark);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.policy-close:hover {
    background: var(--grad-primary);
    color: var(--white);
    transform: rotate(90deg);
}

.policy-head {
    padding: 30px 36px 18px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
    background: linear-gradient(135deg, #FFF9FB, #FCE4EC);
}

.policy-eyebrow {
    display: inline-block;
    font-family: var(--ff-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--rose-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.policy-head h3 {
    font-family: var(--ff-heading);
    font-size: 28px;
    color: var(--purple-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.policy-meta {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
}

.policy-body {
    padding: 24px 36px;
    overflow-y: auto;
    flex: 1;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 14.5px;
}

.policy-body h4 {
    font-family: var(--ff-heading);
    font-size: 17px;
    color: var(--purple-dark);
    margin: 18px 0 8px;
    font-weight: 700;
}

.policy-body h4:first-child { margin-top: 0; }

.policy-body p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.policy-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.policy-body ul li {
    padding: 4px 0 4px 22px;
    position: relative;
    color: var(--text-muted);
}

.policy-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
}

.policy-body::-webkit-scrollbar { width: 6px; }
.policy-body::-webkit-scrollbar-track { background: var(--cream); }
.policy-body::-webkit-scrollbar-thumb {
    background: var(--grad-primary);
    border-radius: 3px;
}

.policy-footer {
    padding: 18px 36px 24px;
    border-top: 1px solid rgba(183, 110, 121, 0.12);
    text-align: right;
    background: var(--cream);
}

@media (max-width: 600px) {
    .policy-dialog { border-radius: 18px; max-height: 92vh; }
    .policy-head, .policy-body, .policy-footer { padding-left: 22px; padding-right: 22px; }
    .policy-head h3 { font-size: 22px; }
    .policy-footer { text-align: center; }
    .policy-footer .btn { width: 100%; justify-content: center; }
}

.back-to-top {
    position: fixed;
    bottom: 176px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(183, 110, 121, 0.55);
}

/* ============================================
   Scroll Reveal
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 992px) {
    .section { padding: 38px 0; }
    .section-head { margin-bottom: 26px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 480px; max-width: 600px; margin: 0 auto; }

    .counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 20px;
        margin-top: 40px;
    }
    .counter-box { border-right: none; border-bottom: 1px solid rgba(183, 110, 121, 0.1); padding-bottom: 24px; }
    .counter-box:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 16px; }

    .services-grid .service-card { flex: 0 0 calc((100% - 30px) / 2); max-width: calc((100% - 30px) / 2); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid .blog-card:last-child { grid-column: 1 / -1; max-width: 540px; margin: 0 auto; }

    .contact-hero-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
    .contact-dark-panel { padding: 44px 36px 56px; }
    .contact-form-float { padding: 38px 32px; }
    .contact-map-band { height: 420px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 720px) {
    html { scroll-padding-top: 80px; }

    .container { padding: 0 16px; }

    .top-bar { padding: 8px 0; font-size: 12px; }
    .top-bar-inner {
        justify-content: center;
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }
    .top-bar-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 12px;
    }
    .top-bar-left .top-bar-item { font-size: 12px; }
    .top-bar-right {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-bar-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .nav-inner { padding: 10px 16px; }
    .logo img { width: 56px; height: 56px; }
    .logo-name { font-size: 18px; }
    .logo-sub { font-size: 9px; letter-spacing: 2px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 26px 30px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(74, 35, 90, 0.2);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        overflow-y: auto;
        will-change: transform;
    }

    .nav-links.active { transform: translateX(0); }

    .nav-links li { width: 100%; }

    .nav-link {
        display: block;
        padding: 13px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(183, 110, 121, 0.12);
        width: 100%;
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-top: 18px;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .nav-cta .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        font-size: 14px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    /* Hero — responsive height based on image aspect */
    .hero { min-height: auto; }
    .hero-sizer { display: block; }
    .scroll-down { display: none; }
    .hero-dots { bottom: 14px; gap: 8px; }
    .dot { width: 9px; height: 9px; }
    .dot.active { width: 22px; }

    .section { padding: 30px 0; }
    .section-title { font-size: 26px; line-height: 1.2; }
    .section-tag { font-size: 13px; letter-spacing: 3px; }
    .section-sub { font-size: 15px; }
    .section-head { margin-bottom: 22px; }

    .about-grid { gap: 28px; }
    .about-images {
        height: auto;
        max-width: 100%;
        position: relative;
        aspect-ratio: 4 / 3;
    }
    .about-img-main {
        position: relative;
        width: 100%;
        height: 100%;
        top: auto;
        left: auto;
        border-radius: 18px;
    }
    .about-img-sub { display: none; }
    .about-badge { padding: 14px 16px; top: 14px; right: 14px; }
    .badge-num { font-size: 28px; }
    .badge-text { font-size: 9px; letter-spacing: 1px; }
    .lead { font-size: 16px; }
    .about-content p { font-size: 14.5px; }
    .about-features i { font-size: 18px; }
    .about-features li { font-size: 14.5px; padding: 6px 0; }

    .counters {
        grid-template-columns: 1fr;
        margin-top: 32px;
        padding: 20px 16px;
    }
    .counter-box { border-bottom: 1px solid rgba(183, 110, 121, 0.1); padding-bottom: 20px; }
    .counter-box:last-child { border-bottom: none; }

    .services-grid { gap: 24px; }
    .services-grid .service-card { flex: 0 0 100%; max-width: 100%; }
    .service-img { height: 200px; }
    .service-body { padding: 26px 22px 28px; }
    .service-body h3 { font-size: 24px; }
    .service-body > p { font-size: 15px; }
    .service-highlights li { font-size: 14.5px; }
    .service-link { font-size: 16px; }

    .why-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-card { padding: 24px 20px; }
    .why-icon { width: 64px; height: 64px; font-size: 26px; margin-bottom: 16px; }
    .why-card h3 { font-size: 20px; }
    .why-card p { font-size: 14.5px; }

    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-grid .blog-card:last-child { grid-column: auto; max-width: 100%; margin: 0; }
    .blog-img { height: 200px; }
    .blog-body { padding: 22px 22px 26px; }
    .blog-body h3 { font-size: 19px; }
    .blog-body p { font-size: 14.5px; }
    .blog-meta { font-size: 13px; gap: 14px; }
    .blog-link { font-size: 15px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .testimonial-card { padding: 26px 20px; }
    .testimonial-card p { font-size: 14.5px; line-height: 1.7; }
    .quote-mark { font-size: 22px; }
    .stars { font-size: 14px; }
    .slider-btn { width: 42px; height: 42px; font-size: 14px; }
    .slider-controls { gap: 16px; margin-top: 20px; }

    .contact-hero-grid { margin-bottom: 24px; }
    .contact-dark-panel { padding: 36px 22px 44px; border-radius: 20px; }
    .cdp-title { font-size: 28px; }
    .cdp-sub { font-size: 14.5px; margin-bottom: 28px; }
    .cdp-eyebrow { font-size: 11px; letter-spacing: 2.5px; }
    .cdp-info { gap: 16px; }
    .cdp-info-icon { width: 40px; height: 40px; min-width: 40px; font-size: 14px; border-radius: 11px; }
    .cdp-info-label { font-size: 10.5px; letter-spacing: 2px; }
    .cdp-info p { font-size: 13.5px; }
    .cdp-orchid { width: 200px; height: 200px; bottom: -30px; right: -40px; opacity: 0.06; }

    .contact-form-float {
        padding: 32px 22px;
        border-radius: 20px;
    }
    .form-head h3 { font-size: 24px; }
    .form-eyebrow { font-size: 11px; letter-spacing: 2.5px; padding: 5px 12px; }
    .form-group label { font-size: 12px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 15px; font-size: 14.5px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .contact-map-band { height: 340px; border-radius: 20px; }
    .map-badge {
        top: 14px;
        left: 14px;
        padding: 11px 15px;
        gap: 10px;
    }
    .map-badge i { width: 34px; height: 34px; font-size: 13px; }
    .map-badge strong { font-size: 13px; }
    .map-badge span { font-size: 11px; }
    .map-direction-btn {
        bottom: 14px;
        right: 14px;
        padding: 11px 18px;
        font-size: 12.5px;
    }

    .footer { padding: 36px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-about-col { max-width: 100%; }
    .footer-logo img { width: 90px; height: 90px; }
    .footer-col h4 { font-size: 19px; margin-bottom: 20px; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 12.5px;
        padding: 20px 0;
    }

    /* Hide round floating WhatsApp & Call on mobile — replaced by sticky action bar */
    .whatsapp-float { display: none; }
    .call-float { display: none; }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        right: 16px;
        font-size: 14px;
    }

    /* Show the sticky action bar on mobile */
    .mobile-action-bar { display: flex; }

    /* Push page content above the sticky bar so footer isn't covered */
    body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }

    .top-bar { font-size: 11px; }
    .top-bar-left .top-bar-item { font-size: 11px; }
    .top-bar-icon { width: 26px; height: 26px; font-size: 12px; }

    .logo img { width: 50px; height: 50px; }

    .section { padding: 26px 0; }
    .section-title { font-size: 23px; }
    .section-sub { font-size: 14px; }
    .section-tag { font-size: 12px; letter-spacing: 2.5px; }

    .about-images { aspect-ratio: 4 / 3; }

    .service-body h3 { font-size: 22px; }
    .blog-body h3 { font-size: 18px; }
    .why-card h3 { font-size: 19px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item.tall { grid-row: span 1; }

    .btn { padding: 12px 24px; font-size: 15px; }

    .nav-links {
        width: 86%;
        padding: 76px 22px 26px;
    }

    .form-head h3 { font-size: 21px; }
    .contact-form-wrap { padding: 22px 16px; }

    .testimonial-card { padding: 22px 16px; }
}
