/* ===================================
   Verhuisbedrijf Bloemendaal
   Professional Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8855;
    --secondary: #1E3A5F;
    --secondary-dark: #142847;
    --secondary-light: #2C4F7A;
    --accent: #FFB627;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Typography — Premium editorial pairing: Fraunces (display) + Inter (body)
   Fraunces is a variable serif with optical sizing + softness axes,
   inspired by Cooper, Windsor and other early 20th-century typefaces. */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-optical-sizing: auto;
    font-variation-settings: 'opsz' 32, 'SOFT' 50;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    font-variation-settings: 'opsz' 144, 'SOFT' 80;
}
h2 {
    font-size: clamp(1.875rem, 4.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 600;
    font-variation-settings: 'opsz' 96, 'SOFT' 60;
}
h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    font-weight: 600;
    font-variation-settings: 'opsz' 48, 'SOFT' 40;
}
h4 {
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    font-variation-settings: 'opsz' 32;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Refined large body text in hero & key areas */
.hero-text p,
.section-header p,
.page-header p {
    font-size: 1.0625rem;
    line-height: 1.65;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

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

.top-bar-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-info span,
.top-bar-info a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

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

.top-bar-social {
    display: flex;
    gap: 0.75rem;
}

.top-bar-social a {
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

/* ===== Header ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 0.5rem;
}

.nav-list a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
    background-color: rgba(255, 107, 53, 0.08);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: var(--radius) !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-text h1 span {
    background: linear-gradient(90deg, #FF6B35 0%, #FFB627 25%, #FF8855 50%, #FFB627 75%, #FF6B35 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    animation: gradient-flow 6s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(255, 182, 39, 0.3));
    border-radius: 8px;
    z-index: -1;
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.hero-badge i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
    position: relative;
    z-index: 2;
}

.hero-image-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
}

.hero-feature strong {
    display: block;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.hero-feature small {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* Floating Elements */
.hero-floating {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.hero-floating i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.hero-floating-1 {
    top: -30px;
    left: -40px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-2 {
    bottom: -30px;
    right: -40px;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Sections ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===== USP Section ===== */
.usp {
    background-color: var(--light);
    padding: 4rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.usp-item {
    text-align: center;
    padding: 1.5rem;
}

.usp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.usp-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.usp-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Services Grid ===== */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ===== About Section ===== */
.about {
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 6rem;
    overflow: hidden;
    position: relative;
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7), rgba(255, 107, 53, 0.4));
}

.about-image-main i {
    position: relative;
    z-index: 1;
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    font-weight: 800;
}

.about-stats span {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.about-feature h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
    font-size: 1.0625rem;
}

.about-feature p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Process Section ===== */
.process {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary,
.cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cta-section .btn-primary:hover,
.cta-buttons .btn-primary:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Disable the gradient shimmer ::before overlay on white-bg CTA buttons */
.cta-section .btn-primary::before,
.cta-buttons .btn-primary::before {
    display: none;
}

.cta-section .btn-primary.pulse-glow,
.cta-buttons .btn-primary.pulse-glow {
    animation: pulse-glow-white 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-white {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
    50% { box-shadow: 0 8px 32px rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 0, 0, 0.2); }
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.75rem;
}

/* ===== Pricing ===== */
.pricing {
    background-color: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
}

.pricing-price small {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-desc {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-card .btn {
    width: 100%;
}

/* ===== Forms ===== */
.form-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--gray-600);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition);
}

.progress-step.active .progress-circle {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.progress-step.completed .progress-circle {
    background: var(--success);
    color: var(--white);
}

.progress-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .progress-label {
    color: var(--primary);
    font-weight: 700;
}

.form-section-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group label .required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--gray-800);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

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

.form-group small {
    margin-top: 0.375rem;
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 2.5rem;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.radio-option,
.checkbox-option {
    position: relative;
    cursor: pointer;
}

.radio-option input,
.checkbox-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-option label,
.checkbox-option label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.radio-option label:hover,
.checkbox-option label:hover {
    border-color: var(--primary);
    background-color: rgba(255, 107, 53, 0.03);
}

.radio-option input:checked + label,
.checkbox-option input:checked + label {
    border-color: var(--primary);
    background-color: rgba(255, 107, 53, 0.08);
    color: var(--primary);
}

.radio-option label::before,
.checkbox-option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-option label::before {
    border-radius: 50%;
}

.checkbox-option label::before {
    border-radius: 4px;
}

.radio-option input:checked + label::before {
    border-color: var(--primary);
    background: radial-gradient(circle, var(--primary) 40%, transparent 45%);
}

.checkbox-option input:checked + label::before {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.form-group input[type="checkbox"].single-check {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    margin-right: 0.5rem;
}

.terms-check {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.terms-check label {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.terms-check input {
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.form-success {
    padding: 2rem;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid var(--success);
    border-radius: var(--radius-lg);
    color: var(--success);
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--success);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.0625rem;
}

.contact-detail strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-detail p,
.contact-detail a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-detail a:hover {
    color: var(--primary-light);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.map-wrapper {
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FAQ ===== */
.faq {
    background-color: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.0625rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text strong {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: var(--gray-400);
}

.footer-about {
    margin: 1.25rem 0;
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-links a::before {
    content: '›';
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: var(--gray-400);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: var(--gray-900);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-payments {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.25rem;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.75rem;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 9999;
    flex-wrap: wrap;
    border: 1px solid var(--gray-200);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-banner-text a {
    color: var(--primary);
    font-weight: 500;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

/* ===== Legal Page Styles ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.legal-content table th {
    background: var(--secondary);
    color: var(--white);
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
}

.legal-content table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.legal-content table tr:last-child td {
    border-bottom: none;
}

.legal-content table tr:nth-child(even) {
    background: var(--gray-50);
}

.legal-content .last-updated {
    background: rgba(255, 107, 53, 0.08);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    color: var(--gray-700);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===================================
   AWARD-WINNING UNIQUE FEATURES
   =================================== */

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.loader-logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-truck 1.5s ease-in-out infinite;
}

@keyframes bounce-truck {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.loader-progress {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: loader-slide 1.4s infinite;
}

@keyframes loader-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.loader-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===== Reading Progress Bar ===== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    z-index: 10000;
    transition: width 0.05s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ===== Custom Cursor ===== */
.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: transform;
}

.custom-cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    will-change: transform;
}

.custom-cursor.hover {
    width: 6px;
    height: 6px;
}

.custom-cursor-follower.hover {
    width: 70px;
    height: 70px;
    opacity: 0.8;
    border-width: 1px;
}

@media (hover: none), (max-width: 1024px) {
    .custom-cursor, .custom-cursor-follower {
        display: none;
    }
}

/* ===== Marquee Strip ===== */
.marquee-section {
    background: var(--secondary);
    color: var(--white);
    padding: 1.25rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--secondary), transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.marquee-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.marquee-divider {
    color: var(--primary);
    font-size: 0.625rem;
    align-self: center;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Live Calculator (UNIQUE) ===== */
.calculator-section {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calc-control {
    margin-bottom: 1.75rem;
}

.calc-control:last-child {
    margin-bottom: 0;
}

.calc-control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.875rem;
}

.calc-control label {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.calc-control label i {
    color: var(--primary);
}

.calc-value {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    min-width: 75px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
    transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.calc-result {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, transparent 50%);
    animation: rotate-bg 25s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.calc-result-content {
    position: relative;
    z-index: 1;
}

.calc-result-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.calc-result-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.calc-result-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.calc-breakdown {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
}

.calc-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-breakdown-item:last-child {
    border-bottom: none;
    margin-top: 0.4rem;
    padding-top: 0.8rem;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.calc-toggle-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.5rem;
}

.calc-toggle {
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
    user-select: none;
    background: var(--white);
}

.calc-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.calc-toggle.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    user-select: none;
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
    background: var(--white);
}

.calc-checkbox:hover {
    border-color: var(--primary);
}

.calc-checkbox.active {
    background: rgba(255, 107, 53, 0.06);
    border-color: var(--primary);
    color: var(--gray-800);
}

.calc-checkbox-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.calc-checkbox.active .calc-checkbox-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.calc-checkbox-icon i {
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.calc-checkbox.active .calc-checkbox-icon i {
    opacity: 1;
}

.calc-add {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.calc-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 1.5rem 0;
}

.calc-section-title {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

/* ===== 3D Tilt Cards ===== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.tilt-card-content {
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-card:hover .tilt-card-content {
    transform: translateZ(40px);
}

/* ===== Animated SVG Truck Banner ===== */
.truck-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.truck-banner-content {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.truck-banner-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.truck-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.truck-road {
    position: relative;
    height: 130px;
    overflow: hidden;
    margin-top: 2rem;
}

.truck-road::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 30px, transparent 30px 60px);
}

.svg-truck {
    position: absolute;
    bottom: 12px;
    left: -200px;
    width: 180px;
    height: 105px;
    animation: drive-across 14s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes drive-across {
    0% { left: -200px; }
    100% { left: calc(100% + 20px); }
}

.svg-truck .wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: wheel-spin 0.4s linear infinite;
}

@keyframes wheel-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

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

/* ===== Floating WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(8deg);
    color: var(--white);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

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

.whatsapp-btn-tooltip {
    position: absolute;
    bottom: calc(100% + 0.75rem);
    right: 0;
    background: var(--secondary);
    color: #ffffff;
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(6px);
}

.whatsapp-btn-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 22px;
    border: 6px solid transparent;
    border-top-color: var(--secondary);
}

.whatsapp-btn:hover .whatsapp-btn-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6.5rem;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.back-to-top svg.progress-ring {
    position: absolute;
    inset: -4px;
    transform: rotate(-90deg);
}

.back-to-top svg.progress-ring circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear;
}

/* ===== Animated Counter ===== */
.stat-counter {
    font-variant-numeric: tabular-nums;
}

/* ===== UNIQUE Availability Calendar ===== */
.availability-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.availability-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.av-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.av-month-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
}

.av-nav {
    display: flex;
    gap: 0.5rem;
}

.av-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.av-day-header {
    text-align: center;
    font-weight: 700;
    color: var(--gray-400);
    font-size: 0.75rem;
    padding: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.av-day {
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--gray-50);
    border: 2px solid transparent;
}

.av-day:hover:not(.disabled):not(.full) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.av-day.available {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

.av-day.limited {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.av-day.full {
    background: rgba(239, 68, 68, 0.05);
    color: var(--gray-400);
    border-color: rgba(239, 68, 68, 0.15);
    cursor: not-allowed;
    text-decoration: line-through;
}

.av-day.disabled {
    background: transparent;
    color: var(--gray-300);
    cursor: default;
}

.av-day.today {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.av-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
}

.av-day.selected {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.av-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.av-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.av-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid;
}

.av-legend-dot.green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.av-legend-dot.orange {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.av-legend-dot.red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

/* ===== Magnetic Buttons ===== */
.btn[data-magnetic],
[data-magnetic] {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== Animated Gradient Mesh in Hero ===== */
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float 20s ease-in-out infinite;
}

.hero-mesh-blob:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    background: var(--primary);
    animation-delay: 0s;
}

.hero-mesh-blob:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: var(--accent);
    animation-delay: -5s;
}

.hero-mesh-blob:nth-child(3) {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    background: #4f46e5;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* ===== Glassmorphism Card ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== Section Heading Underline Animation ===== */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transform: translateX(-50%);
}

.section-header {
    padding-bottom: 1rem;
}

/* ===== Service Card Hover Image Reveal ===== */
.service-card-modern {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.service-card-modern:hover::before {
    transform: translateY(0);
}

.service-card-modern > * {
    position: relative;
    z-index: 1;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: transparent;
    color: var(--white);
}

.service-card-modern:hover h3,
.service-card-modern:hover p,
.service-card-modern:hover .service-link {
    color: var(--white);
}

.service-card-modern:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-floating {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .top-bar {
        font-size: 0.8125rem;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-social {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }

    .nav-list a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-progress {
        font-size: 0.75rem;
    }

    .progress-label {
        font-size: 0.6875rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calc-result {
        position: static;
    }

    .calculator-wrapper,
    .availability-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .calculator-wrapper,
    .availability-wrapper {
        padding: 1.5rem;
    }

    .calc-result-price {
        font-size: 2.75rem;
    }

    .marquee-track {
        gap: 2.5rem;
        animation-duration: 25s;
    }

    .marquee-item {
        font-size: 0.9375rem;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 1.25rem;
        right: 5rem;
    }

    .availability-grid {
        gap: 0.25rem;
    }

    .av-day {
        font-size: 0.8125rem;
    }

    .truck-banner {
        padding: 2rem 0 3rem;
    }

    .svg-truck {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 1rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }

    .calc-result-price {
        font-size: 2.25rem;
    }
}


/* ===================================
   AWARD-WINNING ROUND 2
   Inspired by Linear, Stripe, Apple,
   Vercel and Awwwards SOTD sites
   =================================== */

/* ===== Custom Scrollbar (Stripe / Vercel style) ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-width: 1px;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-100);
}

/* ===== Auto-hide Sticky Header (Apple style) ===== */
.header {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s ease,
                background-color 0.3s ease;
    will-change: transform;
}

.header.header-hidden {
    transform: translateY(-100%);
}

/* ===== Click Ripple (Material Design) ===== */
.btn,
.calc-toggle,
.calc-checkbox,
.av-day,
.nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple-expand 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary .ripple,
.btn-outline .ripple,
.calc-toggle .ripple {
    background: rgba(255, 255, 255, 0.4);
}

.calc-checkbox .ripple,
.av-day .ripple {
    background: rgba(255, 107, 53, 0.3);
}

@keyframes ripple-expand {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

/* Make sure btn content is above ripple */
.btn > * {
    position: relative;
    z-index: 1;
}

/* ===== Spotlight Effect on Services Grid (Linear/Vercel) ===== */
.services-grid {
    position: relative;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.services-spotlight {
    position: absolute;
    pointer-events: none;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, rgba(255, 107, 53, 0.06) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(20px);
    will-change: left, top;
}

.services-grid:hover .services-spotlight {
    opacity: 1;
}

.services-grid > .service-card {
    position: relative;
    z-index: 1;
}

@media (hover: none) {
    .services-spotlight {
        display: none;
    }
}

/* ===== Bento Grid Section (Apple/Vercel 2024-2025) ===== */
.bento-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.25rem;
}

.bento-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item > * {
    position: relative;
    z-index: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    overflow: hidden;
}

.bento-large::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.25), transparent 60%);
    opacity: 1;
}

.bento-large h3,
.bento-large p {
    color: #ffffff;
}

.bento-large p {
    color: rgba(255, 255, 255, 0.8);
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.bento-large .bento-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    box-shadow: none;
}

.bento-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.bento-large h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bento-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.bento-stat {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.bento-large .bento-stat {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bento-orbs::before,
.bento-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.bento-orbs::before {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background: var(--primary);
}

.bento-orbs::after {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: var(--accent);
    opacity: 0.4;
}

.bento-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.bento-card-rating .stars {
    color: var(--accent);
    display: flex;
    gap: 0.125rem;
}

.bento-card-rating span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.bento-truck-svg {
    width: 100%;
    max-width: 240px;
    margin-top: 1rem;
    align-self: flex-end;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ===== Curved SVG Section Dividers ===== */
.section-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.section-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.section-divider-light path {
    fill: var(--white);
}

.section-divider-section path {
    fill: var(--light);
}

.section-divider-dark path {
    fill: var(--secondary);
}

/* ===== Confetti container ===== */
.confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    will-change: transform, opacity;
}

/* ===== Premium Headline Reveal Animation ===== */
.hero-text h1 {
    overflow: visible;
}

/* Subtle pulse glow on important CTAs */
.btn-primary.pulse-glow {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(255, 107, 53, 0.6); }
}

/* ===== Sparkle Hover Effect for Featured Items ===== */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ===================================
   PROFESSIONAL PHOTO STYLES
   =================================== */

/* ===== Service Card with Photo (top image + content) ===== */
.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    flex-shrink: 0;
}

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

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(30, 58, 95, 0.55) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.service-card .service-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    margin-bottom: 0;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.service-content {
    padding: 1.75rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 0.625rem;
}

.service-content p {
    flex: 1;
}

.service-content .service-link {
    margin-top: 0.5rem;
}

/* When tilt-card class also applies */
.tilt-card .tilt-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tilt-card.service-card .tilt-card-content {
    padding: 0;
}

/* ===== About Image (real photo) ===== */
.about-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image:hover .about-image-wrap img {
    transform: scale(1.05);
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(30, 58, 95, 0.15) 100%);
    pointer-events: none;
}

/* Decorative element at corner of about image */
.about-image-wrap::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    border-radius: 0 var(--radius) 0 0;
    z-index: 1;
}

/* ===== Hero Image Photo ===== */
.hero-image-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.5) 100%);
    pointer-events: none;
}

/* ===== Testimonial Avatar (real photo) ===== */
.testimonial-avatar {
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Page Header with Background Photo ===== */
.page-header.has-bg-photo {
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(20, 40, 71, 0.92) 100%);
}

.page-header.has-bg-photo .container {
    position: relative;
    z-index: 1;
}

/* ===== Bento Photo Card ===== */
.bento-photo {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.bento-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.bento-photo:hover img {
    transform: scale(1.05);
}

.bento-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.bento-photo .bento-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-photo h3,
.bento-photo p {
    color: #ffffff;
}

/* ===== Image Loading Skeleton (premium UX) ===== */
.img-loading {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 37%, var(--gray-100) 63%);
    background-size: 400% 100%;
    animation: skeleton-pulse 1.4s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* ===== Image hover overlay text ===== */
.image-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
}

/* ===== Photo grid (gallery layout) ===== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.photo-grid-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.photo-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-grid-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        aspect-ratio: 16/9;
    }
}

/* ===== Pricing card with photo ===== */
.pricing-card-photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-photo .pricing-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

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

.pricing-card-photo:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-card-photo .pricing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.4) 100%);
    pointer-events: none;
}

.pricing-card-photo .pricing-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card-photo.featured {
    border-color: var(--primary);
}

.pricing-card-photo.featured .pricing-image::after {
    background: linear-gradient(180deg, transparent 40%, rgba(255, 107, 53, 0.5) 100%);
}

/* ===== Two-column section with image ===== */
.image-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.image-text-row.reverse {
    direction: rtl;
}

.image-text-row.reverse > * {
    direction: ltr;
}

.image-text-row .image-side {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-text-row .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-text-row .image-side:hover img {
    transform: scale(1.04);
}

.image-text-row .text-side h2 {
    margin-bottom: 1.25rem;
}

.image-text-row .text-side p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .image-text-row,
    .image-text-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 3rem 0;
    }
}

/* ===== Founder quote / portrait card ===== */
.founder-section {
    background: var(--light);
    padding: 5rem 0;
}

/* Sticker on founder photo (Sinds 2009) */
.founder-photo {
    position: relative;
}

.founder-photo .brand-sticker {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
    width: 96px;
    height: 96px;
}

.founder-photo .brand-sticker strong {
    font-size: 1.25rem;
}

.founder-photo .brand-sticker span {
    font-size: 0.625rem;
}

/* Sticker on about-image (5.000+ moves) */
.about-image {
    position: relative;
}

.about-image .brand-sticker {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 100px;
    height: 100px;
}

.about-image .brand-sticker strong {
    font-size: 1.25rem;
}

.about-image .brand-sticker span {
    font-size: 0.625rem;
}

/* Make about-image-wrap allow visible sticker */
.about-image .brand-sticker {
    /* Sticker is sibling of about-image-wrap, sits above it */
}

.founder-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-photo {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    /* No overflow:hidden — sticker can extend beyond bounds */
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.founder-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-name {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.125rem;
}

.founder-title {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    .founder-photo {
        max-width: 240px;
        margin: 0 auto;
    }
    .founder-quote {
        padding-left: 0;
        padding-top: 2rem;
    }
    .founder-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
}

/* ===== Contact intro photo ===== */
.contact-intro-photo {
    aspect-ratio: 16/7;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.contact-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-intro-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), transparent 50%);
}

/* ===== Quote consultation hero ===== */
.quote-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.quote-intro-photo {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.quote-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quote-intro ul {
    list-style: none;
    padding: 0;
}

.quote-intro ul li {
    padding: 0.625rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote-intro ul li i {
    color: var(--primary);
    font-size: 1.125rem;
}

@media (max-width: 900px) {
    .quote-intro {
        grid-template-columns: 1fr;
    }
}

/* ===== Process step with photo ===== */
.process-step-photo {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
    text-align: left;
}

.process-step-photo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.process-step-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.process-step-photo:hover .process-step-image img {
    transform: scale(1.06);
}

.process-step-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(30, 58, 95, 0.5) 100%);
    pointer-events: none;
}

.process-step-photo .process-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    margin: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.process-step-content {
    padding: 1.5rem;
}

.process-step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.process-step-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ===== Hourly rate card with photo ===== */
.rate-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: stretch;
}

.rate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.rate-card-image {
    width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.rate-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.rate-card-content {
    padding: 1.5rem;
    flex: 1;
}

.rate-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.rate-card-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.625rem;
}

.rate-card-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.rate-card-price small {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

@media (max-width: 600px) {
    .rate-card {
        flex-direction: column;
    }
    .rate-card-image {
        width: 100%;
        aspect-ratio: 16/9;
    }
}

/* ===== FAQ with side photo ===== */
.faq-with-photo {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-side-image {
    position: sticky;
    top: 100px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.faq-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .faq-with-photo {
        grid-template-columns: 1fr;
    }
    .faq-side-image {
        position: relative;
        top: 0;
        aspect-ratio: 16/9;
        max-height: 320px;
    }
}

/* ===================================
   CONVERSION-FOCUSED UI COMPONENTS
   Inspired by Stripe, Calendly, Booking
   =================================== */

/* ===== Sticky Promo Bar (top of all pages) ===== */
.promo-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: promo-shimmer 8s linear infinite;
    color: #ffffff;
    padding: 0.625rem 0;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

@keyframes promo-shimmer {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

.promo-bar a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    margin-left: 0.5rem;
}

.promo-bar a:hover {
    color: var(--accent);
}

.promo-bar i {
    margin-right: 0.5rem;
    animation: promo-bounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.promo-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.2s ease;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ===== Live Activity Notifications (FOMO toasts) ===== */
.live-activity {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.875rem 1.125rem 0.875rem 1rem;
    box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    max-width: 340px;
    z-index: 997;
    transform: translateX(-120%) translateY(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
    cursor: pointer;
}

.live-activity.show {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

.live-activity-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.live-activity-content {
    flex: 1;
    min-width: 0;
}

.live-activity-text {
    color: var(--gray-800);
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0;
}

.live-activity-text strong {
    color: var(--secondary);
}

.live-activity-time {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.live-activity-time::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .live-activity {
        bottom: 6rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* ===== Social Proof Section (replaces trusted-by) ===== */
.social-proof {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06), transparent 70%);
    pointer-events: none;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 39, 0.05), transparent 70%);
    pointer-events: none;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Left: Rating block ===== */
.proof-rating-block {
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.proof-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.proof-stars {
    color: var(--accent);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.proof-rating-number {
    font-family: 'Fraunces', sans-serif;
    font-size: clamp(4rem, 9vw, 6rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.04em;
    font-variation-settings: 'opsz' 96;
    margin-bottom: 0.5rem;
}

.proof-rating-number span {
    font-size: 0.4em;
    color: var(--gray-400);
    font-weight: 600;
}

.proof-rating-label {
    font-family: 'Fraunces', sans-serif;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.proof-rating-source {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.proof-rating-source strong {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== Right: Avatars + recent reviews ===== */
.proof-customers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-avatar-stack {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: -16px;
    transition: transform 0.3s ease;
    background: var(--gray-100);
    position: relative;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 5;
}

.proof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proof-avatar.more {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8125rem;
    font-family: 'Fraunces', sans-serif;
    letter-spacing: -0.02em;
}

.proof-customers-text {
    color: var(--gray-700);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
}

.proof-customers-text strong {
    color: var(--secondary);
    font-weight: 700;
}

.proof-recent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.proof-recent-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
}

.proof-recent-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-200);
}

.proof-recent-stars {
    color: var(--accent);
    font-size: 0.75rem;
    display: flex;
    gap: 1px;
    margin-bottom: 0.625rem;
}

.proof-recent-item p {
    color: var(--gray-800);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
    font-weight: 500;
}

.proof-recent-item span {
    color: var(--gray-500);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.proof-recent-item span strong {
    color: var(--gray-700);
    font-weight: 600;
}

@media (max-width: 900px) {
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .proof-recent {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .proof-avatar {
        width: 48px;
        height: 48px;
        margin-left: -14px;
    }
}

/* ===== Trust Badges Strip (below hero) ===== */
.trust-strip {
    background: var(--light);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
}

.trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.05));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.trust-item-text strong {
    display: block;
    color: var(--secondary);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.trust-item-text span {
    color: var(--gray-600);
    font-size: 0.8125rem;
    line-height: 1.3;
}

/* ===== Live Indicator (pulsing dot) ===== */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-green 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

/* ===== Limited Slots Badge ===== */
.limited-slots {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 107, 53, 0.25);
    margin-bottom: 0.75rem;
}

.limited-slots i {
    margin-right: 0.25rem;
    animation: promo-bounce 2s ease-in-out infinite;
    display: inline-block;
}

/* ===== Premium CTA Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-size: 200% 100%;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Stronger focus rings for accessibility */
.btn:focus-visible,
.nav-cta:focus-visible,
.calc-toggle:focus-visible,
.calc-checkbox:focus-visible,
.av-day:focus-visible,
.av-nav-btn:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline-offset: 2px;
}

/* ===== Stats Counter Pulse on Reveal ===== */
.stat-counter.pulsing {
    animation: stat-pulse 0.8s ease-out;
}

@keyframes stat-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--primary); }
    100% { transform: scale(1); }
}

/* ===== Save indicator (form auto-save feel) ===== */
.save-indicator {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.save-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Improved Hover Effects on Cards ===== */
.service-card,
.pricing-card,
.bento-item,
.process-step,
.testimonial-card {
    will-change: transform;
}

/* ===== Subtle Brand Pattern Backgrounds ===== */
.bg-pattern-dots {
    background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-pattern-grid {
    background-image:
        linear-gradient(var(--gray-100) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ===== Success/Trust micro icons ===== */
.micro-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 600;
}

.micro-trust i {
    font-size: 0.75rem;
}

/* ===== Header offset compensation when promo bar is visible ===== */
body.has-promo .header {
    /* Make sure sticky header still works */
}

/* ===== Hero with stronger visual punch ===== */
.hero-text h1 {
    line-height: 1.05;
    letter-spacing: -0.025em;
}

/* ===== Pricing card transform when featured ===== */
.pricing-card.featured {
    position: relative;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ===== Improved availability calendar with live feel ===== */
.availability-wrapper {
    position: relative;
}

.availability-live-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

@media (max-width: 600px) {
    .availability-live-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 1rem;
    }
}

/* ===================================
   PREMIUM HERO REFINEMENT
   =================================== */

/* Eyebrow above hero h1 */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse-green 2s ease-in-out infinite;
}

/* Hero h1 — premium editorial serif */
.hero-refined h1 {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    letter-spacing: -0.035em;
    font-weight: 600;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-refined h1 span {
    background: linear-gradient(90deg, #FF6B35, #FFB627, #FF6B35);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 5s linear infinite;
    font-style: italic;
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'slnt' -8;
    font-weight: 700;
}

.hero-refined .hero-text > p {
    font-size: 1.1875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-trust-line {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-line i {
    color: var(--success);
}

/* Hero quick stats (3 mini-stats below CTA) */
.hero-quick-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
    display: block;
    font-family: 'Fraunces', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 72;
}

.hero-stat strong small {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* Hero photo card - replaces glass-card */
.hero-photo-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 2;
    transform: rotate(-1deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-photo-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-photo-card > img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-photo-card .hero-photo-overlay {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20, 40, 71, 0.7) 100%);
    pointer-events: none;
}

.hero-photo-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gray-800);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-photo-stars {
    color: var(--accent);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    gap: 2px;
}

.hero-photo-badge strong {
    display: block;
    color: var(--secondary);
    font-family: 'Fraunces', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
}

.hero-photo-badge span {
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Updated floating cards - cleaner */
.hero-refined .hero-floating {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.125rem;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-800);
}

.hero-refined .hero-floating-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-refined .hero-floating strong {
    display: block;
    font-family: 'Fraunces', sans-serif;
    font-size: 1.0625rem;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero-refined .hero-floating small {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.125rem;
    display: block;
}

.hero-refined .hero-floating-1 {
    top: 5%;
    left: -10%;
}

.hero-refined .hero-floating-2 {
    bottom: 12%;
    right: -8%;
}

@media (max-width: 1024px) {
    .hero-quick-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .hero-photo-card {
        max-width: 480px;
        margin: 0 auto;
        transform: rotate(0);
    }
}

@media (max-width: 768px) {
    .hero-quick-stats {
        gap: 1rem;
    }
    .hero-stat strong {
        font-size: 1.5rem;
    }
}

/* ===================================
   COMPARISON TABLE (Bloemendaal vs Others)
   =================================== */
.comparison-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.04), transparent 70%);
    pointer-events: none;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover:not(.comparison-header) {
    background: var(--gray-50);
}

.comparison-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
}

.comparison-cell {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-right: 1px solid var(--gray-100);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell {
    color: #ffffff;
    font-family: 'Fraunces', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
    border-right-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
}

.comparison-cell.us-column {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), transparent);
    justify-content: center;
    text-align: center;
    color: var(--gray-800);
    font-weight: 600;
}

.comparison-header .comparison-cell.us-column {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    position: relative;
}

.comparison-header .comparison-cell.us-column::after {
    content: '⭐';
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--accent);
    color: var(--secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 182, 39, 0.4);
}

.comparison-cell.others-column {
    justify-content: center;
    text-align: center;
    color: var(--gray-500);
}

.comparison-yes {
    color: var(--success);
    font-size: 1.25rem;
}

.comparison-no {
    color: var(--gray-400);
    font-size: 1.25rem;
}

.comparison-value {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .comparison-cell {
        padding: 0.875rem;
        font-size: 0.8125rem;
    }
    .comparison-header .comparison-cell {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ===== Refined service cards (premium hover) ===== */
.service-card {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 107, 53, 0.1);
}

.service-card:hover .service-image::after {
    background: linear-gradient(180deg, transparent 30%, rgba(30, 58, 95, 0.7) 100%);
}

/* ===== Section Header refinements ===== */
.section-header h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.section-header h2::after {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
}

/* Stronger logo */
.logo-text strong {
    font-family: 'Fraunces', sans-serif;
    letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 24;
}

/* ===================================
   LANGUAGE SWITCHER — Premium Dropdown
   Opens directly below the button
   =================================== */

.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-current {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    line-height: 1;
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.lang-current i.fa-globe {
    font-size: 0.875rem;
    opacity: 0.85;
}

.lang-current i.fa-chevron-down {
    font-size: 0.625rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.lang-switcher.open .lang-current i.fa-chevron-down {
    transform: rotate(180deg);
}

.lang-flag {
    font-size: 1.125rem;
    line-height: 1;
    display: inline-block;
}

/* ===== Dropdown Panel ===== */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.625rem);
    right: 0;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    width: 320px;
    max-height: 460px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Small arrow pointing up to button */
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 6px -3px rgba(0, 0, 0, 0.08);
}

/* ===== Search Input ===== */
.lang-search-wrap {
    padding: 0.875rem 1rem 0.625rem;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    background: #ffffff;
    z-index: 1;
}

.lang-search-wrap i {
    position: absolute;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.75rem;
    pointer-events: none;
}

.lang-search {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 1.875rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    font-family: inherit;
    outline: none;
}

.lang-search:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

/* ===== Language list ===== */
.lang-grid {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

/* Custom scrollbar */
.lang-grid::-webkit-scrollbar {
    width: 6px;
}

.lang-grid::-webkit-scrollbar-track {
    background: transparent;
}

.lang-grid::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 3px;
}

.lang-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gray-300);
}

.lang-card {
    background: transparent;
    border: none;
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    font-family: inherit;
    width: 100%;
    position: relative;
}

.lang-card:hover {
    background: var(--gray-50);
}

.lang-card.active {
    background: rgba(255, 107, 53, 0.08);
}

.lang-card.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.lang-card-flag {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1;
    flex-shrink: 0;
    width: 1.875rem;
    text-align: center;
    letter-spacing: 0;
}

.lang-card.active .lang-card-flag {
    color: var(--primary);
    font-weight: 700;
}

.lang-card-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.lang-card-text strong {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
}

.lang-card-text span {
    color: var(--gray-500);
    font-size: 0.6875rem;
    margin-top: 0.0625rem;
    line-height: 1.2;
}

.lang-card.active .lang-card-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===== No results state ===== */
.lang-no-results {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-500);
}

.lang-no-results i {
    font-size: 1.75rem;
    color: var(--gray-300);
    margin-bottom: 0.625rem;
    display: block;
}

.lang-no-results strong {
    display: block;
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

/* Hide Google Translate default UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
.skiptranslate iframe,
#goog-gt-tt,
.goog-te-spinner-pos,
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
#google_translate_element {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

html[translated-ltr] body,
html[translated-rtl] body {
    top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

/* ===== Mobile responsive ===== */
@media (max-width: 768px) {
    .lang-current {
        padding: 0.4rem 0.625rem;
    }
    .lang-dropdown {
        width: 280px;
        right: -1rem;
    }
}

@media (max-width: 480px) {
    .lang-dropdown {
        position: fixed;
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-height: 70vh;
    }
    .lang-dropdown::before {
        display: none;
    }
}

/* Hide Google Translate default UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
.skiptranslate iframe,
#goog-gt-tt,
.goog-te-spinner-pos,
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
#google_translate_element {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* Hide highlight on translated text */
.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

/* Don't shift layout when translation loaded */
html[translated-ltr] body,
html[translated-rtl] body {
    top: 0 !important;
}

/* Hide Google's annoying tooltip */
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

@media (max-width: 768px) {
    .lang-current span:not(.lang-flag) {
        display: none;
    }
    .lang-current {
        padding: 0.4rem 0.6rem;
    }
    .lang-dropdown {
        right: -1rem;
    }
}

/* ===================================
   UNIQUE BRAND DESIGN ELEMENTS
   Inspired by Awwwards SOTD sites
   =================================== */

/* ===== Refined Brand Marquee — Elegant scrolling strip ===== */
.brand-marquee {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-marquee::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(255, 107, 53, 0.15), transparent 50%),
        radial-gradient(ellipse at 85% 50%, rgba(201, 169, 97, 0.08), transparent 50%);
    pointer-events: none;
}

/* Edge fade-out for smoother visual flow */
.brand-marquee::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--secondary) 0%, transparent 8%, transparent 92%, var(--secondary) 100%);
    pointer-events: none;
    z-index: 2;
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: brand-scroll 38s linear infinite;
    width: max-content;
    position: relative;
    z-index: 1;
}

.brand-marquee-track:hover {
    animation-play-state: paused;
}

.brand-marquee-item {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    white-space: nowrap;
    color: #ffffff;
    font-variation-settings: 'opsz' 72, 'SOFT' 60;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.brand-marquee-item i {
    color: var(--champagne, #C9A961);
    font-size: 0.75em;
    opacity: 0.9;
}

.brand-marquee-item.italic {
    font-style: italic;
    font-variation-settings: 'opsz' 72, 'SOFT' 100, 'slnt' -8;
    color: rgba(255, 255, 255, 0.85);
}

.brand-marquee-item.accent {
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    font-variation-settings: 'opsz' 72, 'SOFT' 100, 'slnt' -8;
}

.brand-marquee-item.gold {
    color: var(--champagne, #C9A961);
    font-weight: 600;
}

.brand-marquee-bullet {
    color: var(--primary);
    font-size: 0.5rem;
    align-self: center;
    flex-shrink: 0;
    opacity: 0.7;
}

@keyframes brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Outlined Display Text (mixed with filled) ===== */
.text-outlined {
    -webkit-text-stroke: 2px var(--secondary);
    color: transparent;
    background: none;
    -webkit-background-clip: initial;
}

.hero-refined h1 .text-outlined {
    -webkit-text-stroke: 2.5px #ffffff;
    color: transparent;
}

/* ===== Highlighter Effect on Keywords ===== */
.highlight-marker {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-marker::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0;
    height: 0.55em;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 182, 39, 0.55) 30%, rgba(255, 182, 39, 0.55) 90%, transparent 100%);
    transform: skewX(-3deg) rotate(-0.5deg);
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-marker:hover::before {
    height: 95%;
}

/* Underline marker variant */
.highlight-underline {
    position: relative;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 8px;
    background: var(--primary);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-underline.visible::after,
.section-header:hover .highlight-underline::after {
    transform: scaleX(1);
}

/* ===== Sticker / Stamp Badges ===== */
.brand-sticker {
    position: absolute;
    background: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', sans-serif;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.3);
    transform: rotate(-12deg);
    z-index: 5;
    pointer-events: none;
    animation: sticker-wobble 6s ease-in-out infinite;
}

.brand-sticker::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1.5px dashed var(--secondary);
    border-radius: 50%;
    opacity: 0.4;
}

.brand-sticker strong {
    font-size: 1.875rem;
    color: var(--secondary);
    font-variation-settings: 'opsz' 48;
    line-height: 0.9;
}

.brand-sticker span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    opacity: 0.85;
    font-weight: 700;
}

@keyframes sticker-wobble {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-6px); }
}

.brand-sticker.primary {
    background: var(--primary);
    color: #ffffff;
}

.brand-sticker.primary strong,
.brand-sticker.primary span {
    color: #ffffff;
}

.brand-sticker.primary::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.brand-sticker.dark {
    background: var(--secondary);
    color: #ffffff;
}

.brand-sticker.dark strong,
.brand-sticker.dark span {
    color: #ffffff;
}

.brand-sticker.dark::before {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===== Vertical brand label (rotated text on side of sections) ===== */
.vertical-brand {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: 'Fraunces', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 1280px) {
    .vertical-brand {
        display: none;
    }
}

/* ===== Floating decorative dots ===== */
.deco-dots {
    position: absolute;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--gray-300) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.5;
}

.deco-dots-tl {
    top: 2rem;
    left: 2rem;
    width: 120px;
    height: 120px;
}

.deco-dots-br {
    bottom: 2rem;
    right: 2rem;
    width: 140px;
    height: 140px;
}

.deco-dots-orange {
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    opacity: 0.18;
}

/* ===== Squiggle / Arrow decorative SVG arrows ===== */
.deco-arrow {
    position: absolute;
    pointer-events: none;
    width: 90px;
    height: auto;
    opacity: 0.6;
    color: var(--primary);
}

/* ===== Magic Underline on links ===== */
.magic-link {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.magic-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.magic-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== Brand monogram (B/V mark) ===== */
.brand-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-family: 'Fraunces', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.05em;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    transform: rotate(-3deg);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-monogram:hover {
    transform: rotate(0deg) scale(1.05);
}

/* ===== Section with bold colored block (alt-bg) ===== */
.section-color-block {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-color-block::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.18), transparent 60%);
    pointer-events: none;
}

.section-color-block h2,
.section-color-block h3 {
    color: #ffffff;
}

.section-color-block p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Number with massive display style ===== */
.huge-number {
    font-family: 'Fraunces', sans-serif;
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variation-settings: 'opsz' 96;
}

/* ===== Marquee bullet point styled ===== */
.marquee-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===================================
   BLOEMENDAAL REGIONAL IDENTITY
   Premium local character — villa's,
   kust, bos van Bloemendaal & omgeving
   =================================== */

/* Champagne gold accent (premium feel) */
:root {
    --champagne: #C9A961;
    --champagne-light: #E5D4A1;
    --forest: #2D5942;
    --sand: #E8DCC4;
}

/* ===== Specialist in Bloemendaal — three pillars ===== */
.bloemendaal-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.bloemendaal-section::before {
    content: 'BLOEMENDAAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fraunces', sans-serif;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 800;
    color: var(--gray-50);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.05em;
    line-height: 1;
    opacity: 0.7;
    white-space: nowrap;
    font-variation-settings: 'opsz' 96;
}

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

.bloemendaal-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bloemendaal-pillar {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease;
}

.bloemendaal-pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.bloemendaal-pillar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.bloemendaal-pillar:hover img {
    transform: scale(1.08);
}

.bloemendaal-pillar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(20, 40, 71, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.bloemendaal-pillar-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    color: #ffffff;
    z-index: 2;
}

.bloemendaal-pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--champagne-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bloemendaal-pillar h3 {
    color: #ffffff;
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 48;
}

.bloemendaal-pillar p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 900px) {
    .bloemendaal-pillars {
        grid-template-columns: 1fr;
    }
    .bloemendaal-pillar {
        aspect-ratio: 16/10;
    }
}

/* ===== Service Area Map Section ===== */
.service-area-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-grid h2,
.service-area-grid p {
    color: #ffffff;
}

.service-area-grid p {
    color: rgba(255, 255, 255, 0.8);
}

.service-villages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 2rem;
}

.service-village {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 0.875rem 1.125rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: var(--transition);
    text-decoration: none;
}

.service-village:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--champagne);
    color: var(--champagne-light);
    transform: translateX(4px);
}

