/* ============================================================
   Julio's Car Detailing — style.css
   ============================================================ */

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

:root {
    --blue: #2ea3f2;
    --blue-dark: #1a8fd8;
    --blue-glow: rgba(46, 163, 242, 0.18);
    --bg: #0d0d0d;
    --bg2: #141414;
    --bg3: #1c1c1c;
    --white: #ffffff;
    --gray-txt: #a0a0a0;
    --gray-border: #272727;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 10px;
    --radius-lg: 16px;
}

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;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .calc-ptitle, .service-title,
.review-text, .calc-ptitle {
    font-family: 'Space Grotesk', sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── CURSOR ── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}
.cursor.expand {
    width: 40px;
    height: 40px;
    background: rgba(46, 163, 242, 0.15);
}
@media (hover: none) {
    .cursor { display: none; }
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 68px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    border-color: var(--gray-border);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    white-space: nowrap;
}
.logo-icon {
    color: var(--blue);
    font-size: 1rem;
}
.logo-accent {
    color: var(--blue);
}

/* ── DESKTOP NAV ── */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-txt);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 8999;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.show {
    display: block;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--bg2);
    z-index: 9100;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--gray-border);
}
.mobile-drawer.open {
    transform: translateX(0);
}
.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-txt);
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.drawer-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-txt);
    padding: 12px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.mobile-nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.mobile-nav-cta {
    margin-top: 16px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s;
}
.mobile-nav-cta:hover {
    background: var(--blue-dark);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 8px 24px rgba(46, 163, 242, 0.30);
}
.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid var(--gray-border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── SECTION COMMON ── */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg2);
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1rem;
    color: var(--gray-txt);
    line-height: 1.7;
}
.accent {
    color: var(--blue);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(46, 163, 242, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(46, 163, 242, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.015) 79px,
        rgba(255,255,255,0.015) 80px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.015) 79px,
        rgba(255,255,255,0.015) 80px
    );
    pointer-events: none;
}
.hero-content {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 163, 242, 0.12);
    border: 1px solid rgba(46, 163, 242, 0.25);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-txt);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}
.br-desktop { display: block; }
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gray-border));
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--bg2);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.stat-item .stat-number,
.stat-item .stat-suffix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
}
.stat-item .stat-suffix {
    margin-left: 2px;
}
.stat-item .stat-number + .stat-suffix {
    display: inline;
}
.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-txt);
    font-weight: 500;
    margin-top: 4px;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg2);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.service-card:hover {
    border-color: rgba(46, 163, 242, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 16px;
    opacity: 0.7;
}
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(46, 163, 242, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.service-desc {
    font-size: 0.9rem;
    color: var(--gray-txt);
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
}
.service-link:hover {
    text-decoration: underline;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 7/8;
    background: var(--bg3);
    border: 1px solid var(--gray-border);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-border);
    position: absolute;
    inset: 0;
}
.about-float-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(46, 163, 242, 0.35);
}
.about-float-badge strong {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
}
.about-float-badge span {
    font-size: 0.8rem;
    opacity: 0.85;
}
.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.about-text .section-tag {
    display: block;
    text-align: left;
    margin-bottom: 12px;
}
.about-body {
    color: var(--gray-txt);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.about-list {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}
.about-list svg {
    color: var(--blue);
    flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--gray-border);
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}
.gallery-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.gallery-item.placeholder::after {
    content: 'Foto binnenkort';
    font-size: 0.8rem;
    color: var(--gray-border);
}

/* ── REVIEWS ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.3s;
}
.review-card:hover {
    border-color: rgba(46, 163, 242, 0.25);
}
.review-stars {
    color: var(--blue);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-text {
    font-size: 0.92rem;
    color: var(--gray-txt);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}
.review-author span {
    font-size: 0.78rem;
    color: var(--gray-txt);
}

/* ── FAQ ── */
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--gray-border);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg2);
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-q:hover {
    background: var(--bg3);
}
.faq-q[aria-expanded="true"] {
    color: var(--blue);
}
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--blue);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    background: var(--bg2);
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-txt);
    line-height: 1.75;
}

/* ── CONTACT ── */
.contact-block {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 64px;
    align-items: center;
}
.contact-block-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.contact-block-text .section-tag {
    display: block;
    text-align: left;
    margin-bottom: 12px;
}
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.contact-sub {
    color: var(--gray-txt);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}
