/*
   NOINK - Professional Paramedical Tattoo Studio
   Design System based on high-end medical aesthetics
*/

:root {
    /* Color Palette - WARM TAUPE & BLUSH + GOLD ACCENTS */
    --bg-color: #FDFBF8;
    --bg-secondary: #F5F0EB;
    --bg-dark: #1A1A1A;
    --bg-accent: #1A1A1A;
    --bg-rose-light: #FDF7F5;
    --bg-rose-medium: #F8EFED;

    /* Primary Accents */
    --accent-main: #A67B5B;
    /* Warm Taupe - for text/lines */
    --accent-gold: #C9A227;
    /* Classic Gold - for icons/buttons */
    --accent-gold-light: #E8C547;
    /* Lighter Gold */
    --accent-cream: #F8F3EF;
    --accent-rose: #D4A59A;
    /* Blush - for soft backgrounds */
    --accent-pink: #C9A090;
    --accent-teal: #7A9B8A;

    /* Text - Higher Contrast */
    --text-headings: #1A1A1A;
    --text-body: #2D2D2D;
    --text-muted: #6B6B6B;
    --text-light: #F8F8F8;

    --white: #FFFFFF;
    --black: #000000;

    /* Borders & Shadows - More Depth */
    --border-light: rgba(201, 162, 39, 0.15);
    /* Gold tint */
    --border-medium: rgba(166, 123, 91, 0.25);
    /* Taupe tint */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.25);
    /* Gold Glow */
    --shadow-inner: inset 0 2px 8px rgba(0, 0, 0, 0.05);

    /* Gradients - Mixed Gold & Taupe */
    --gradient-gold: linear-gradient(135deg, #E8C547 0%, #C9A227 50%, #A67B5B 100%);
    --gradient-gold-soft: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(166, 123, 91, 0.05) 100%);
    --gradient-dark: linear-gradient(145deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-rose: linear-gradient(180deg, #FDF7F5 0%, #F8EFED 100%);
    --gradient-hero: linear-gradient(135deg, #F8F3EF 0%, #F5F0EB 50%, #F0EBE6 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);

    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 4rem;
    --section-spacing-mobile: 2.5rem;

    /* Fonts */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Cormorant Garamond', 'Georgia', serif;
    /* Switched to Garamond */
    --font-script: 'Pinyon Script', cursive;
    --font-display: 'Cinzel', 'Georgia', serif;

    /* Transitions - Smoother */
    --transition-fast: all 0.2s ease-out;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Mobile Touch Targets */
    --touch-target-min: 44px;
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* iOS Safari overscroll background - matches header */
    background-color: #0D0D0D;
    /* iOS Safari safe area */
    padding-top: env(safe-area-inset-top, 0px);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-body);
    line-height: 1.75;
    font-size: 19px;
    /* Increased for Cormorant */
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-main);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-headings);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 400;
}

h1 em,
h1 i {
    font-style: italic;
    color: var(--accent-main);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: 0;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.8;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-main);
    display: block;
    margin-bottom: 1rem;
}

.accent-text {
    font-family: var(--font-serif);
    /* Changed to Serif Italic */
    font-style: italic;
    font-size: 2.2rem;
    color: var(--accent-main);
    display: block;
    margin-bottom: 0.5rem;
}

/* Button Styles - ENHANCED Premium */
.btn {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Main Button Style - Selected Gold Gradient */
.btn-primary {
    background: linear-gradient(135deg, #cba535 0%, #a07d2a 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(160, 125, 42, 0.25);
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4b045 0%, #b38f36 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(160, 125, 42, 0.4);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-headings);
    color: var(--text-headings);
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--text-headings);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline:hover::after {
    height: 100%;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-color: transparent;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-medium);
    filter: brightness(1.08);
}

.btn-text {
    padding: 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--accent-main);
    color: var(--accent-main);
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
}

.btn-text:hover {
    border-bottom-color: var(--text-headings);
    color: var(--text-headings);
}

/* Utility Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-spacing) 0;
}

.text-center {
    text-align: center;
}

/* Header */
.site-header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0D0D0D;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.site-header .logo-text {
    color: var(--white);
}

.site-header .logo-tagline {
    color: var(--accent-gold);
}

.site-header .main-nav a {
    color: var(--white);
}

.site-header .main-nav a:hover {
    color: var(--accent-gold);
}