.service-village i {
    color: var(--champagne);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-area-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-area-photo:hover {
    transform: rotate(0deg);
}

.service-area-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent 50%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-area-photo {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ===== Premium Villa Verhuizing Section ===== */
.villa-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    /* No overflow:hidden so brand-sticker can extend beyond photo bounds */
}

.villa-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.villa-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
    /* No overflow:hidden — sticker must extend beyond bounds */
}

.villa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.villa-photo .brand-sticker {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 110px;
    height: 110px;
}

.villa-photo .brand-sticker strong {
    font-size: 1.5rem;
}

.villa-photo .brand-sticker span {
    font-size: 0.625rem;
}

@media (max-width: 600px) {
    .villa-photo .brand-sticker {
        top: 1rem;
        right: 1rem;
        width: 88px;
        height: 88px;
    }

    .villa-photo .brand-sticker strong {
        font-size: 1.125rem;
    }
}

.villa-content .premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-light) 100%);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.villa-content h2 {
    margin-bottom: 1.25rem;
}

.villa-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.villa-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.villa-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-light) 100%);
    color: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.25);
}

.villa-feature h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
    font-size: 1.0625rem;
}

.villa-feature p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

@media (max-width: 900px) {
    .villa-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ===== Premium gold/champagne accent ===== */
.btn-premium {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    border: 2px solid var(--champagne);
    position: relative;
    overflow: hidden;
}

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

.btn-premium:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--champagne);
}

