/* ============================================================
   Z&A Skin & Aesthetics - Main Stylesheet
   ============================================================ */

:root {
    --primary: #8B5E83;
    --primary-dark: #6B4663;
    --primary-light: #C9A7C7;
    --secondary: #D4A574;
    --secondary-light: #E8C9A0;
    --accent: #E8B4B8;
    --dark: #2C2C2C;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-light: #FDF8F5;
    --bg-section: #F9F2EE;
    --white: #FFFFFF;
    --gold: #C9A96E;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --border: #E8E0DC;
    --shadow: 0 2px 15px rgba(139, 94, 131, 0.1);
    --shadow-lg: 0 5px 30px rgba(139, 94, 131, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ---- Global ---- */
* { box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.section-padding { padding: 80px 0; }
.section-bg { background: var(--bg-section); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-header .subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 94, 131, 0.3);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
    color: var(--white);
}

/* ---- Site Header Wrapper ---- */
.site-header-wrapper {
    position: relative;
    z-index: 1050;
    --header-phone-space: 230px;
}
.site-header-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.site-header-wrapper.sticky .header-top-bar {
    display: none !important;
}
.site-header-wrapper.sticky .header-logo {
    display: none !important;
}
.site-header-wrapper.sticky .navbar-brand {
    display: flex !important;
}
.site-header-wrapper.sticky .navbar-logo-scroll {
    display: block;
}
.header-spacer {
    display: none;
}
body.header-is-sticky .header-spacer {
    display: block;
}

/* ---- Desktop Header Grid ---- */
.header-desktop-grid {
    display: block;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    background: var(--white);
}
.header-logo img {
    display: block;
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
}
.header-logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}
.header-logo-text span {
    color: var(--secondary);
    font-weight: 600;
}

/* ---- Header Top Bar ---- */
.header-top-bar {
    background: var(--white);
    padding: 15px 0;
}
.header-top-inner {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}
.header-info-items {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
    gap: 24px;
    min-width: 0;
}
.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.header-info-item:first-child .header-info-text span {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}
.header-info-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.45rem;
    flex-shrink: 0;
}
.header-info-text {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--text);
    min-width: 0;
}
.header-info-text strong {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.88rem;
}
.header-info-text span {
    color: var(--text-light);
    font-size: 0.78rem;
}
.header-info-item:last-child .header-info-text span {
    white-space: normal;
}
.header-right {
    display: grid;
    align-items: center;
    grid-template-columns: auto minmax(0, var(--header-phone-space));
    gap: 18px;
}
.header-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
}
.header-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 94, 131, 0.3);
    color: var(--white);
}
.header-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
    min-width: 0;
}
.header-phone-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}
.header-phone-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
    letter-spacing: 0.5px;
}
.header-phone-number:hover {
    color: var(--primary) !important;
}

/* ---- Navbar ---- */
/* Default: match scrolled menu colors */
.navbar-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
    position: relative;
    transition: var(--transition);
}
.header-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-height: 52px;
    transition: min-height 0.35s ease, gap 0.35s ease, padding 0.35s ease;
}
.header-nav-inner::before {
    display: none;
}

/* Brand hidden on desktop, visible only on mobile or sticky scroll */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    padding: 8px 0;
    letter-spacing: 0.5px;
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    line-height: 1;
    max-width: 0;
    margin-right: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: max-width 0.35s ease, margin-right 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}