.site-header .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.site-header .btn-outline:hover {
    background-color: var(--white);
    color: var(--text-headings);
}

.site-header.scrolled {
    background-color: #0D0D0D;
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0 4rem;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-headings);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-tagline {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-style: italic;
    color: var(--accent-main);
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--accent-main);
    display: block;
    margin-top: 5px;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--text-headings);
}

.main-nav a:hover {
    color: var(--accent-main);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.header-social:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section - ENHANCED */
/* Hero Section - SPLIT LAYOUT */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
}

.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 85px 2rem 1rem 4rem;
    /* Minimized padding */
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    max-width: 50%;
}

/* Decorative vertical line for the content side */
.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.05), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.hero-content .eyebrow {
    font-family: var(--font-display);
    letter-spacing: 6px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    padding-bottom: 0;
    margin-bottom: 0.5rem;
    /* Reduced margin */
    display: inline-block;
}

.hero-content .eyebrow::after {
    display: none;
}

.hero-content h1 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    color: var(--text-headings);
    text-shadow: none;
}

.hero-content em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-main);
    font-size: 1em;
    font-weight: 500;
    display: block;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-body);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 0.7rem;
    text-shadow: none;
}

.hero-text-group {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
}

.hero-content .btn {
    margin-top: 1rem;
    padding: 1.05rem 2.4rem;
    font-size: 0.75rem;
}

.hero-quote-box {
    margin-top: 0.8rem;
}

.hero-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent-main);
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
    display: block;
    height: 100%;
    background-image: url('unnamed (18).jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: 50%;
}

/* Subtle overlay on the image to blend edges or warm it up */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-color) 0%, rgba(253, 251, 249, 0) 20%);
    pointer-events: none;
}

/* Hero Title Block - Mobile Only */
.hero-title-block {
    display: none;
    /* Hidden on desktop */
}

/* Desktop: show these elements */
.hero-eyebrow-desktop,
.hero-h1-desktop {
    display: block;
}

.hero-h1-desktop {
    font-size: clamp(3rem, 4vw, 3.8rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.6rem !important;
}

.hero-eyebrow-desktop {
    font-size: 0.85rem !important;
    margin-bottom: 0.6rem !important;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
    }

    .hero-split {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* Mobile Header Layout - Default Space Between */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .main-nav,
    .header-cta {
        display: none;
        /* Hide desktop nav and CTA */
    }

    /* Mobile Grids - Center Aligned */
    .services-3-col,
    .process-steps,
    .contact-wrapper,
    .about-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .service-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    /* Mobile Title Block - CENTERED inside .hero-image */
    .hero-title-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 360px;
        z-index: 10;
        text-align: center;
        padding: 2rem 1.5rem;
        background: rgba(253, 251, 249, 0.85);
        /* var(--bg-color) opacity */
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }

    .hero-title-block .eyebrow {
        font-family: var(--font-display);
        letter-spacing: 6px;
        font-size: 0.8rem;
        color: var(--accent-gold);
        margin-bottom: 0.75rem;
        text-shadow: none;
        width: 100%;
        text-align: center;
    }

    .hero-title-block h1 {
        font-size: 2.2rem;
        line-height: 1.15;
        font-weight: 400;
        margin-bottom: 0;
        color: var(--text-headings);
        text-shadow: none;
        width: 100%;
        text-align: center;
        /* Ensure symmetric text wrap */
        padding: 0;
        box-sizing: border-box;
    }

    .hero-title-block h1 em {
        color: var(--accent-main);
        font-style: italic;
        text-shadow: none;
        display: block;
        width: 100%;
    }

    /* Hide desktop title/eyebrow on mobile */
    .hero-eyebrow-desktop,
    .hero-h1-desktop {
        display: none !important;
    }

    /* Image at top - with position context for title */
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 0;
        padding-bottom: 158.76%;
        /* 1024/645 ratio ~ 158.76% */
        min-height: 0;
        flex: none;
        order: 1;
        background-color: #ddd;
        background-image: url('unnamed (19).jpg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-image::after {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0) 70%,
                var(--bg-color) 100%);
    }

    /* Content below title - separate blocks */
    .hero-content {
        max-width: 100%;
        padding: 0 1.5rem 2rem;
        align-items: center;
        text-align: center;
        background-color: var(--bg-color);
        order: 3;
    }

    .hero-content h1 {
        display: none;
        /* Hidden - using hero-title-block instead */
    }

    .hero-content .eyebrow {
        display: none;
        /* Hidden - using hero-title-block instead */
    }

    /* Subtitle block */
    .hero-text-group {
        border-left: none;
        border-top: none;
        padding: 0;
        margin-bottom: 1rem;
    }

    .hero-text-group .hero-subtitle {
        font-size: 1rem;
        color: var(--text-muted);
        margin-bottom: 0;
        font-weight: 400;
    }

    /* Quote as separate visual block */
    .hero-quote-box {
        margin: 1.5rem auto;
        padding: 1.25rem 1.5rem;
        background: var(--accent-cream);
        border-radius: 8px;
        border-left: 3px solid var(--accent-gold);
        max-width: 320px;
    }

    .hero-quote-box .quote-line {
        display: none;
    }

    .hero-quote {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 0 !important;
    }

    /* Button as separate block */
    .hero-content .btn {
        margin-top: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, var(--accent-cream) 0%, var(--bg-secondary) 50%, #E5DED5 100%);
    color: var(--text-muted);
}