.btn-premium:hover::before {
    left: 100%;
}

/* ===================================
   FINAL POLISH PASS
   Refined shadows, better rhythm,
   cleaner details throughout
   =================================== */

/* ===== Refined shadow system (multi-layer for depth) ===== */
:root {
    --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04),
                   0 4px 12px -2px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.05),
                   0 8px 24px -8px rgba(15, 23, 42, 0.12);
    --shadow-lift: 0 2px 4px rgba(15, 23, 42, 0.06),
                   0 16px 40px -12px rgba(15, 23, 42, 0.18);
    --shadow-elevated: 0 4px 8px rgba(15, 23, 42, 0.08),
                       0 24px 60px -16px rgba(15, 23, 42, 0.25);
    --shadow-modal: 0 8px 16px rgba(15, 23, 42, 0.1),
                    0 32px 80px -20px rgba(15, 23, 42, 0.4);
}

/* ===== Refined Service Cards ===== */
.service-card {
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(255, 107, 53, 0.15);
}

/* Refined service-icon positioning */
.service-card .service-icon {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

/* Cleaner image overlay */
.service-image::after {
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
}

.service-content {
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--secondary);
}

.service-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ===== Refined Highlight Marker (cleaner gold underline) ===== */
.highlight-marker {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-marker::before {
    content: '';
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.05em;
    height: 0.35em;
    background: linear-gradient(180deg, transparent 0%, var(--champagne, #C9A961) 50%, var(--champagne, #C9A961) 100%);
    opacity: 0.45;
    transform: skewX(-2deg);
    border-radius: 2px;
    z-index: -1;
    transition: opacity 0.4s ease, height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-marker:hover::before {
    opacity: 0.7;
    height: 0.55em;
}

/* ===== Refined Bloemendaal section background text ===== */
.bloemendaal-section::before {
    color: rgba(15, 23, 42, 0.025);
    font-weight: 800;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
    letter-spacing: -0.06em;
}

/* ===== Refined Trust Strip (more elegant) ===== */
.trust-strip {
    background: var(--white);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 2.5rem 0;
}

.trust-item {
    padding: 1rem;
    border-radius: 14px;
    transition: background 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 107, 53, 0.03);
}

.trust-item-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 182, 39, 0.06));
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.08);
}