.navbar-brand span { color: var(--secondary); font-weight: 600; }
.navbar-brand img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}
.navbar-logo-mobile {
    display: none;
    max-width: min(24vw, 110px);
}
.navbar-logo-scroll {
    display: none;
    max-width: min(32vw, 190px);
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.navbar-main .navbar-collapse {
    flex-grow: 1;
    justify-content: center;
    min-width: 0;
    transition: transform 0.35s ease;
}

.navbar-main .navbar-toggler {
    margin-left: auto;
}

.navbar-nav {
    margin: 0 auto;
    transition: transform 0.35s ease;
}
/* Default: same menu colors as scrolled */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 12px 18px !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-link.active { color: var(--white) !important; font-weight: 600; }

/* CTA in nav (only visible on mobile) */
.navbar-nav .nav-link.navbar-cta {
    padding: 10px 28px !important;
    background: var(--secondary);
    color: #FFFFFF !important;
    border-radius: 50px;
    margin-left: 10px;
    font-weight: 700 !important;
    font-size: 0.95rem;
    box-shadow: 0 3px 12px rgba(212, 165, 116, 0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
}
.navbar-cta::after { display: none !important; }
.navbar-nav .nav-link.navbar-cta:hover {
    background: var(--gold);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 165, 116, 0.45);
}

/* ---- Sticky/Scrolled: purple nav with white text ---- */
.site-header-wrapper.sticky .navbar-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    width: 100%;
}
.site-header-wrapper.sticky .header-desktop-grid {
    max-width: 100% !important;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.site-header-wrapper.sticky .header-nav-inner::before {
    display: none;
}
.site-header-wrapper.sticky .header-nav-inner {
    justify-content: flex-start;
    gap: clamp(10px, 1.5vw, 20px);
    min-height: 64px;
    padding-left: clamp(16px, 3vw, 40px);
    padding-right: clamp(16px, 3vw, 40px);
}
.site-header-wrapper.sticky .navbar-brand {
    max-width: min(30vw, 260px);
    margin-right: clamp(4px, 0.75vw, 12px);
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.site-header-wrapper.sticky .navbar-brand .navbar-logo-mobile {
    display: none;
}
.site-header-wrapper.sticky .navbar-logo-scroll {
    opacity: 1;
    transform: translateX(0);
}
.site-header-wrapper.sticky .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
}
.site-header-wrapper.sticky .navbar-nav .nav-link::after {
    background: var(--white);
}
.site-header-wrapper.sticky .navbar-nav .nav-link:hover,
.site-header-wrapper.sticky .navbar-nav .nav-link.active {
    color: var(--white) !important;
}
.site-header-wrapper.sticky .navbar-brand {
    color: var(--white) !important;
}
.site-header-wrapper.sticky .navbar-main .navbar-collapse {
    justify-content: flex-end;
}
.site-header-wrapper.sticky .navbar-nav {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(clamp(8px, 1.5vw, 20px));
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-header-wrapper.sticky .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.site-header-wrapper.sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
    .header-desktop-grid {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        grid-template-areas:
            "logo top"
            "logo nav";
        column-gap: 24px;
        align-items: stretch;
    }
    .header-logo {
        grid-area: logo;
        align-self: stretch;
    }
    .header-top-bar {
        grid-area: top;
    }
    .navbar-main {
        grid-area: nav;
    }
    .site-header-wrapper.sticky .header-desktop-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "nav";
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-header-wrapper {
        --header-phone-space: 180px;
    }
    .header-desktop-grid {
        grid-template-columns: 120px minmax(0, 1fr);
        column-gap: 18px;
    }
    .header-top-inner {
        gap: 16px;
    }
    .header-info-items {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
        gap: 16px;
    }
    .header-right {
        grid-template-columns: auto minmax(0, var(--header-phone-space));
        gap: 12px;
    }
    .header-cta-btn {
        padding: 10px 20px;
        font-size: 0.84rem;
    }
    .header-phone-label {
        font-size: 0.7rem;
    }
    .header-phone-number {
        font-size: 1rem;
    }
    .header-info-text strong {
        font-size: 0.82rem;
    }
    .header-info-text span {
        font-size: 0.74rem;
    }
}

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-section) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 5vh 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139,94,131,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 8px;
}
.hero-content .hero-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}
.hero-content .hero-qualifications .badge-qual {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-content .hero-qualifications .badge-qual i { margin-right: 5px; color: var(--gold); }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image-wrapper {
    position: relative;
    text-align: center;
}
.hero-image-wrapper img {
    max-height: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hero-stats {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 20px;
}
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ---- About Section ---- */
.about-section .about-image-wrapper {
    position: relative;
}
.about-section .about-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-section .experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-section .experience-badge .number { font-size: 2rem; font-weight: 700; display: block; }
.about-section .experience-badge .label { font-size: 0.8rem; opacity: 0.9; }
.about-credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.about-credential .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Services Section ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-card .service-image {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.service-card .service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-section));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.service-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .service-link:hover { color: var(--primary-dark); }

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}
.stat-box {
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.stat-box .stat-icon { font-size: 2rem; margin-bottom: 10px; opacity: 0.8; }
.stat-box .stat-num { font-size: 2.5rem; font-weight: 700; display: block; }
.stat-box .stat-text { font-size: 0.95rem; opacity: 0.85; }

/* ---- Reviews Section ---- */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}
.review-card .review-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}
.review-card .stars { color: var(--gold); margin-bottom: 12px; }
.review-card .review-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-card .reviewer .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 600;
}
.review-card .reviewer .name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.review-card .reviewer .source { font-size: 0.8rem; color: var(--text-light); }
.review-card .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 4px;
}