/* Intro Section - Visual Separation */
.intro-section {
    background-color: var(--bg-secondary);
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}



/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .signature {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--text-headings);
}

/* Results / Before & After Section */
.results-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #FBF8F6 50%, var(--bg-rose-light) 100%);
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.35;
}

.results-section::after {
    content: '✧';
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--accent-gold);
    background: var(--bg-color);
    padding: 0 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    background: var(--white);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.result-card:hover img {
    transform: scale(1.03);
}

.result-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 1.5rem 1.5rem 4rem;
}

.result-label span {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Results Grid */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-label {
        padding: 2rem 1rem 1rem;
    }

    .result-label span {
        font-size: 1rem;
    }
}

/* Services Section (UPDATED) */
.featured-service {
    background-color: var(--white);
}

.vintage-box {
    background-color: var(--accent-main);
    color: var(--accent-cream);
    border: 4px double var(--accent-cream);
    /* Double border like image */
    padding: 1rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(62, 50, 40, 0.15);
}

/* Pricing badge styles are defined below explicitly */

/* Applying vintage style directly to pricing badge for simplicity */
.pricing-badge {
    background-color: var(--accent-main);
    color: var(--accent-cream);
    border: 4px double var(--accent-cream);
    padding: 0.8rem 2.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(242, 230, 216, 0.8);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    display: block;
    line-height: 1.1;
    margin: 5px 0;
    color: var(--accent-cream);
    /* Cream text */
}

.price-unit {
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: rgba(242, 230, 216, 0.8);
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    color: var(--text-body);
    line-height: 1.8;
}

/* New 3-Column Service Grid Style - ENHANCED */
.services-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-soft);
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover::after {
    bottom: 0;
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--text-headings);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Candidacy & Process Sections - ENHANCED Visual Dynamics */
.bg-sand {
    background: linear-gradient(180deg, #E8DDD0 0%, #DED3C5 50%, #D4C9BB 100%);
    position: relative;
}

.bg-sand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-main) 50%, transparent 100%);
    opacity: 0.3;
}

.bg-sand::after {
    content: '◆';
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--accent-main);
    background: #E8DDD0;
    padding: 0 1rem;
}

.bg-rose {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-rose-light) 30%, var(--bg-rose-medium) 100%);
    position: relative;
}

.bg-rose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-rose) 50%, transparent 100%);
    opacity: 0.4;
}

.bg-rose::after {
    content: '✦';
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--accent-rose);
    background: #FFFFFF;
    padding: 0 1rem;
}

/* Specific Gradients for Hero & Welcome */
.bg-hero-gradient {
    background: radial-gradient(circle at center, #FFFFFF 10%, #FBF6F1 50%, #E6DCD3 100%) !important;
    position: relative;
}

/* Background Effect Animation */
/* Background Effect Animations - Independent Floating */
@keyframes float-gold {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-10px, 40px) scale(0.95);
        opacity: 0.4;
    }
}

@keyframes float-rose {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(30px, -20px) scale(1.15);
        opacity: 0.7;
    }

    100% {
        transform: translate(20px, -40px) scale(1);
        opacity: 0.5;
    }
}