/* ===== Refined Bento Grid ===== */
.bento-item {
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(255, 107, 53, 0.2);
}

.bento-large {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1),
                0 24px 60px -12px rgba(15, 23, 42, 0.25);
}

.bento-icon {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* ===== Refined Pricing Cards ===== */
.pricing-card {
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(255, 107, 53, 0.2);
}

.pricing-card.featured {
    transform: scale(1.02);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1),
                0 24px 60px -12px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

/* Stronger pricing badge */
.pricing-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ===== Refined Hero Photo Card ===== */
.hero-photo-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                0 32px 80px -20px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Refined hero photo badge */
.hero-photo-badge {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 14px;
}

/* ===== Refined Section Headers ===== */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.section-header h2::after {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--champagne, #C9A961));
    border-radius: 999px;
    bottom: -8px;
}

.section-tag {
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.15);
    margin-bottom: 1.5rem;
}

/* ===== Refined CTA Buttons ===== */
.btn {
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.btn-primary {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25),
                0 1px 3px rgba(255, 107, 53, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4),
                0 2px 6px rgba(255, 107, 53, 0.2);
}

.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

/* ===== Cleaner focus states ===== */
:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.4);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
.btn:focus-visible,
a.btn:focus-visible {
    outline-offset: 4px;
}

/* ===== Refined Process Steps ===== */
.process-step-photo {
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease;
}

