@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
    --primary-gold: #C2A77A;
    --soft-gold: #E5D5C0;
    --charcoal-black: #111111;
    --luxury-white: #FFFFFF;
    --ivory-beige: #F9F7F2;
    --champagne: #FEFBF6;
    --slate-gray: #4A4A4A;
    --error-red: #D32F2F;
    --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #F9F7F2 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--luxury-white);
    color: var(--charcoal-black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--charcoal-black);
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Top Bar --- */
.top-bar {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid rgba(194, 167, 122, 0.15);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info a {
    color: inherit;
    text-decoration: none;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.top-bar-info a:hover {
    color: var(--primary-gold);
}

.top-bar-info i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 13px;
}

.top-bar-social a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--primary-gold);
}

/* --- Dynamic Nav --- */
nav {
    padding: 25px 0;
    background: rgba(252, 250, 250, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(194, 167, 122, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: left;
    color: #1a1a1a;
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 9px;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 4px;
    color: var(--primary-gold);
}

.site-footer .logo-text {
    color: white;
}

.logo:hover {
    transform: scale(1.01);
}

/* --- Premium Hero --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-gradient);
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-side {
    padding-right: 40px;
    padding-left: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-img-side {
    position: relative;
    height: 100%;
}

.hero-img-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 300px 300px 0 0;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.hero-offer {
    font-weight: 500;
    color: var(--primary-gold);
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 20px;
}

.hero-floating-note {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-floating-note p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.gold-badge {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: block;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--charcoal-black);
}

.hero p {
    font-size: 18px;
    color: var(--slate-gray);
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 50px;
}

/* --- Floating Button Utility --- */
.cta-button {
    background: var(--charcoal-black);
    color: white;
    padding: 22px 45px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(194, 167, 122, 0.3);
}

.pulse-cta {
    background: var(--primary-gold) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(194, 167, 122, 0.4) !important;
    animation: pulse-animation 2s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(194, 167, 122, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 45px rgba(194, 167, 122, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(194, 167, 122, 0.4); }
}

/* --- Luxury Quiz Section --- */
.quiz-section {
    padding: 80px 0;
    background: #F8F6F1;
}

.quiz-container {
    background: #fff;
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(194,167,122,0.1);
    scroll-margin-top: 120px;
}

.quiz-intro {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--charcoal-black);
}

.section-lead {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* --- Progress Indicator --- */
.progress-indicator {
    max-width: 500px;
    margin: 0 auto 30px;
}

.progress-bar {
    height: 4px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-gold);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Reviews Design --- */
.reviews {
    padding: 120px 0;
    background: #111;
    color: white;
}

.reviews h2 {
    color: white;
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.google-rating strong {
    font-size: 24px;
    color: white;
}

.google-rating .g-stars {
    color: #fbbc05;
    font-size: 18px;
}

.google-rating span {
    color: #9aa0a6;
    font-size: 14px;
}

.review-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 40px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.review-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 380px;
    background: #1a1a1a;
    padding: 45px;
    border-top: 3px solid var(--primary-gold);
    scroll-snap-align: start;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* --- Luxury Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--ivory-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after,
.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.values-section {
    padding: 100px 0;
    background: var(--ivory-beige);
}

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

.value-card {
    text-align: center;
}

.site-footer {
    padding: 100px 0;
    background: #000;
    color: white;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-panel {
    text-align: left;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    font-size: 10px;
    opacity: 0.4;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-side {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-img-side img {
        height: 520px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .top-bar {
        padding: 10px 0;
        letter-spacing: 1px;
    }

    .top-bar-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-bar-info a {
        margin-right: 0;
        font-size: 10px;
    }

    nav {
        padding: 16px 0;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .logo span {
        letter-spacing: 5px;
    }
    .nav-links, .lang-switcher {
        display: none;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 18px 22px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero .cta-button {
        width: auto;
        max-width: none;
        background: rgba(17, 17, 17, 0.84);
        border: 1px solid rgba(255, 255, 255, 0.24);
        backdrop-filter: blur(2px);
    }

    .quiz-section {
        padding: 56px 0;
        background: #F4F1EA;
    }

    .quiz-section {
        padding: 5px 0;
        background: #F8F6F1;
    }

    .quiz-container {
        padding: 15px 10px;
        margin: 0;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        border: 1px solid rgba(194, 167, 122, 0.1);
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        background: white;
    }

    #quiz-widget-container iframe {
        min-height: 750px;
        width: 100%;
        display: block;
    }

    .quiz-container::after {
        display: none;
    }

    .quiz-intro {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 30px);
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .quiz-step h3 {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .options-stack {
        gap: 6px;
    }

    .quiz-option-label {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .step-header {
        margin-bottom: 10px;
    }

    .step-counter {
        font-size: 11px;
    }

    .values-section {
        padding: 70px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        background: #fff;
        padding: 28px 20px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        border-radius: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 26px;
    }

    .gallery-item {
        height: 360px;
    }

    .review-slider {
        gap: 16px;
        padding-bottom: 20px;
    }

    .review-card {
        min-width: 85%;
        padding: 30px 24px;
        scroll-snap-align: center;
    }

    .google-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .google-rating i {
        color: #fbbc05;
    }

    .reviews h2 {
        font-size: clamp(34px, 10vw, 42px);
        margin-bottom: 34px;
    }

    .site-footer {
        padding: 70px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .footer-panel {
        padding: 22px;
    }
}

/* --- Modern Quiz Style (Screenshot Match) --- */
#quiz-widget-container {
    background: #f1ede4; /* Luxury Sand/Champagne background */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    padding: 60px 20px;
    border-radius: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #quiz-widget-container {
        padding: 15px 10px;
        border-radius: 20px;
        margin-top: 15px;
    }

    .quiz-form.modern-style {
        padding: 15px;
    }
}

.quiz-form.modern-style {
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
}

/* Hide all steps by default */
.quiz-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

/* Show only the active step */
.quiz-step.active {
    display: block;
}

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

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-counter {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.back-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;
}

.back-btn:hover {
    color: var(--charcoal-black);
}

.quiz-step h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--charcoal-black);
    font-family: 'Cormorant Garamond', serif;
}

.options-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.quiz-option-wrapper {
    position: relative;
    width: 100%;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.quiz-option-label {
    display: block;
    padding: 15px 22px;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal-black);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    position: relative;
}

.quiz-option-label:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
    background: #FFFAF1;
}

.hidden-radio:checked + .quiz-option-label {
    border-color: var(--primary-gold);
    background: #FFFAF1;
    box-shadow: 0 10px 30px rgba(194, 167, 122, 0.1);
}

.hidden-radio:checked + .quiz-option-label::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 18px;
}

.next-step-btn {
    width: 100%;
    padding: 14px;
    background: #c2a77a; /* Use standard primary gold for consistency */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.next-step-btn:not(:disabled):hover {
    background: #e6a330;
    transform: translateY(-2px);
}

.input-group {
    margin-bottom: 20px;
}

.modern-style input[type="text"],
.modern-style input[type="email"] {
    width: 100% !important;
    padding: 16px 20px !important;
    border: 1px solid #e0e4e8 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: var(--charcoal-black) !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.modern-style input[type="tel"] {
    width: 100% !important;
    padding: 16px 20px 16px 85px !important; /* Fixed large padding to clear the flag */
    border: 1px solid #e0e4e8 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: var(--charcoal-black) !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.modern-style input:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 4px 12px rgba(194, 167, 122, 0.1) !important;
}

/* International Phone Input Polish */
.iti { 
    width: 100%; 
    margin-bottom: 20px; 
}

.iti__flag-container { 
    border-radius: 10px 0 0 10px; 
}

/* Premium CTA Button Overlay */
.modern-style .cta-button {
    background: var(--primary-gold) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 8px 25px rgba(194, 167, 122, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}

.modern-style .cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(194, 167, 122, 0.35) !important;
}

.modern-style .cta-button:active {
    transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
    .quiz-form.modern-style { padding: 30px 20px; }
    .quiz-step h3 { font-size: 20px; }
}

/* --- New Navigation Styles --- */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal-black);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    padding: 12px 25px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--charcoal-black);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid rgba(194, 167, 122, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;
    text-decoration: none;
    color: var(--charcoal-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .lang-switcher { display: none; }
    .mobile-menu-btn { display: block; }
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background: var(--luxury-white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(194, 167, 122, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(194, 167, 122, 0.15);
}

.service-card.reverse-layout {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-content {
    flex: 1;
    padding: 50px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--slate-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.service-benefits li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal-black);
    font-weight: 500;
}

@media (max-width: 900px) {
    .service-card, .service-card.reverse-layout {
        flex-direction: column;
        gap: 0;
    }
    .service-image-wrapper {
        height: 300px;
        width: 100%;
    }
    .service-content {
        padding: 30px;
    }
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background: var(--bg-gradient);
}

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

.about-img img {
    width: 100%;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-content p {
    color: var(--slate-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-img {
        order: -1;
    }
}

/* --- Location Section --- */
.location-section {
    padding: 80px 0 0 0;
    background: var(--ivory-beige);
}

.map-container {
    width: 100%;
    margin-top: 60px;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--slate-gray);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.lang-switcher a.active {
    color: var(--primary-gold);
}

.lang-switcher a:hover {
    color: var(--charcoal-black);
}

.lang-switcher .separator {
    color: var(--slate-gray);
    opacity: 0.5;
    font-size: 12px;
}

.mobile-lang-switcher a {
    text-decoration: none;
    color: var(--slate-gray);
    font-size: 14px;
    font-weight: 600;
}

.mobile-lang-switcher a.active {
    color: var(--primary-gold);
}

/* --- Dedicated Service Landing Pages --- */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, var(--ivory-beige) 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Static Hero Section --- */
.hero-static {
    position: relative;
    padding: 0;
    margin-top: 0; /* Removed offset to fix white gap below sticky nav */
    height: calc(100vh - 80px); /* Full height minus top bar */
    min-height: 600px;
    background-image: url('macro_microblading.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Dark Overlay */
.hero-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-static .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-side {
    max-width: 600px;
}

.hero-text-side h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
}

.hero-offer {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.hero-text-side p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-static {
        margin-top: 0; /* Removed offset to fix white gap on mobile */
        height: auto;
        min-height: 85vh; /* Enough height for mobile */
        justify-content: center;
    }
    .hero-static::before {
        /* On mobile, darken the whole background so text is readable */
        background: rgba(0, 0, 0, 0.6);
    }
    .hero-static .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-text-side {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .hero-text-side h1 {
        font-size: 40px; 
    }
}

.deep-dive-section {
    padding: 100px 0;
    background-color: white;
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deep-dive-grid.reverse-layout {
    direction: rtl;
}

.deep-dive-grid.reverse-layout > * {
    direction: ltr;
}

.deep-dive-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-section {
    padding: 100px 0;
    background-color: white;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(194, 167, 122, 0.3);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-gold);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--charcoal-black);
}

.timeline-content p {
    color: var(--slate-gray);
    line-height: 1.7;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .service-hero-grid, .deep-dive-grid {
        grid-template-columns: 1fr;
    }
    .deep-dive-grid.reverse-layout {
        direction: ltr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        gap: 20px;
    }
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lang-switcher {
        display: none !important;
    }
    .service-hero {
        padding: 100px 0 50px;
    }
}

/* --- Before / After Slider --- */
.before-after-section {
    padding: 100px 0;
    background-color: white;
}

.ba-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 450px;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.ba-slider-after {
    /* Initially show only right 10% (After), so 90% is Before */
    clip-path: polygon(90% 0, 100% 0, 100% 100%, 90% 100%);
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 90%; /* Start at 90% */
    width: 4px;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 10;
}

.ba-slider-handle::after {
    content: '< >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
}

.ba-slider-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--charcoal-black);
    font-weight: 600;
    border-radius: 20px;
    font-size: 14px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ba-slider-label-before {
    left: 20px;
}

.ba-slider-label-after {
    right: 20px;
}

/* --- Floating WhatsApp Button --- */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: wa-pulse 2s infinite ease-in-out;
}

@keyframes wa-pulse {
    0% { transform: scale(1); box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); }
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    color: white;
}

@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