.bg-hero-gradient::before {
    content: '';
    position: absolute;
    width: 80%;
    /* Smaller width to allow movement */
    height: 80%;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.45) 0%, transparent 70%);
    animation: float-gold 8s ease-in-out infinite alternate;
    display: block !important;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    /* Soften the edges */
}

.bg-hero-gradient::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(184, 149, 149, 0.55) 0%, transparent 70%);
    animation: float-rose 10s ease-in-out infinite alternate;
    display: block !important;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.bg-welcome-gradient {
    background: linear-gradient(180deg, #FDF7F7 0%, #F5EBEB 100%);
    position: relative;
    border-top: 1px solid rgba(184, 149, 149, 0.1);
}

/* Process Section - Elegant Light Theme */
.dark-section {
    background: linear-gradient(180deg, var(--bg-rose-medium) 0%, #EDE5E5 50%, #E8E0E0 100%);
    color: var(--text-headings);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-main) 50%, transparent 100%);
    opacity: 0.25;
}

.dark-section::after {
    content: '❖';
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--accent-main);
    background: var(--bg-rose-medium);
    padding: 0 1rem;
}

.dark-section p {
    color: var(--text-body);
}

.dark-section .step-circle {
    background: var(--white);
    color: var(--accent-main);
    box-shadow: 0 4px 20px rgba(107, 74, 47, 0.2);
    border: 2px solid var(--accent-rose);
}