.process-step-photo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.process-step-photo .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4),
                0 0 0 4px rgba(255, 255, 255, 0.9);
}

/* ===== Refined Testimonial Cards ===== */
.testimonial-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ===== Refined Comparison Table ===== */
.comparison-table {
    border-radius: 20px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/* ===== Refined Bloemendaal pillars ===== */
.bloemendaal-pillar {
    border-radius: 20px;
    box-shadow: var(--shadow-lift);
}

.bloemendaal-pillar:hover {
    box-shadow: var(--shadow-modal);
}

/* ===== Refined Service Area villages ===== */
.service-village {
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== Refined Calculator + Availability wrappers ===== */
.calculator-wrapper,
.availability-wrapper {
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06),
                0 32px 80px -20px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

/* ===== Refined Hero CTA ===== */
.hero-trust-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    margin-top: 0.875rem;
}

.hero-trust-line i {
    font-size: 0.75rem;
}

/* ===== Smoother section transitions ===== */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ===== Premium logo styling ===== */
.logo-icon {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ===== Refined nav links ===== */
.nav-list a {
    border-radius: 8px;
    font-weight: 500;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.nav-list a.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

/* ===== Card with founder photo refined ===== */
.founder-card {
    border-radius: 24px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.founder-photo {
    border-radius: 18px;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.2);
}

/* ===== Refined Sticker ===== */
.brand-sticker {
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.35),
                0 0 0 4px rgba(255, 255, 255, 0.15);
}

/* ===== Smoother loading skeleton ===== */
.img-loading {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.04) 25%, rgba(15, 23, 42, 0.08) 37%, rgba(15, 23, 42, 0.04) 63%);
    background-size: 400% 100%;
    animation: skeleton-pulse 1.6s ease-in-out infinite;
}