.contact-details svg {
    color: var(--blue);
    flex-shrink: 0;
}
.contact-details a {
    color: var(--gray-txt);
    transition: color 0.2s;
}
.contact-details a:hover {
    color: var(--white);
}
.contact-details span {
    color: var(--gray-txt);
}
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--gray-txt);
    border-left: 2px solid var(--blue);
    padding-left: 14px;
}
.opening-hours strong {
    color: var(--white);
    margin-bottom: 4px;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-txt);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg2);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group select option {
    background: var(--bg2);
    color: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
}
.form-success,
.form-error {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
}
.form-success.show {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
.form-error.show {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ── FOOTER ── */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--gray-border);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 48px;
}
.footer-brand .logo {
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.88rem;
    color: var(--gray-txt);
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg2);
    border: 1px solid var(--gray-border);
    color: var(--gray-txt);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
    color: var(--blue);
    border-color: rgba(46, 163, 242, 0.35);
    background: rgba(46, 163, 242, 0.08);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col strong {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-col a,
.footer-col span {
    font-size: 0.88rem;
    color: var(--gray-txt);
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid var(--gray-border);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 0.82rem;
    color: var(--gray-txt);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom-inner a {
    color: var(--blue);
    transition: opacity 0.2s;
}
.footer-bottom-inner a:hover {
    opacity: 0.8;
}

/* ── STAT NUMBER WRAPPER ── */
.stat-item {
    position: relative;
}
.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
}
.stat-num-wrap .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
}
.stat-num-wrap .stat-suffix {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--blue);
}

/* ── VOOR & NA SLIDER ── */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ba-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-label-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-txt);
}

.ba-slider {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    border: 1px solid var(--gray-border);
}

.ba-layer {
    position: absolute;
    inset: 0;
}

.ba-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: opacity 0.2s;
}

/* Placeholder gradient when image is missing */
.ba-na {
    background: linear-gradient(135deg, #0d1f35 0%, #1a3350 40%, #0f2540 100%);
}

.ba-voor {
    background: linear-gradient(135deg, #2a160a 0%, #3d2010 40%, #251508 100%);
    clip-path: inset(0 50% 0 0);
}

/* Labels */
.ba-tag {
    position: absolute;
    top: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 100px;
    pointer-events: none;
    z-index: 5;
}

.ba-tag-voor {
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    backdrop-filter: blur(6px);
}

.ba-tag-na {
    right: 12px;
    background: rgba(46, 163, 242, 0.85);
    color: #fff;
    backdrop-filter: blur(6px);
}

/* Handle */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.ba-handle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
    gap: 0;
}

/* ── INSTAGRAM GRID ── */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.insta-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    display: block;
    cursor: pointer;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
    display: block;
}

.insta-post:hover img {
    transform: scale(1.06);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    gap: 6px;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay-icon {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.insta-caption {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Skeleton loader */
@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.8; }
}

.insta-skeleton {
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    animation: skeletonPulse 1.6s ease-in-out infinite;
}

.insta-skeleton:nth-child(2) { animation-delay: 0.15s; }
.insta-skeleton:nth-child(3) { animation-delay: 0.30s; }
.insta-skeleton:nth-child(4) { animation-delay: 0.45s; }
.insta-skeleton:nth-child(5) { animation-delay: 0.60s; }
.insta-skeleton:nth-child(6) { animation-delay: 0.75s; }

/* No-token placeholder */
.insta-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 24px;
    border: 1px dashed var(--gray-border);
    border-radius: var(--radius-lg);
    color: var(--gray-txt);
    font-size: 0.88rem;
    text-align: center;
}

.insta-placeholder svg {
    color: var(--blue);
    opacity: 0.5;
}

.insta-placeholder code {
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.82rem;
    color: var(--blue);
}

.insta-cta {
    text-align: center;
}

/* ── WHATSAPP BUTTON ── */
.wa-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

/* ── PRICE CALCULATOR ── */
.calc-box {
    background: var(--bg2);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.calc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 32px;
    border-bottom: 1px solid var(--gray-border);
    background: var(--bg3);
    flex-wrap: wrap;
}

/* Stepper */
.calc-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    padding: 0;
}

.calc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: default;
    padding: 0;
    min-width: 0;
    pointer-events: none;
}

.cs-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg2);
    border: 2px solid var(--gray-border);
    color: var(--gray-txt);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
    position: relative;
}

.calc-step.active .cs-num {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 163, 242, 0.18);
}

.calc-step.done .cs-num {
    background: rgba(46, 163, 242, 0.15);
    border-color: var(--blue);
    color: var(--blue);
}

.calc-step.done .cs-num-txt {
    display: none;
}

.calc-step.done .cs-num::after {
    content: '✓';
    font-size: 0.88rem;
    font-weight: 700;
}

.cs-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-txt);
    white-space: nowrap;
    transition: color 0.3s;
}

.calc-step.active .cs-lbl {
    color: var(--white);
}

.calc-step.done .cs-lbl {
    color: var(--blue);
}

.cs-line {
    flex: 1;
    height: 2px;
    background: var(--gray-border);
    margin: 0 8px 19px;
    transition: background 0.35s var(--ease);
    min-width: 16px;
}

.cs-line.done {
    background: var(--blue);
}

/* Price pill */
.calc-price-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    flex-shrink: 0;
}

.calc-price-pill span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-txt);
}

.calc-price-pill strong {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
    transition: transform 0.2s var(--ease);
    min-width: 80px;
    text-align: right;
}

/* Panels */
.calc-panels-wrap {
    position: relative;
    overflow: hidden;
}

.calc-panel {
    display: none;
    padding: 36px 32px;
}

.calc-panel.active {
    display: block;
    animation: calcPanelIn 0.38s var(--ease) both;
}

.calc-panel.anim-back.active {
    animation-name: calcPanelInBack;
}