.dark-section .step h3 {
    color: var(--text-headings);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.checklist-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.checklist-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.checklist-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.checklist-title i {
    font-size: 1.4rem;
}

.checklist-title.yes {
    color: var(--accent-main);
}

.checklist-title.no {
    color: #8B6B6B;
}

.checklist-box ul {
    list-style: none;
}

.checklist-box li {
    margin-bottom: 1.1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.checklist-box li::before {
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.yes-list li::before {
    content: '\f00c';
    /* fa-check */
    color: var(--accent-main);
}

.no-list li::before {
    content: '\f00d';
    /* fa-xmark */
    color: var(--accent-rose);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--accent-main);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

/* Contact / Footer - Cream Theme */
.dark-bg {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #E5DED5 50%, var(--accent-cream) 100%);
    color: var(--text-body);
}

.dark-bg p,
.dark-bg small {
    color: var(--text-muted);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--text-headings);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info address {
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.legal-info {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-medium);
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    height: fit-content;
    border: 1px solid rgba(107, 74, 47, 0.1);
}

.contact-form-wrapper h3 {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-align: center;
    color: var(--accent-main);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #FAF8F6;
    /* Very light subtle cream/grey */
    border: 1px solid rgba(107, 74, 47, 0.15);
    color: var(--text-body);
    font-family: var(--font-sans);
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.main-footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-address {
    font-family: var(--font-sans);
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #fff;
    color: #000;
}

.footer-right {
    text-align: right;
    min-width: 200px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-info-footer {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}


.legal-info {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    font-size: 0.8rem;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 5rem;
    }

    .container {
        width: 92%;
        padding: 0 1.5rem;
    }

    .services-3-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    :root {
        --section-spacing: var(--section-spacing-mobile);
    }

    /* iOS Safari safe areas */
    body {
        padding-top: var(--safe-area-inset-top);
        padding-bottom: var(--safe-area-inset-bottom);
    }

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
    }

    /* Prevent zoom on input focus (iOS) */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Typography scaling */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.15;
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    /* Header mobile optimization */
    .site-header {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 999;
        padding-top: 100px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.4rem;
        font-weight: 500;
        color: var(--text-headings);
        padding: 1rem 2rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Override header's white color when menu is active */
    .main-nav.active a {
        color: var(--text-headings) !important;
    }

    .main-nav.active a:hover,
    .main-nav.active a:active {
        color: var(--accent-gold) !important;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 30px;
        height: 2px;
        background: var(--gradient-gold);
        transition: transform 0.3s ease;
    }

    .main-nav a:hover::after,
    .main-nav a:active::after {
        transform: translateX(-50%) scaleX(1);
    }

    .header-cta {
        display: none;
    }

    /* Mobile Hamburger Menu - ENHANCED */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        cursor: pointer;
        padding: 12px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background-color: #FFFFFF;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-toggle.active {
        background: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle.active span {
        background-color: var(--text-headings);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ============================================
       MOBILE HERO - PREMIUM REDESIGN
       ============================================ */
    /* ============================================
       MOBILE HERO - PREMIUM REDESIGN
       ============================================ */
    .hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 70px;
        padding-bottom: 4rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-split {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-image {
        min-height: 280px;
        max-height: 40vh;
        order: -1;
    }

    /* Enhanced Mobile Background Effects */
    /* Background override removed to allow Breathing Mesh on mobile */

    .bg-hero-gradient::before {
        width: 150%;
        height: 50%;
        top: -5%;
        right: -25%;
        opacity: 0.7;
        background: radial-gradient(circle, rgba(201, 162, 39, 0.5) 0%, transparent 60%);
        filter: blur(50px);
    }

    .bg-hero-gradient::after {
        width: 150%;
        height: 50%;
        bottom: 5%;
        left: -25%;
        opacity: 0.7;
        background: radial-gradient(circle, rgba(184, 149, 149, 0.6) 0%, transparent 60%);
        filter: blur(50px);
    }

    /* Mobile Hero Content - Enhanced */
    .hero-content {
        padding: 1.5rem 1.5rem 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }

    .hero-content::after {
        display: none;
    }

    /* Enhanced Eyebrow on Mobile */
    .hero-content .eyebrow {
        font-size: 0.9rem;
        letter-spacing: 6px;
        color: var(--accent-gold);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1.25rem;
    }

    .hero-content .eyebrow::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gradient-gold);
        border-radius: 2px;
    }

    /* Mobile Hero Title - BIGGER */
    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    }

    .hero-content em {
        display: block;
        margin-top: 0.25rem;
    }

    /* Mobile Hero Description */
    .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 90%;
        margin: 0 auto 2rem auto;
        color: var(--text-body);
    }

    /* Mobile CTA Button - ENHANCED */
    .hero-content .btn-primary {
        padding: 1.1rem 2.5rem;
        font-size: 0.85rem;
        letter-spacing: 2px;
        width: auto;
        min-width: 240px;
        box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
    }

    /* Services mobile */
    .services-3-col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .service-item:hover {
        transform: translateY(-6px);
    }

    /* Sections mobile */
    .section {
        padding: var(--section-spacing-mobile) 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Checklist mobile */
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Results layout mobile adjustment */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .result-label {
        padding: 1rem 0.5rem;
        /* Reduced padding */
    }

    .result-label span {
        font-size: 0.8rem;
        /* Smaller text */
        line-height: 1.2;
    }

    .checklist-box {
        padding: 1.75rem;
    }

    /* Process steps mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Contact mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-wrapper {
        order: -1;
    }

    /* Buttons touch-friendly */
    .btn {
        min-height: var(--touch-target-min);
        padding: 0.875rem 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Icon circles touch-friendly */
    .icon-circle {
        width: 60px;
        height: 60px;
    }

    /* Map container mobile */
    .map-container iframe {
        height: 200px;
    }

    /* Reduce animations on mobile for performance */
    .service-item::after {
        display: none;
    }

    .hero-image::after {
        display: none;
    }
}

/* Small Mobile Breakpoint (iPhone SE, etc.) */
@media (max-width: 375px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem 2.5rem;
    }

    .service-item {
        padding: 1.5rem 1.25rem;
    }

    .checklist-box {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* Fix for iOS momentum scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Fix for iOS fixed positioning */
    .site-header {
        position: -webkit-sticky;
        position: sticky;
    }

    /* Fix for 100vh on iOS */
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* ============================================
   VISUAL DYNAMICS - ANIMATIONS & EFFECTS
   ============================================ */

/* Base Animations - MUST BE OUTSIDE reduced-motion block */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide animations */
.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(201, 162, 39, 0.6), 0 0 80px rgba(201, 162, 39, 0.3);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(90deg,
            var(--text-headings) 0%,
            var(--accent-gold) 25%,
            var(--text-headings) 50%,
            var(--accent-gold) 75%,
            var(--text-headings) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Card Shine Sweep Effect */
@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.service-item,
.result-card,
.checklist-box {
    position: relative;
    overflow: hidden;
}

.service-item::after,
.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: none;
}

.service-item:hover::after,
.result-card:hover::before {
    animation: shine-sweep 0.8s ease-out;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Icons */
.social-icon {
    font-size: 2rem;
    color: var(--accent-main);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-5px) scale(1.1);
}

.dark-bg .social-icon {
    color: var(--white);
}

.dark-bg .social-icon:hover {
    color: var(--accent-gold);
}

/* Decorative Elements */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.gold-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine-sweep 3s ease-in-out infinite;
}

.gold-line-left {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* Section Header Styling */
.section-header {
    margin-bottom: 1.5rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-header.text-left::after {
    margin-left: 0;
}

/* Icon Circles - Enhanced */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium), 0 0 30px rgba(201, 162, 39, 0.2);
    transition: var(--transition-bounce);
    position: relative;
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.icon-circle:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-strong), 0 0 50px rgba(201, 162, 39, 0.4);
}

/* Step Circle Animation */
.step-circle {
    position: relative;
    transition: var(--transition-bounce);
}

.step-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--accent-rose);
    opacity: 0;
    transition: var(--transition-smooth);
}

.step:hover .step-circle {
    transform: scale(1.1);
}

.step:hover .step-circle::before {
    opacity: 1;
    animation: rotate-border 10s linear infinite;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Accent Border Cards */
.accent-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.accent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.accent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Underline Hover Effect */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-underline:hover::after {
    width: 100%;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.badge-gold {
    background: var(--gradient-gold);
    color: var(--white);
}

.badge-gold:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.badge-outline {
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-main);
}

/* ============================================
   ENHANCED VISUAL DYNAMICS - DESKTOP
   ============================================ */

/* Floating Particles Background */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(201, 162, 39, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(184, 149, 149, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 40%, rgba(201, 162, 39, 0.25) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 80%, rgba(184, 149, 149, 0.25) 0%, transparent 100%);
    animation: float-particles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-particles {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

/* Enhanced Button Interactions */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Glowing CTA on Hero */
.hero .btn-primary {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(201, 162, 39, 0.6), 0 0 60px rgba(201, 162, 39, 0.3);
    }
}

/* Section Scroll Reveal Enhancements */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--border-light) 20%,
            var(--border-light) 80%,
            transparent 100%);
    opacity: 0.5;
}