/* ===================================
   MICRO-ANIMATIONS
   Subtle motion across all pages
   =================================== */

/* Smooth scroll for whole page */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Stagger animation delays for [data-animate] siblings ===== */
[data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-animate]:nth-child(2) { transition-delay: 80ms; }
[data-animate]:nth-child(3) { transition-delay: 160ms; }
[data-animate]:nth-child(4) { transition-delay: 240ms; }
[data-animate]:nth-child(5) { transition-delay: 320ms; }
[data-animate]:nth-child(6) { transition-delay: 400ms; }
[data-animate]:nth-child(7) { transition-delay: 480ms; }
[data-animate]:nth-child(8) { transition-delay: 560ms; }
[data-animate]:nth-child(9) { transition-delay: 640ms; }

/* Improved data-animate transitions with cleaner easing */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* ===== Letter-by-letter reveal for h1 ===== */
.split-text {
    display: inline-block;
    overflow: hidden;
}

.split-text .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.split-text .word .char,
.split-text .char {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: char-rise 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes char-rise {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== Floating decorative blobs (background) ===== */
.float-deco {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: float-slow 18s ease-in-out infinite;
    z-index: 0;
}

.float-deco-orange {
    width: 280px;
    height: 280px;
    background: rgba(255, 107, 53, 0.18);
}

.float-deco-gold {
    width: 200px;
    height: 200px;
    background: rgba(201, 169, 97, 0.18);
    animation-delay: -6s;
    animation-duration: 22s;
}

.float-deco-blue {
    width: 240px;
    height: 240px;
    background: rgba(30, 58, 95, 0.1);
    animation-delay: -12s;
    animation-duration: 24s;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.08);
    }
    66% {
        transform: translate(-20px, 25px) scale(0.95);
    }
}