/* ---- Before & After ---- */
.ba-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ba-images { display: flex; }
.ba-images img { width: 50%; height: 200px; object-fit: cover; }
.ba-card .ba-title {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

/* ---- Gallery ---- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gallery-filters .filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}
.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 94, 131, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 2rem; }

/* ---- Contact Section ---- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.contact-info-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ---- Map ---- */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer h5 { color: var(--white); font-weight: 600; margin-bottom: 20px; }
.footer-logo { max-height: 120px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
}
.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ---- Page Header (inner pages) ---- */
.page-header {
    background: linear-gradient(0deg, var(--primary-light), var(--white));
    padding: 80px 0 60px;
    text-align: center;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-15deg);
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}
.page-header .breadcrumb-item a { color: rgba(44,44,44,0.72); }
.page-header .breadcrumb-item.active { color: var(--dark); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(44,44,44,0.48); }

/* ---- Booking Wizard ---- */
.booking-wizard {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
}
.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.wizard-step .step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-section);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: var(--transition);
}
.wizard-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.wizard-step.completed .step-circle {
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border-color: var(--gold);
    color: var(--white);
}
.wizard-step .step-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.wizard-step.active .step-label { color: var(--primary); font-weight: 600; }
.wizard-step.completed .step-label { color: var(--secondary); font-weight: 600; }

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

.appointment-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.appointment-type-card:hover {
    border-color: rgba(139, 94, 131, 0.3);
    box-shadow: var(--shadow);
}

.appointment-type-card.is-active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 94, 131, 0.08), rgba(232, 201, 160, 0.18));
    box-shadow: var(--shadow);
}

.appointment-type-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.appointment-type-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    color: var(--white);
    font-size: 1rem;
}

.appointment-type-card.is-active .appointment-type-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.appointment-type-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.appointment-type-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.booking-online-panel {
    background: linear-gradient(135deg, rgba(232, 201, 160, 0.28), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(139, 94, 131, 0.16);
    border-radius: var(--radius);
    padding: 18px;
}

.booking-online-note,
.booking-summary-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(139, 94, 131, 0.08);
    color: var(--dark);
}

.booking-online-note i,
.booking-summary-note i {
    color: var(--primary);
    margin-top: 2px;
}