/* Animated Eyebrow Text */
.eyebrow {
    position: relative;
    overflow: hidden;
}

.eyebrow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible .eyebrow::before,
.eyebrow.visible::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Results Cards - Enhanced Hover */
.result-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.result-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.result-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.result-card:hover img {
    transform: scale(1.08);
}

/* Service Items - Staggered Animation */
.services-3-col .service-item:nth-child(1) {
    transition-delay: 0.1s;
}

.services-3-col .service-item:nth-child(2) {
    transition-delay: 0.2s;
}

.services-3-col .service-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* Process Steps - Line Connection */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--accent-rose) 0%,
            var(--accent-gold) 50%,
            var(--accent-rose) 100%);
    opacity: 0.3;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-body: #000000;
        --text-headings: #000000;
        --border-light: rgba(0, 0, 0, 0.3);
    }
}

/* ============================================
   MOBILE VISUAL DYNAMICS
   ============================================ */
@media (max-width: 768px) {

    /* Faster animations on mobile */
    .fade-up {
        transform: translateY(30px);
        transition-duration: 0.5s;
    }

    .scale-in {
        transition-duration: 0.4s;
    }

    /* Simplified hover effects for touch */
    .service-item:hover {
        transform: translateY(-4px);
    }

    .result-card:hover {
        transform: translateY(-8px);
    }

    .result-card:hover img {
        transform: scale(1.03);
    }

    /* Touch-friendly tap feedback */
    .btn:active {
        transform: scale(0.97);
        transition-duration: 0.1s;
    }

    .service-item:active,
    .result-card:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    /* Disable complex animations */
    .icon-circle::after {
        display: none;
    }

    .step:hover .step-circle::before {
        display: none;
    }

    .process-steps::before {
        display: none;
    }

    /* Simplified floating particles */
    .hero::before {
        opacity: 0.3;
        animation-duration: 30s;
    }

    /* Keep glow subtle */
    .hero .btn-primary {
        animation: none;
        box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    }

    /* Swipe hint for results gallery */
    .results-grid {
        scroll-behavior: smooth;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up,
    .fade-in,
    .scale-in,
    .slide-left,
    .slide-right {
        opacity: 1;
        transform: none;
    }

    .float-animation,
    .pulse-glow,
    .shimmer-text {
        animation: none;
    }
}

/* ============================================
   PAGE LOAD ANIMATION
   ============================================ */
body {
    opacity: 1;
}

body:not(.page-loaded) .fade-up,
body:not(.page-loaded) .fade-in,
body:not(.page-loaded) .scale-in {
    opacity: 0;
}

body.page-loaded .hero-content {
    animation: hero-reveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes hero-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TOUCH ACTIVE STATES
   ============================================ */
.touch-active {
    transform: scale(0.98) !important;
    transition-duration: 0.1s !important;
}

.service-item.touch-active {
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.result-card.touch-active {
    box-shadow: var(--shadow-strong);
}

.checklist-box.touch-active {
    box-shadow: var(--shadow-medium);
}

/* ============================================
   MOBILE MENU ANIMATION ENHANCEMENTS
   ============================================ */
@media (max-width: 768px) {
    .main-nav ul {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    }

    .main-nav.active ul {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav li {
        opacity: 0;
        transform: translateX(-20px);
    }

    .main-nav.active li {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-nav.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-nav.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    /* Mobile hamburger animation */
    .mobile-menu-toggle span {
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }

    .mobile-menu-toggle.active span {
        background-color: var(--text-headings);
    }
}

/* ============================================
   TESTIMONIALS SECTION - PREMIUM GLASS STYLE
   ============================================ */
.testimonials-section {
    position: relative;
    /* Use a subtle gradient background for the section to show off the glass effect */
    background: radial-gradient(circle at 50% 50%, #fdfbf9 0%, #f3eee8 100%);
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 149, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.review-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
    text-align: center;
    /* Center align for this style */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

/* Large Decorative Quote Mark */
.review-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.15);
    /* Very subtle gold */
    pointer-events: none;
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-headings);
    /* Darker text for readability */
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    /* Gold divider */
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 10px rgba(201, 162, 39, 0.3);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-headings);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Responsive Grid adjustment */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .review-card {
        padding: 2.5rem 1.5rem 2rem;
    }
}

/* ============================================
   FILE UPLOAD STYLES
   ============================================ */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-wrapper input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover .file-upload-label {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--white);
}

.file-upload-icon {
    font-size: 1.1rem;
}

/* ============================================
   FAQ SECTION (ACCORDION) - PERFORMANCE OPTIMIZED
   ============================================ */
.faq-section {
    padding: 6rem 1.5rem;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* iOS smooth scrolling */
    -webkit-overflow-scrolling: touch;
}

.faq-section .eyebrow.text-center {
    display: block;
    text-align: center;
}

.faq-section h2.text-center {
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(223, 189, 105, 0.3);
    margin-bottom: 0;
    /* Hardware acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.25rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-headings);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
    /* iOS improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    outline: none;
}

.faq-question:hover,
.faq-question:focus {
    color: var(--accent-gold);
}

.faq-question::after {
    content: '+';
    font-family: 'Mulish', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* Smooth height animation using CSS Grid */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: grid-template-rows;
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 1.25rem 0;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1rem 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ============================================
   LATEST INSIGHTS (BLOG PREVIEW)
   ============================================ */
.insights-section {
    padding: 6rem 1.5rem;
    background-color: #f1ebe4;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.insight-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold);
}

.insight-date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.insight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-headings);
}

.insight-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.read-more-link {
    color: var(--text-headings);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--accent-gold);
}