/* ===== Refined nav link underline (sliding) ===== */
.nav-list a {
    position: relative;
    overflow: hidden;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.4rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== Subtle parallax on hero photo ===== */
.hero-photo-card {
    will-change: transform;
}

@media (hover: hover) and (min-width: 1024px) {
    .hero-image:hover .hero-photo-card {
        transform: rotate(-0.5deg) translateY(-6px);
    }
}

/* ===== Gentle pulse on key CTAs ===== */
@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    }
    50% {
        box-shadow: 0 4px 24px rgba(255, 107, 53, 0.5);
    }
}

.pulse-glow {
    animation: gentle-pulse 2.8s ease-in-out infinite;
}

/* ===== Icon hover animations ===== */
.usp-icon,
.about-feature i,
.contact-detail i,
.process-number {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.usp-item:hover .usp-icon {
    transform: rotate(-8deg) scale(1.08);
}

.about-feature:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.contact-detail:hover i {
    transform: rotate(8deg) scale(1.1);
}

.process-step-photo:hover .process-number {
    transform: rotate(-360deg) scale(1.05);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Bento icon bounce on hover */
.bento-item:hover .bento-icon {
    animation: icon-bounce 0.7s cubic-bezier(0.36, 0, 0.66, -0.56);
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-8px) scale(1.05); }
    70% { transform: translateY(2px) scale(0.98); }
}

/* Service icon spins subtly on hover */
.service-card:hover .service-icon i {
    animation: icon-spin 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes icon-spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* Trust item icon scale */
.trust-item:hover .trust-item-icon {
    animation: pop 0.4s cubic-bezier(0.36, 0, 0.66, -0.56);
}

@keyframes pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* ===== Animated "Live" pill ripple ===== */
.live-indicator::before,
.proof-rating-pill::before {
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* ===== Counter "tick" animation when number changes ===== */
.stat-counter {
    display: inline-block;
}

/* ===== Hover lift on legal pages content ===== */
.legal-content {
    transition: box-shadow 0.4s ease;
}

.legal-content:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06),
                0 32px 80px -20px rgba(15, 23, 42, 0.18);
}

