/* ==========================================================================
   JVH WATER- EN VOCHTBESTRIJDING
   Industrial / Craft aesthetic — built for trust and conversion
   ========================================================================== */

:root {
    /* Color palette: deep navy + safety yellow accent + warm concrete tones */
    --navy: #0a1628;
    --navy-light: #1a2942;
    --navy-dark: #050d18;
    --yellow: #c8102e;
    --yellow-dark: #9b0c24;
    --concrete: #e8e4dd;
    --concrete-dark: #c9c2b6;
    --warm-grey: #6b6660;
    --text: #1a1a1a;
    --text-light: #6b6660;
    --white: #ffffff;
    --off-white: #faf8f5;
    --border: #e0dcd5;
    
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.20);
    
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--off-white);
    overflow-x: hidden;
}

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

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

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

.center {
    text-align: center;
}

.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

em {
    font-style: normal;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #9b0c24 0%, #c8102e 50%, #7a0a1d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 6px;
    background: var(--yellow);
    opacity: 0.12;
    z-index: -1;
}

/* Make titles have a subtle depth gradient too */
h1.hero-title .hero-title-main {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-title {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 55%, rgba(10, 22, 40, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 16px;
}

.section-title.light {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--yellow-dark);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

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

.section-tag.light::before {
    background: var(--yellow);
}

.title-burst {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

.title-burst svg {
    width: 36px;
    height: 36px;
}

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

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 60px;
    max-width: 720px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Section dividers - subtle accent lines */
.reviews,
.services,
.process,
.portfolio,
.faq {
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.about {
    border-top: 1px solid rgba(10, 22, 40, 0.05);
}

.why,
.cta-banner,
.contact {
    border-top: 4px solid var(--yellow);
}

.stats {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION BRANDING DECORATIONS - background letters & floating badges
   ========================================================================== */

.reviews-bg-text,
.services-bg-text,
.process-bg-text,
.portfolio-bg-text,
.faq-bg-text {
    position: absolute;
    font-family: 'Anton', sans-serif;
    font-weight: 900;
    color: rgba(10, 22, 40, 0.04);
    line-height: 0.85;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
}

.reviews-bg-text {
    bottom: -40px;
    right: -10px;
    font-size: 240px;
}

.services-bg-text {
    top: 60px;
    left: -20px;
    font-size: 200px;
    color: rgba(10, 22, 40, 0.035);
}

.process-bg-text {
    bottom: -50px;
    right: -10px;
    font-size: 380px;
    color: rgba(10, 22, 40, 0.04);
}

.portfolio-bg-text {
    top: 80px;
    right: -20px;
    font-size: 280px;
}

.faq-bg-text {
    bottom: -30px;
    left: -20px;
    font-size: 260px;
}

/* Floating badge widgets (like 19 jaar ervaring badge) */
.reviews-floating-badge,
.process-floating-badge,
.portfolio-floating-badge {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.reviews-floating-badge {
    top: 100px;
    right: 60px;
}

.process-floating-badge {
    top: 100px;
    right: 60px;
}

.portfolio-floating-badge {
    top: 100px;
    left: 60px;
}

.floating-badge-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(-8deg);
    border: 3px solid var(--white);
    padding: 8px;
}

.floating-badge-circle.floating-badge-dark {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--yellow);
}

.floating-badge-circle .badge-stars {
    color: var(--navy);
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

.floating-badge-circle .badge-rating {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1;
    margin: 4px 0 2px;
}

.floating-badge-circle .badge-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--navy);
}

.floating-badge-circle .badge-num-big {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--yellow);
}

.floating-badge-circle.floating-badge-dark .badge-text-small {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--white);
    margin-top: 2px;
}

.floating-badge-square {
    width: 110px;
    height: 110px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(6deg);
    border-radius: 12px;
    padding: 8px;
}

.floating-badge-square .badge-num-square {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: var(--yellow);
}

.floating-badge-square .badge-text-square {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--white);
    margin-top: 4px;
}

/* Make sure containers are above the bg elements */
.services .container,
.process .container,
.portfolio .container,
.faq .container {
    position: relative;
    z-index: 1;
}

/* Hide floating badges on smaller screens */
@media (max-width: 1024px) {
    .reviews-floating-badge,
    .process-floating-badge,
    .portfolio-floating-badge {
        display: none;
    }
    
    .reviews-bg-text,
    .services-bg-text,
    .process-bg-text,
    .portfolio-bg-text,
    .faq-bg-text {
        font-size: 160px !important;
        opacity: 0.7;
    }
}

/* ==========================================================================
   SUBTLE SECTION DIVIDER - minimal thin line
   ========================================================================== */