/* ============================================
   EXTENDED FOOTER STYLES
   ============================================ */
.site-footer-extended {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 5rem 1.5rem 2rem;
    font-size: 0.9rem;
}

.footer-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   PROMO POPUP WINDOW
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.visible {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: var(--bg-color);
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-strong);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--accent-gold);
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.close-popup-btn:hover {
    color: var(--accent-main);
}

.popup-body h2 {
    font-family: var(--font-serif);
    color: var(--text-headings);
    font-size: 1.4rem !important;
    margin-bottom: 0.75rem;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase;
}

.popup-body p {
    font-family: var(--font-sans);
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.5;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.popup-form .form-group label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-form input[type="email"] {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-medium);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-body);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.popup-form input[type="email"]:focus {
    border-bottom-color: var(--accent-gold);
}

.popup-form input[type="email"]::placeholder {
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ============================================
   HERO QUOTE & TEXT STYLING
   ============================================ */
/* ============================================
   HERO QUOTE & TEXT STYLING
   ============================================ */
.hero-text-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    /* Ensure contents are centered */
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

.hero-quote-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0;
    max-width: 700px;
}

.quote-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-headings);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

/* Optional: Add decorative quotes if desired, or keep clean */
/* .hero-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--accent-gold);
    vertical-align: middle;
    margin-right: 0.5rem;
    line-height: 0;
} */

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-quote {
        font-size: 1.2rem;
    }
}