/* ===== Page-header subtle animations ===== */
.page-header h1 {
    animation: hero-fade-up 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.page-header p {
    animation: hero-fade-up 1s cubic-bezier(0.23, 1, 0.32, 1) 0.15s both;
}

.page-header .breadcrumb {
    animation: hero-fade-up 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Hero text fade-up on load (homepage) ===== */
.hero-text > * {
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-text .hero-eyebrow { animation-delay: 0s; }
.hero-text h1            { animation-delay: 0.15s; }
.hero-text > p           { animation-delay: 0.3s; }
.hero-text .hero-cta     { animation-delay: 0.45s; }
.hero-text .hero-trust-line { animation-delay: 0.55s; }
.hero-text .hero-quick-stats { animation-delay: 0.65s; }

/* Hero image fade-in from right */
.hero-image {
    opacity: 0;
    animation: hero-fade-right 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

@keyframes hero-fade-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Floating sticker badge gentle wobble ===== */
.brand-sticker {
    animation: sticker-wobble 6s ease-in-out infinite;
}

/* ===== Service-village hover slide ===== */
.service-village {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease;
}

/* ===== Form input focus ring grows softly ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.lang-search:focus {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* ===== Smooth section divider waves ===== */
.section-divider svg path {
    transition: fill 0.4s ease;
}

/* ===== FAQ open/close smoother ===== */
.faq-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item.open {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 24px -8px rgba(255, 107, 53, 0.15);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ===== Marquee item subtle hover ===== */
.brand-marquee-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-marquee-item:hover {
    transform: scale(1.05);
}

/* ===== Pricing card hover - tilt slightly ===== */
@media (hover: hover) {
    .pricing-card:not(.featured):hover {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

/* ===== Bento large hero card subtle float ===== */
.bento-large .bento-truck-svg {
    animation: gentle-float 5s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Service area photo subtle rotate on hover ===== */
.service-area-photo {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-area-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ===================================
   PREMIUM PAGE-HEADERS
   Champagne accent + highlight markers
   for all inner pages
   =================================== */

/* Premium tag (champagne/gold style) — for page-headers + featured sections */
.tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.4), rgba(229, 212, 161, 0.3));
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    border: 1.5px solid rgba(229, 212, 161, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tag-premium i {
    font-size: 0.875rem;
    color: var(--champagne-light, #E5D4A1);
}

/* Refined page-header with premium feel */
.page-header.has-bg-photo {
    padding: 6rem 0 5rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.page-header p {
    font-size: 1.125rem;
    line-height: 1.55;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Page-header floating decorations */
.page-header-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.page-header-deco.gold-blob {
    top: 20%;
    right: 8%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
    filter: blur(20px);
    animation: float-slow 14s ease-in-out infinite;
}

.page-header-deco.orange-blob {
    bottom: -10%;
    left: 5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    filter: blur(20px);
    animation: float-slow 18s ease-in-out infinite;
    animation-delay: -6s;
}

/* ===== Pillar-style featured cards (Bloemendaal pillar variant) ===== */
.featured-pillars {
    padding: 4rem 0 1rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.featured-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .featured-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlight marker variant: champagne color (more elegant) */
.highlight-marker {
    z-index: 1;
}

/* ===== Refined Page Header Tag (gold variant for inner pages) ===== */
.page-header .tag-premium {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.5), rgba(229, 212, 161, 0.35));
    border-color: rgba(229, 212, 161, 0.7);
    color: #ffffff;
}

/* Make highlight-marker MUCH more visible on page-headers (dark bg) */
.page-header .highlight-marker {
    color: var(--champagne-light, #E5D4A1);
    font-style: italic;
    font-weight: 700;
}

.page-header .highlight-marker::before {
    background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.45) 60%, rgba(201, 169, 97, 0.45) 100%);
    opacity: 1;
    height: 0.45em;
}

/* Make page-header bg overlay slightly lighter so deco blobs show through */
.page-header.has-bg-photo .page-header-bg::after {
    background: linear-gradient(135deg, rgba(20, 40, 71, 0.75) 0%, rgba(15, 30, 56, 0.85) 100%);
}

/* Strengthen the deco blobs so they're VISIBLE */
.page-header-deco {
    z-index: 1;
}

.page-header-deco.gold-blob {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.45), transparent 70%);
    filter: blur(40px);
    opacity: 0.9;
}

.page-header-deco.orange-blob {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent 70%);
    filter: blur(40px);
    opacity: 0.85;
}

/* ===== Make highlight-marker VISIBLE in section h2s (light backgrounds) ===== */
.highlight-marker::before {
    background: linear-gradient(180deg, rgba(255, 182, 39, 0.3) 0%, rgba(201, 169, 97, 0.5) 60%, rgba(201, 169, 97, 0.55) 100%);
    opacity: 0.85;
    height: 0.4em;
    border-radius: 3px;
}

/* Make h1 in page-header more dramatic */
.page-header h1 {
    font-size: clamp(2.75rem, 6vw, 5rem) !important;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== Refined section-tag with gold variant ===== */
.section-tag.gold {
    background: rgba(201, 169, 97, 0.12);
    color: var(--champagne, #C9A961);
    border-color: rgba(201, 169, 97, 0.25);
}

.section-tag.gold i {
    margin-right: 0.4rem;
    opacity: 0.9;
}

/* ===== Premium section CTA (gold-outlined dark button) ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--champagne-light, #E5D4A1), var(--champagne, #C9A961));
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.5);
}

/* ===== Pricing card featured: gold border highlight ===== */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary), var(--champagne, #C9A961), var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.6;
}

.pricing-card.featured {
    background: var(--white);
    border-color: transparent;
}

/* ===== Premium animated badge ===== */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.35);
}

.premium-badge i {
    color: var(--secondary);
    font-size: 0.625rem;
}

/* ===== Refined contact-info with gold accent ===== */
.contact-info {
    border-top: 4px solid var(--champagne, #C9A961);
    border-radius: 14px;
}

.contact-info::before {
    content: '✦';
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    color: var(--champagne, #C9A961);
    font-size: 1.125rem;
    opacity: 0.5;
}

/* ===== Refined section dividers with gold accent ===== */
.section-divider-light path {
    fill: var(--white);
}

.section-divider-section path {
    fill: var(--light);
}

.section-divider-dark path {
    fill: var(--secondary);
}

/* ===================================
   PROFESSIONAL ICON SYSTEM v2
   =================================== */

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.bento-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.bento-item:hover .bento-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
}

.bento-icon.gold {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bento-icon.mixed {
    background: linear-gradient(135deg, var(--primary), var(--champagne, #C9A961));
    color: #ffffff;
}

.bento-icon.dark {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--champagne-light, #E5D4A1);
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.4);
}

.bento-large .bento-icon {
    width: 64px;
    height: 64px;
    font-size: 1.625rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.usp-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.usp-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.usp-icon.gold {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.trust-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 182, 39, 0.08));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.trust-item:hover .trust-item-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    transform: translateY(-2px) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.about-feature i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.14), rgba(201, 169, 97, 0.08));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
}

.about-feature:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.villa-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.villa-feature:hover .villa-feature-icon {
    transform: rotate(-5deg) scale(1.08);
}

.contact-detail i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(201, 169, 97, 0.15));
    color: var(--champagne-light, #E5D4A1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.0625rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.contact-detail:hover i {
    background: linear-gradient(135deg, var(--primary), var(--champagne, #C9A961));
    color: #ffffff;
    transform: rotate(8deg) scale(1.05);
    border-color: transparent;
}

.faq-question i.fa-chevron-down {
    color: var(--primary);
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-question i.fa-chevron-down {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    transform: rotate(180deg);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.service-village i {
    color: var(--champagne, #C9A961);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-village:hover i {
    color: var(--champagne-light, #E5D4A1);
}

/* ===================================
   Service-icon variants (for photo cards)
   =================================== */

/* Gold variant — for premium values (Vakmanschap, Duurzaamheid) */
.service-icon.gold {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1));
    color: var(--secondary);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-card:hover .service-icon.gold {
    background: linear-gradient(135deg, var(--champagne-light, #E5D4A1), var(--champagne, #C9A961));
    color: var(--secondary);
    transform: translateY(-2px) rotate(-5deg) scale(1.05);
}

/* Dark variant — for trust / authority values */
.service-icon.dark {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--champagne-light, #E5D4A1);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card:hover .service-icon.dark {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
}

/* Mixed variant — orange to gold gradient */
.service-icon.mixed {
    background: linear-gradient(135deg, var(--primary), var(--champagne, #C9A961));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon.mixed {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--primary));
}

/* ===================================
   FINAL ICON OVERRIDE — ALL GOLD
   Unified champagne gold across all icons
   =================================== */

/* All bento icons → gold */
.bento-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.bento-item:hover .bento-icon {
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Bento large card icon (glassmorphism) — keep light/transparent on dark bg */
.bento-large .bento-icon {
    background: rgba(255, 255, 255, 0.18) !important;
    color: var(--champagne-light, #E5D4A1) !important;
    border: 1px solid rgba(229, 212, 161, 0.4) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* All USP icons → gold */
.usp-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* All service icons → gold */
.service-card .service-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--champagne-light, #E5D4A1), var(--champagne, #C9A961)) !important;
    color: var(--secondary) !important;
}

/* Trust strip icons → gold */
.trust-item-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(229, 212, 161, 0.1)) !important;
    color: var(--champagne, #C9A961) !important;
    border: 1px solid rgba(201, 169, 97, 0.3) !important;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.trust-item:hover .trust-item-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.45) !important;
}

/* About-feature icons → gold tone */
.about-feature i {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(229, 212, 161, 0.08)) !important;
    color: var(--champagne, #C9A961) !important;
    border: 1px solid rgba(201, 169, 97, 0.2) !important;
}

.about-feature:hover i {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4) !important;
}

/* Villa feature icons (already gold — confirm) */
.villa-feature-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
}

/* Contact-detail icons → gold (on dark bg) */
.contact-detail i {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(229, 212, 161, 0.15)) !important;
    color: var(--champagne-light, #E5D4A1) !important;
    border: 1px solid rgba(201, 169, 97, 0.35) !important;
}

.contact-detail:hover i {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
}

/* Process step number → gold */
.process-step-photo .process-number {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4),
                0 0 0 4px rgba(255, 255, 255, 0.95),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Logo icon → gold */
.logo-icon {
    background: linear-gradient(135deg, var(--champagne, #C9A961), var(--champagne-light, #E5D4A1)) !important;
    color: var(--secondary) !important;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.35) !important;
}

/* About feature i needs flexbox + size (override) */
.about-feature i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Bento card text on hover stays consistent */
.bento-icon i {
    color: inherit !important;
}

/* ===================================
   Bento Large Card — Refined readability
   No truck SVG — clean centered content
   =================================== */

.bento-large {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 212, 161, 0.15) !important;
}

.bento-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.2), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.15), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.bento-large > div {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Massive number — orange-to-gold gradient */
.bento-large .bento-stat {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--champagne, #C9A961) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* Heading — pure white, larger, bolder */
.bento-large h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Description text — much more readable */
.bento-large p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    font-weight: 400;
    max-width: 480px;
}

/* Bento large icon — gold glassmorphism */
.bento-large .bento-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(229, 212, 161, 0.15)) !important;
    color: var(--champagne-light, #E5D4A1) !important;
    border: 1px solid rgba(229, 212, 161, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Decorative orb in bento-large */
.bento-large .bento-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bento-large .bento-orbs::before,
.bento-large .bento-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bento-large .bento-orbs::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    background: rgba(255, 107, 53, 0.35);
}

.bento-large .bento-orbs::after {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -40px;
    background: rgba(201, 169, 97, 0.25);
}