.section-line-divider {
    background: var(--off-white);
    padding: 0;
    position: relative;
}

.section-line-divider .container {
    padding-top: 0;
    padding-bottom: 0;
}

.line-divider-bar {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(10, 22, 40, 0.08) 25%,
        rgba(10, 22, 40, 0.12) 50%,
        rgba(10, 22, 40, 0.08) 75%,
        transparent 100%);
    position: relative;
}

.line-divider-bar::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

/* ==========================================================================
   BRAND STRIP - the "running banner" between sections
   ========================================================================== */

.brand-strip {
    background: var(--navy);
    color: var(--yellow);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(200, 16, 46, 0.2);
    border-bottom: 1px solid rgba(200, 16, 46, 0.2);
    position: relative;
}

.brand-strip-dark {
    background: var(--yellow);
    color: var(--navy);
    border-color: rgba(10, 22, 40, 0.2);
}

.brand-strip-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.brand-strip-item {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.brand-strip-sep {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.7;
}

.brand-strip-sep svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   BRANDING - corner accents and decorations
   ========================================================================== */

.corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    color: var(--yellow);
}

.corner-accent-tl {
    top: 24px;
    left: 24px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.corner-accent-br {
    bottom: 24px;
    right: 24px;
    border-bottom: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

/* Burst/star decoration */
.burst-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.15;
}

.burst-decoration svg {
    width: 100%;
    height: 100%;
    fill: var(--yellow);
}

@keyframes slow-spin {
    100% { transform: rotate(360deg); }
}

.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left, .topbar-right {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-item {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.topbar-item:hover {
    color: var(--yellow);
}

.topbar-item:hover svg {
    opacity: 1;
}

.topbar-phone {
    color: var(--yellow) !important;
    font-weight: 600;
}

.topbar-phone svg {
    opacity: 1 !important;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    height: 88px;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
}

.footer .logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

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

.logo-name {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-tag {
    font-size: 11px;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a,
.nav-menu .nav-dropdown-trigger {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu a:hover,
.nav-menu .nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--yellow);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--yellow);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(10, 22, 40, 0.92) 100%),
        url('/images/img-470ba7b83e54.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Soft atmospheric overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(200, 16, 46, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    max-width: 640px;
    position: relative;
}

.hero-corner-decoration {
    position: absolute;
    top: -20px;
    left: -80px;
    opacity: 0.6;
}

.hero-corner-decoration svg {
    width: 60px;
    height: 60px;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 16, 46, 0.3);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.badge-stars {
    color: var(--yellow);
    letter-spacing: 2px;
}

.badge-num {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--yellow);
    line-height: 1;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-sub {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--yellow);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-usps {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-usp {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-usp svg {
    color: var(--yellow);
    flex-shrink: 0;
}

/* Hero form */
.hero-right {
    position: relative;
}

.hero-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    color: var(--text);
    position: relative;
    border-top: 4px solid var(--yellow);
}

.hero-form-header {
    padding: 28px 32px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.hero-form-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--navy);
}

.hero-form-header h3 span {
    color: var(--yellow-dark);
}

.hero-form-header p {
    font-size: 14px;
    color: var(--text-light);
}

.hero-form {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-form input,
.hero-form select,
.hero-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
    width: 100%;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.hero-form textarea,
.contact-form textarea {
    resize: vertical;
}

/* Marquee */
.hero-marquee {
    position: relative;
    z-index: 2;
    background: var(--yellow);
    color: var(--navy);
    overflow: hidden;
    padding: 16px 0;
    border-top: 3px solid var(--navy);
    border-bottom: 3px solid var(--navy);
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.marquee-track span {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
}

.marquee-track .dot {
    color: var(--navy);
    font-size: 12px;
}

/* ==========================================================================
   STATS - compact strip
   ========================================================================== */

.stats {
    background: var(--navy);
    color: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(200, 16, 46, 0.3);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-text {
    text-align: left;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    line-height: 1;
    color: var(--yellow);
    margin-bottom: 2px;
}

.stat-num span {
    font-size: 22px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews {
    background: var(--off-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 400px at 90% 80%, rgba(200, 16, 46, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 15% 75%, rgba(10, 22, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.reviews::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.09 0 0 0 0 0.16 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: multiply;
}

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

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

.review {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    color: var(--yellow);
    line-height: 1;
    opacity: 0.25;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.review-stars {
    color: var(--yellow);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-stars::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
    margin-left: 8px;
}

.review-title {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.review-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

.review-location {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 800px 600px at 100% 50%, rgba(200, 16, 46, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 0% 0%, rgba(10, 22, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about::after {
    content: 'JVH';
    position: absolute;
    bottom: 0;
    right: -20px;
    font-family: 'Anton', sans-serif;
    font-size: 360px;
    color: rgba(10, 22, 40, 0.05);
    line-height: 0.85;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.05em;
    font-weight: 900;
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}

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

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
}

.badge-circle {
    width: 160px;
    height: 160px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    transform: rotate(-8deg);
    transition: transform 0.4s;
}

.badge-circle:hover {
    transform: rotate(0deg);
}

.badge-num-big {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--navy);
    line-height: 1;
}

.badge-text-small {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--navy);
    text-align: center;
    margin-top: 4px;
}

.about-img-logo {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    overflow: hidden;
    z-index: 2;
    padding: 16px;
}

.about-img-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.about-content {
    max-width: 580px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.feature-icon svg {
    color: var(--navy);
}

.about-feature strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why {
    background: var(--navy);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-bg-image {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.82) 50%, rgba(10, 22, 40, 0.92) 100%),
        url('/images/img-6501cee99a22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 0;
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.why .container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card {
    background: var(--navy);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    min-height: 280px;
}

.why-card:hover {
    background: var(--navy-light);
}

.why-num {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 22px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 800px 400px at 10% 10%, rgba(200, 16, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 90% 90%, rgba(10, 22, 40, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 50% 50%, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.09 0 0 0 0 0.16 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.6'/></svg>");
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: multiply;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-top: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.6;
    transform: translate(-4px, 4px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-featured {
    border-color: var(--yellow);
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.15);
}

.service-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: var(--yellow);
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--navy);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-start;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

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

.service-link svg {
    flex-shrink: 0;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process {
    padding: 100px 0 100px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(200, 16, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 10% 100%, rgba(10, 22, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.09 0 0 0 0 0.16 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.35;
    pointer-events: none;
    mix-blend-mode: multiply;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 130px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--yellow),
        var(--yellow) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
}

.process-step {
    padding: 0 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.process-step:hover .process-img {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-step:hover .process-img img {
    transform: scale(1.08);
}

.process-num {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border: 4px solid var(--white);
    color: var(--navy);
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -48px auto 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-num {
    transform: scale(1.1);
    background: var(--navy);
    color: var(--yellow);
}

.process-step h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 18px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */

.portfolio {
    padding: 100px 0 120px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 900px 400px at 80% 20%, rgba(200, 16, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 10% 80%, rgba(10, 22, 40, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.09 0 0 0 0 0.16 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: multiply;
}

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

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--navy);
    aspect-ratio: 4/3;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--yellow);
    border-left: 2px solid var(--yellow);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 3;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 0.8;
    transform: translate(4px, 4px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    opacity: 1;
    transition: background 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.25) 100%);
}

.portfolio-cat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--yellow);
    margin-bottom: 8px;
}

.portfolio-overlay h4 {
    font-size: 18px;
    color: var(--white);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.85) 100%),
        url('/images/img-e82b92221d23.jpg');
    background-size: cover;
    background-position: center;
}

.cta-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-left h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 700px 500px at 0% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 100% 100%, rgba(10, 22, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.09 0 0 0 0 0.16 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.35;
    pointer-events: none;
    mix-blend-mode: multiply;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro p {
    color: var(--text-light);
    margin: 16px 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
    list-style: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200, 16, 46, 0.05) 0%, transparent 50%);
}

.contact .container {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-block:hover {
    background: rgba(200, 16, 46, 0.08);
    border-color: rgba(200, 16, 46, 0.3);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--navy);
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    color: var(--text);
    border-top: 4px solid var(--yellow);
}

.contact-form h3 {
    color: var(--navy);
    margin-bottom: 24px;
    font-size: 26px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.form-note svg {
    color: var(--yellow-dark);
    flex-shrink: 0;
}

.form-note-sep {
    opacity: 0.4;
    margin: 0 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    transition: var(--transition);
    font-family: 'Anton', sans-serif;
}

.footer-socials a:hover {
    background: var(--yellow);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-contact li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
    color: var(--yellow);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.floating-whatsapp svg {
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}

.floating-phone:hover {
    transform: scale(1.1);
    background: var(--white);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat:nth-child(2)::after {
        display: none;
    }
    
    .reviews-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-card-image {
        min-height: 280px;
    }
    
    .about-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 24px;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        z-index: 99;
    }
    
    .nav-menu.open {
        max-height: calc(100vh - 88px);
        padding: 16px 24px;
        overflow-y: auto;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .faq-intro {
        position: static;
    }
    
}

@media (max-width: 640px) {
    .topbar {
        display: none;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-content {
        padding: 40px 20px 60px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-form {
        padding: 20px;
    }
    
    .hero-form-header {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat::after {
        display: none !important;
    }
    
    .stat-num {
        font-size: 48px;
    }
    
    .reviews-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card-image {
        min-height: 220px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .about,
    .reviews,
    .services,
    .process,
    .portfolio,
    .why,
    .faq,
    .contact {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-img-logo,
    .about-img-badge {
        transform: scale(0.8);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .marquee-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 24px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .marquee-track::-webkit-scrollbar {
        display: none;
    }
    
    .marquee-track span {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .brand-strip-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 24px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .brand-strip-track::-webkit-scrollbar {
        display: none;
    }
    
    .brand-strip-item {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .brand-strip-sep {
        flex-shrink: 0;
    }
    
    .about::after {
        display: none;
    }
    
    .reviews::after,
    .about::before,
    .services::before,
    .portfolio::before,
    .process::before,
    .faq::before {
        opacity: 0.5;
    }
    
    .hero-corner-decoration {
        display: none;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */

.service-hero {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.78) 50%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

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

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

.breadcrumb span { color: var(--yellow); }

.service-hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.service-hero-title em {
    background: linear-gradient(135deg, #c8102e 0%, #e63950 50%, #9b0c24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-desc {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin-bottom: 36px;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-content-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-content-section.alt-bg {
    background: var(--off-white);
}

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

.service-intro-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 55%, rgba(10, 22, 40, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-intro-text h2 em {
    background: linear-gradient(135deg, #c8102e 0%, #e63950 50%, #9b0c24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-intro-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-intro-image {
    position: relative;
}

.service-intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-feature {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--yellow);
}

.service-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'Anton', sans-serif;
    font-size: 24px;
}

.service-feature h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.service-feature p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.service-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-cta-banner {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 800px 500px at 20% 30%, rgba(200, 16, 46, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 80% 70%, rgba(200, 16, 46, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

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

.service-cta-banner h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-cta-banner h2 em {
    background: linear-gradient(135deg, #c8102e 0%, #e63950 50%, #9b0c24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-cta-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-mini {
    background: var(--off-white);
    padding: 80px 0;
}

.process-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-mini-step {
    text-align: center;
    position: relative;
}

.process-mini-num {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Anton', sans-serif;
    font-size: 36px;
}

.process-mini-step h4 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-mini-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-intro-image img {
        height: 380px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-mini-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .service-hero {
        padding: 60px 0;
    }
    
    .service-content-section {
        padding: 60px 0;
    }
    
    .service-features-grid,
    .service-gallery,
    .process-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-actions,
    .service-cta-actions {
        flex-direction: column;
    }
    
    .service-hero-actions .btn,
    .service-cta-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   NAV DROPDOWN
   ========================================================================== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 4px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(-135deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 200;
    border-top: 4px solid var(--yellow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--navy) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s;
    text-transform: none;
    border: none !important;
    text-align: left;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--yellow-dark) !important;
}

@media (max-width: 1024px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        min-width: auto;
        margin-top: 8px;
    }
    
    .nav-dropdown-menu a {
        color: var(--white) !important;
        padding: 8px 16px;
    }
    
    .nav-dropdown-menu a:hover {
        color: var(--yellow) !important;
        background: transparent;
    }
    
    .nav-dropdown-trigger::after {
        display: none;
    }

    /* On mobile the submenu is always laid out statically — don't let the
       desktop .open transform shift it 50% to the left and off-screen.
       !important is needed because the desktop ".nav-dropdown.open
       .nav-dropdown-menu" rule appears later in source order with equal
       specificity. */
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown .nav-dropdown-menu {
        transform: none !important;
        left: auto !important;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-page-info .section-tag {
    display: inline-flex;
}

.contact-page-info .section-title {
    margin-bottom: 24px;
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 55%, rgba(10, 22, 40, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-page-info .contact-block {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-page-info .contact-block:hover {
    background: var(--off-white);
    border-color: rgba(200, 16, 46, 0.35);
}
.contact-page-info .contact-label {
    color: var(--text-light);
}
.contact-page-info .contact-value {
    color: var(--text);
}

@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-page-form { order: 0; }
    .contact-page-info { order: 1; }
}

/* Open state for tap-to-open on mobile */
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-dropdown-trigger::after {
    transform: rotate(-135deg);
}

/* Mobile nav menu item styling */
@media (max-width: 1024px) {
    .nav-menu > a,
    .nav-menu .nav-dropdown {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }
    
    .nav-menu > a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .nav-toggle span {
        display: block;
        height: 3px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.3s;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