/* ============================================
   NEW ANIMATION: SLIDE SIDE ENTRANCE
   ============================================ */
.slide-in-left.visible {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right.visible {
    animation: slideInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ensure elements are hidden before animation */
.slide-in-left,
.slide-in-right {
    opacity: 0;
}



/* ============================================
   USER REQUESTED REFINEMENTS (OVERRIDES)
   ============================================ */

/* 1. Typography Updates - Larger, Elegant Serif */
h1,
h2,
h3,
h4 {
    font-weight: 400 !important;
    letter-spacing: -0.03em !important;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem) !important;
    line-height: 1.1 !important;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
}

/* 2. Button Styles - Minimal Outline / Sharp Corners */
.btn {
    border-radius: 0 !important;
    /* Sharp corners */
    letter-spacing: 3px !important;
    font-size: 0.8rem !important;
    padding: 1rem 2.5rem !important;
    background-image: none !important;
    /* Remove gradients */
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn::before,
.btn-outline::after {
    display: none !important;
}

/* Primary Button Override */
.btn-primary {
    background: transparent !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--text-headings) !important;
}

.btn-primary:hover {
    background: var(--accent-gold) !important;
    color: #fff !important;
}

/* Outline Button Override */
.btn-outline {
    border: 1px solid var(--text-headings) !important;
    color: var(--text-headings) !important;
}

.btn-outline:hover {
    background: var(--text-headings) !important;
    color: #fff !important;
}

/* 3. Card Styles - 'The Good Trade' Aesthetic */
.result-card,
.service-item {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    text-align: center !important;
}

.result-card img {
    border-radius: 20px !important;
    box-shadow: var(--shadow-soft) !important;
    margin-bottom: 1.5rem !important;
    transition: transform 0.4s ease !important;
}

.result-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: none !important;
}

.result-card:hover img {
    transform: none !important;
    /* Image shouldn't scale weirdly, maybe just lift */
    box-shadow: var(--shadow-medium) !important;
}

.result-label {
    position: static !important;
    background: none !important;
    padding: 0.75rem 0 !important;
    transform: none !important;
}

.result-label span {
    color: var(--text-headings) !important;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
}

/* Fix header button visibility stuck on black due to overrides */
.site-header .btn-outline {
    border-color: #fff !important;
    color: #fff !important;
}

.site-header .btn-outline:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Ensure no white gaps from body background leaking */
body {
    margin: 0;
    padding: 0;
    background-color: #0D0D0D;
    /* Match header/footer dark color to hide gaps */
}

/* Set Main Content background to Cream explicitly */
.section,
.hero,
.faq-section {
    background-color: #FDFBF9;
    /* var(--bg-color) */
    position: relative;
    z-index: 2;
}

/* Fix FAQ/Footer white gap */
.main-footer,
footer {
    margin-top: -1px;
    /* Overlap slightly to kill sub-pixel gaps */
    background-color: #0D0D0D;
    position: relative;
    z-index: 3;
}

/* Footer Grid - Symmetric padding with header (4rem) */
.footer-grid {
    width: 100%;
    max-width: none;
    padding: 3rem 4rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: #0D0D0D;
    border-top: 1px solid var(--accent-gold);
    padding: 1.5rem 0;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

/* Fix cookie button visibility on dark background */
.cookie-banner .btn-primary {
    color: #fff !important;
    border-color: var(--accent-gold) !important;
}

.cookie-banner .btn-primary:hover {
    background-color: var(--accent-gold) !important;
    color: #000 !important;
}


@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1.5rem;
    }
}

/* ============================================
   FILE UPLOAD STYLES (Custom Component)
   ============================================ */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    overflow: hidden;
    margin-top: 0.5rem;
}

.file-upload-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

/* Hide native input but keep it clickable over the whole area */
.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Custom Label Styling */
.file-upload-label {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    /* Let clicks pass through to input */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-label i {
    color: var(--accent-gold);
}