.booking-preselected-banner,
.booking-selected-banner {
    background: linear-gradient(135deg, rgba(232, 201, 160, 0.52), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    color: var(--dark);
    padding: 14px 18px;
}

.booking-preselected-banner i,
.booking-selected-banner i {
    color: var(--primary);
}

.booking-selected-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-selected-banner strong {
    color: var(--dark);
}

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}
.date-picker-grid .day-header {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 8px 0;
}
.date-picker-grid .day-cell {
    padding: 10px 5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.date-picker-grid .day-cell:hover { background: var(--bg-section); }
.date-picker-grid .day-cell.available { color: var(--dark); font-weight: 500; }
.date-picker-grid .day-cell.unavailable {
    color: var(--text-light);
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}
.date-picker-grid .day-cell.selected {
    background: var(--primary);
    color: var(--white);
}
.date-picker-grid .day-cell.today {
    border: 2px solid var(--primary);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.slot-btn {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}
.slot-btn:hover { border-color: var(--primary); color: var(--primary); }
.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.slot-btn.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Patient Cards */
.patient-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}
.patient-card .remove-patient {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.1rem;
}
.patient-card .patient-number {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Booking Summary */
.booking-summary {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
}
.booking-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.booking-summary .summary-row:last-child { border-bottom: none; }
.booking-summary .summary-label { color: var(--text-light); font-size: 0.9rem; }
.booking-summary .summary-value { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}
.booking-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}
.booking-success .ref-number {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 15px;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin: 15px 0;
}

/* ---- Service Detail Page ---- */
.service-detail-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.service-detail-sidebar .sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.service-detail-sidebar .sidebar-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}
.service-detail-sidebar .service-list-item {
    display: block;
    padding: 10px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-detail-sidebar .service-list-item:hover {
    color: var(--primary);
    padding-left: 5px;
}
.service-detail-sidebar .service-list-item.active {
    color: var(--primary);
    font-weight: 600;
}
.service-detail-sidebar .service-list-item:last-child { border-bottom: none; }

/* ---- Lightbox ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .site-header-wrapper {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }
    .site-header-wrapper.sticky {
        top: 0;
    }
    .header-desktop-grid {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-main {
        width: 100%;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image-wrapper { margin-top: 40px; }
    .hero-stats { display: none; }
    .section-padding { padding: 60px 0; }
    .navbar-nav .nav-link { padding: 8px 15px !important; }
    .navbar-cta { margin: 10px 15px; display: inline-block; }
    .booking-wizard { padding: 25px; }
    .navbar-brand,
    .site-header-wrapper.sticky .navbar-brand {
        max-width: min(44vw, 220px);
        margin-right: 0;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        overflow: visible;
        transform: none;
        align-self: center;
    }
    .site-header-wrapper.sticky .navbar-brand {
        max-width: min(40vw, 150px);
        overflow: hidden;
    }
    .navbar-brand .navbar-logo-mobile { display: block; }
    .navbar-brand .navbar-logo-scroll { display: none; }
    .navbar-logo-mobile,
    .site-header-wrapper.sticky .navbar-logo-scroll {
        width: auto;
        max-width: 100%;
        max-height: 42px;
    }
    .site-header-wrapper.sticky .navbar-logo-scroll {
        max-height: 30px;
    }
    .header-nav-inner::before { display: none; }
    .header-nav-inner,
    .site-header-wrapper.sticky .header-nav-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding: 12px 16px;
        gap: 12px;
    }
    .site-header-wrapper.sticky .header-nav-inner {
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
        padding-right: 12px;
        padding-bottom: 8px;
        padding-left: 12px;
    }
    .navbar-main .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        order: 3;
        margin-top: 6px;
        transform: none;
    }
    .navbar-main .navbar-collapse.show,
    .navbar-main .navbar-collapse.collapsing {
        padding: 16px 18px 18px;
        background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(43, 28, 41, 0.24);
    }
    .navbar-main .navbar-toggler,
    .site-header-wrapper.sticky .navbar-main .navbar-toggler {
        margin-right: 0;
        align-self: center;
    }
    .navbar-nav {
        width: 100%;
        margin: 0;
        text-align: left;
        align-items: flex-start !important;
        gap: 2px;
        transform: none;
    }
    .navbar-nav .nav-item {
        width: 100%;
    }
    .navbar-nav .nav-link {
        display: inline-block;
        width: auto;
        padding: 10px 0 !important;
        font-size: 1rem;
    }
    .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        bottom: 4px;
        width: 100%;
        transform-origin: left center;
    }
    .navbar-nav .nav-link.navbar-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 14px 0 0;
        padding: 12px 20px !important;
    }
    /* Mobile collapsed nav: purple bg with white text */
    .navbar-main .navbar-collapse.show .nav-link,
    .navbar-main .navbar-collapse.collapsing .nav-link {
        color: rgba(255,255,255,0.9) !important;
    }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-section { min-height: auto; padding: 5vh 0; }
    .section-header h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 60px 0 40px; }
    .appointment-type-grid { grid-template-columns: 1fr; }
    .wizard-step .step-label { font-size: 0.7rem; }
    .booking-wizard { padding: 20px 15px; }
    .slot-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box .stat-num { font-size: 2rem; }
    .navbar-top-bar .d-flex { flex-direction: column; text-align: center; gap: 5px; }
    .navbar-brand { max-width: min(48vw, 170px); }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .date-picker-grid .day-cell { padding: 8px 2px; font-size: 0.8rem; }
    .wizard-steps { gap: 5px; }
    .footer { text-align: center; }
    .wizard-panel .d-flex.justify-content-between { gap: 10px; }
    .wizard-panel .d-flex.justify-content-between .btn { font-size: 0.85rem; padding: 10px 16px; white-space: nowrap; }
}