@keyframes calcPanelIn {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes calcPanelInBack {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes calcShake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-7px); }
    40%      { transform: translateX(7px); }
    60%      { transform: translateX(-5px); }
    80%      { transform: translateX(3px); }
}

.calc-ptitle {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.calc-psub {
    font-size: 0.88rem;
    color: var(--gray-txt);
    margin-top: -10px;
    margin-bottom: 18px;
}

/* Cards grid */
.cc-grid {
    display: grid;
    gap: 14px;
}

.cc-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.cc-grid--services {
    grid-template-columns: repeat(2, 1fr);
}

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

/* Base card */
.cc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 14px;
    background: var(--bg3);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.22s, background 0.22s, transform 0.22s, box-shadow 0.22s;
    text-align: center;
    color: var(--white);
    font-family: inherit;
    position: relative;
}

.cc-card:hover {
    border-color: rgba(46, 163, 242, 0.4);
    background: rgba(46, 163, 242, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cc-card.selected {
    border-color: var(--blue);
    background: rgba(46, 163, 242, 0.08);
}

.cc-card.selected::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 9px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.cc-icon {
    color: var(--blue);
    opacity: 0.75;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-card:hover .cc-icon,
.cc-card.selected .cc-icon {
    opacity: 1;
}

.cc-card strong {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cc-card > span:not(.cc-size-badge):not(.cc-extra-price) {
    font-size: 0.74rem;
    color: var(--gray-txt);
    line-height: 1.35;
}

.cc-size-badge {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--blue);
    background: rgba(46, 163, 242, 0.1);
    border: 1px solid rgba(46, 163, 242, 0.2);
    padding: 2px 9px;
    border-radius: 100px;
    margin-top: 2px;
}

/* Service card (horizontal layout) */
.cc-card.cc-service {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 16px 18px;
}

.cc-service .cc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(46, 163, 242, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.cc-service-body {
    flex: 1;
    min-width: 0;
}

.cc-service-body .cc-popular {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: rgba(46, 163, 242, 0.12);
    border: 1px solid rgba(46, 163, 242, 0.25);
    padding: 2px 8px;
    border-radius: 100px;
    margin-bottom: 5px;
}

.cc-service-body strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cc-service-body > span {
    font-size: 0.76rem;
    color: var(--gray-txt);
    display: block;
    line-height: 1.4;
}

.cc-price {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    padding-top: 2px;
}

.cc-price strong {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.04em;
    display: block;
}

.cc-price span {
    font-size: 0.68rem;
    color: var(--gray-txt);
    display: block;
}

/* Override: no corner checkmark on service cards (it covers the price) */
.cc-card.cc-service.selected::after {
    display: none;
}

.cc-card.cc-service.selected {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

/* Extra toggle cards */
.cc-card.cc-extra {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 14px 16px;
}

.cc-card.cc-extra.selected::after {
    display: none;
}

.cc-extra-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gray-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cc-card.selected .cc-extra-check {
    background: var(--blue);
    border-color: var(--blue);
}

.cc-card.selected .cc-extra-check::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.cc-extra-body {
    flex: 1;
    min-width: 0;
}

.cc-extra-body strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.cc-extra-body span {
    font-size: 0.74rem;
    color: var(--gray-txt);
}

.cc-extra-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

/* Summary box */
.calc-summary {
    background: var(--bg3);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.calc-summary-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.csr-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gray-txt);
}

.csr-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.calc-summary-total {
    grid-column: 1 / -1;
    border-top: 1px solid var(--gray-border);
    padding-top: 12px;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-summary-total .csr-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.05em;
}

/* Calculator form */
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-form-submit {
    width: 100%;
    justify-content: center;
}

/* Footer nav */
.calc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-top: 1px solid var(--gray-border);
    background: var(--bg3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ba-grid .ba-wrap:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .cc-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc-grid--extras {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-float-badge {
        right: 16px;
        bottom: -16px;
    }
    .contact-block {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }

    .section { padding: 72px 0; }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }
    .br-desktop { display: none; }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--tall { grid-row: auto; aspect-ratio: 4/3; }
    .gallery-item--wide { grid-column: span 2; }

    .ba-grid {
        grid-template-columns: 1fr;
    }
    .ba-grid .ba-wrap:last-child {
        grid-column: auto;
        max-width: none;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .calc-head {
        padding: 18px 20px;
        gap: 16px;
    }
    .calc-panel {
        padding: 24px 20px;
    }
    .calc-foot {
        padding: 16px 20px;
    }
    .cc-grid--services {
        grid-template-columns: 1fr;
    }
    .cc-grid--extras {
        grid-template-columns: 1fr 1fr;
    }
    .calc-summary {
        grid-template-columns: 1fr;
    }
    .cs-lbl {
        display: none;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }

    .hero-actions {
        flex-direction: column;
    }
    .btn { width: 100%; justify-content: center; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--wide { grid-column: auto; }

    .cc-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc-grid--extras {
        grid-template-columns: 1fr;
    }
    .calc-price-pill strong {
        font-size: 1.3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