/* ---- Loading Spinner ---- */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.8);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}
.spinner-overlay.show { display: flex; }
.spinner-custom {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Working Hours Table ---- */
.hours-table { width: 100%; }
.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; }

/* ---- Coming Soon Page ---- */
body.coming-soon-body {
    min-height: 100vh;
    color: #f5ead8;
    background:
        radial-gradient(circle at top left, rgba(219, 180, 105, 0.18), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(255, 232, 191, 0.14), transparent 20%),
        linear-gradient(135deg, #080706 0%, #140f0b 38%, #2a1a10 100%);
}

body.coming-soon-body main {
    min-height: 100vh;
}

.coming-soon-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: clamp(32px, 5vw, 72px) 0;
    isolation: isolate;
}

.coming-soon-shell::before,
.coming-soon-shell::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(0.5px);
}

.coming-soon-shell::before {
    top: 8%;
    right: -10%;
    width: 38rem;
    height: 38rem;
    background: radial-gradient(circle, rgba(243, 210, 149, 0.12), transparent 62%);
    animation: comingSoonFloat 18s ease-in-out infinite;
}

.coming-soon-shell::after {
    bottom: -14%;
    left: -10%;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(255, 242, 214, 0.09), transparent 64%);
    animation: comingSoonFloat 22s ease-in-out infinite reverse;
}

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

.coming-soon-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
    gap: clamp(20px, 2.6vw, 32px);
    justify-content: stretch;
}

.coming-soon-glass {
    position: relative;
    border: 1px solid rgba(255, 238, 208, 0.18);
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.14), rgba(255, 251, 245, 0.06));
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 230, 183, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 36px;
}

.coming-soon-glass::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 62%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.coming-soon-glass::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 45%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 248, 234, 0.22), transparent);
    transform: rotate(18deg);
    opacity: 0.45;
    pointer-events: none;
    animation: comingSoonSweep 8.5s linear infinite;
}

.coming-soon-brand-panel,
.coming-soon-detail-panel {
    padding: clamp(28px, 4vw, 46px);
}

.coming-soon-brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(248, 225, 177, 0.28);
    background: rgba(255, 250, 240, 0.08);
    color: #f5d79c;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.coming-soon-logo-shell {
    position: relative;
    display: grid;
    place-items: center;
    margin: clamp(22px, 3vw, 32px) 0 20px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 30px;
    background: radial-gradient(circle at top, rgba(255, 242, 211, 0.22), rgba(255, 242, 211, 0.05) 42%, rgba(255, 242, 211, 0.02) 72%);
    overflow: hidden;
}

.coming-soon-logo-shell::before {
    content: '';
    position: absolute;
    inset: 10% 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 232, 182, 0.28), transparent 68%);
    filter: blur(12px);
    animation: comingSoonPulse 6s ease-in-out infinite;
}

.coming-soon-logo {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    filter: drop-shadow(0 18px 40px rgba(214, 168, 79, 0.22));
}

.coming-soon-kicker {
    margin: 0 0 10px;
    color: rgba(247, 232, 209, 0.72);
    font-size: 0.84rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.coming-soon-title,
.coming-soon-panel-title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 0.96;
    color: #fff4dc;
}

.coming-soon-title {
    max-width: 14ch;
    font-size: clamp(2.1rem, 3.4vw, 3.1rem);
    line-height: 1.02;
}

.coming-soon-copy {
    max-width: 58ch;
    margin: 16px 0 0;
    color: rgba(250, 241, 226, 0.82);
    font-size: 0.92rem;
    line-height: 1.72;
}

.coming-soon-action-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: auto;
    margin: 0 0 26px;
}

.coming-soon-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    min-width: 160px;
    flex: 0 1 auto;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 239, 214, 0.22);
    font-weight: 600;
    font-size: 0.98rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.coming-soon-button:hover {
    transform: translateY(-2px);
    color: #fff8ed;
}

.coming-soon-button-primary {
    color: #2f2113;
    background: linear-gradient(135deg, #f7dfb2, #d7a758);
    box-shadow: 0 18px 35px rgba(202, 152, 70, 0.22);
}

.coming-soon-button-primary:hover {
    border-color: rgba(255, 237, 202, 0.44);
    box-shadow: 0 22px 40px rgba(202, 152, 70, 0.28);
}

.coming-soon-button-secondary {
    color: #f9ebcf;
    background: rgba(255, 250, 240, 0.08);
}

.coming-soon-button-secondary:hover {
    border-color: rgba(255, 235, 197, 0.32);
    background: rgba(255, 250, 240, 0.12);
}

.coming-soon-panel-label {
    margin: 0 0 14px;
    color: #e8c98f;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
}

.coming-soon-panel-title {
    font-size: clamp(1.55rem, 2vw, 2.1rem);
    line-height: 1.08;
    max-width: 14ch;
}

.coming-soon-feature-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.coming-soon-feature {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 251, 244, 0.06);
    border: 1px solid rgba(255, 239, 214, 0.12);
}

.coming-soon-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #f1d49e;
    background: linear-gradient(135deg, rgba(255, 237, 206, 0.16), rgba(202, 152, 70, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.coming-soon-feature h3 {
    margin: 0 0 5px;
    color: #fff1d7;
    font-size: 0.98rem;
    font-weight: 600;
}

.coming-soon-feature p,
.coming-soon-meta-card p {
    margin: 0;
    color: rgba(250, 241, 226, 0.74);
    font-size: 0.9rem;
    line-height: 1.6;
}

.coming-soon-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.coming-soon-meta-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.06);
    border: 1px solid rgba(255, 239, 214, 0.12);
    color: inherit;
}

.coming-soon-meta-card span {
    color: rgba(245, 215, 156, 0.84);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.coming-soon-meta-card strong {
    color: #fff5df;
    font-size: 1rem;
    font-weight: 600;
}

.coming-soon-meta-link {
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.coming-soon-meta-link:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 235, 197, 0.26);
    background: rgba(255, 250, 242, 0.1);
    color: inherit;
}

.coming-soon-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(14px);
    opacity: 0.75;
}

.coming-soon-orb-one {
    top: 10%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 226, 170, 0.24), transparent 70%);
    animation: comingSoonOrbit 16s ease-in-out infinite;
}

.coming-soon-orb-two {
    right: 10%;
    top: 32%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 245, 221, 0.12), transparent 68%);
    animation: comingSoonOrbit 20s ease-in-out infinite reverse;
}

.coming-soon-orb-three {
    bottom: 6%;
    left: 42%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(205, 150, 70, 0.18), transparent 72%);
    animation: comingSoonOrbit 18s ease-in-out infinite;
}

@keyframes comingSoonFloat {
    0%,
    100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes comingSoonSweep {
    0% { transform: translate3d(-180%, 0, 0) rotate(18deg); }
    100% { transform: translate3d(360%, 0, 0) rotate(18deg); }
}

@keyframes comingSoonPulse {
    0%,
    100% { opacity: 0.8; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes comingSoonOrbit {
    0%,
    100% { transform: translate3d(0, 0, 0); }
    33% { transform: translate3d(18px, -14px, 0); }
    66% { transform: translate3d(-12px, 16px, 0); }
}

@media (max-width: 991px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-title,
    .coming-soon-panel-title {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .coming-soon-shell {
        padding: 18px 0 24px;
    }

    .coming-soon-glass {
        border-radius: 28px;
    }

    .coming-soon-brand-panel,
    .coming-soon-detail-panel {
        padding: 22px;
    }

    .coming-soon-kicker {
        letter-spacing: 0.2em;
        font-size: 0.76rem;
    }

    .coming-soon-title {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .coming-soon-panel-title {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }

    .coming-soon-action-row {
        width: 100%;
    }

    .coming-soon-button {
        min-width: 0;
        flex: 1 1 0;
        font-size: 0.9rem;
        padding: 12px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-shell::before,
    .coming-soon-shell::after,
    .coming-soon-glass::after,
    .coming-soon-logo-shell::before,
    .coming-soon-orb {
        animation: none;
    }

    .coming-soon-button,
    .coming-soon-meta-link {
        transition: none;
    }
}
