/* === COYOTE — Main Stylesheet === */

/* ── SERVICE DETAIL SECTIONS ─────────────── */
.service-detail {
    padding: 120px 48px;
    background: var(--black);
    color: var(--white);
}

.service-detail--light {
    background: var(--light-gray);
    color: var(--black);
}

.service-detail--light .section-tag {
    color: var(--red);
}

.service-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.service-detail-inner--reverse {
    direction: rtl;
}

.service-detail-inner--reverse > * {
    direction: ltr;
}

.service-detail-visual {
    aspect-ratio: 4/5;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.service-detail--light .service-detail-visual {
    background: var(--white);
    color: var(--gray);
    border: 1px solid rgba(0,0,0,0.08);
}

.service-detail-number {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.06);
}

.service-detail--light .service-detail-number {
    color: rgba(0,0,0,0.05);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 4px;
    margin-bottom: 24px;
    line-height: 0.95;
}

.service-detail-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.service-detail--light .service-detail-text p {
    color: var(--gray);
}

.service-detail-list {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
}

.service-detail--light .service-detail-list li {
    color: var(--dark);
}

.service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-detail-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

.service-detail-rate {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.service-detail--light .service-detail-rate {
    color: var(--gray);
}

.service-detail-rate strong {
    color: var(--white);
    font-weight: 600;
}

.service-detail--light .service-detail-rate strong {
    color: var(--black);
}

/* ── HOW IT WORKS ────────────────────────── */
.how-section {
    padding: 120px 48px;
    background: var(--white);
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.how-step {
    position: relative;
}

.how-step-num {
    font-family: var(--font-display);
    font-size: 64px;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    margin-bottom: 16px;
}

.how-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.how-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive services */
@media (max-width: 1024px) {
    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-detail-inner--reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .service-detail {
        padding: 80px 24px;
    }

    .how-section {
        padding: 80px 24px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
    padding: 160px 48px 80px;
    background: var(--black);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 140px);
    letter-spacing: 4px;
    line-height: 0.9;
    margin-bottom: 24px;
    color: var(--white);
}

.page-hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    line-height: 1.7;
}

/* ── FILTER BAR ──────────────────────────── */
.filter-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0 48px;
    background: var(--white);
    position: sticky;
    top: 72px;
    z-index: 100;
    overflow-x: auto;
}

.filter-btn {
    padding: 20px 28px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: -1px;
}

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

.filter-btn.active {
    color: var(--black);
    border-bottom-color: var(--red);
}

/* ── EQUIPMENT GRID ──────────────────────── */
.equipment-section {
    padding: 80px 48px 120px;
    background: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.equipment-card.hidden {
    display: none;
}

.equipment-image {
    aspect-ratio: 4/3;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-image {
    transform: scale(1.03);
}

.equipment-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
}

.equipment-card-body {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.equipment-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.equipment-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.equipment-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    flex: 1;
}

.equipment-specs li {
    font-size: 13px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.equipment-specs li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.equipment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.equipment-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--black);
}

.price-unit {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 11px;
}

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 24px 60px;
    }

    .filter-bar {
        padding: 0 16px;
        top: 60px;
    }

    .filter-btn {
        padding: 16px 16px;
    }

    .equipment-section {
        padding: 60px 24px 80px;
    }

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

:root {
    --red: #C41E1E;
    --red-hover: #A01818;
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 16px 48px;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.logo {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--black);
    text-decoration: none;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--red);
}

/* ── HERO ─────────────────────────────────── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    opacity: 0.9;
}

.hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-tag {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 120px);
    line-height: 0.95;
    letter-spacing: 4px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

/* ── SCROLL INDICATOR ─────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    animation: scrollDown 2s ease infinite;
}

/* ── SERVICES STRIP ──────────────────────── */
.services-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-card {
    padding: 80px 48px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:last-child {
    border-right: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    background: var(--light-gray);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--red);
    border-color: var(--red);
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ── SECTIONS ────────────────────────────── */
.section {
    padding: 120px 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ── RENTAL CARDS ────────────────────────── */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.rental-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rental-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.rental-card:hover .rental-image {
    transform: scale(1.05);
}

.rental-card-content {
    padding: 24px 0;
}

.rental-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.rental-card-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.rental-card-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.rental-card:hover .rental-card-link {
    gap: 14px;
}

/* ── WORKS ───────────────────────────────── */
.works-section {
    background: var(--black);
    color: var(--white);
    padding: 120px 48px;
}

.works-section .section-sub {
    color: rgba(255,255,255,0.5);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    aspect-ratio: 1;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 30, 30, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    color: white;
}

.work-overlay-brand {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* ── À LA CARTE ──────────────────────────── */
.alacarte-section {
    padding: 120px 48px;
    background: var(--light-gray);
}

.alacarte-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alacarte-visual {
    aspect-ratio: 4/5;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.alacarte-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
}

.alacarte-text h3 {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.alacarte-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.alacarte-features {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alacarte-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.alacarte-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
    padding: 100px 48px;
    background: var(--red);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.cta-banner p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 48px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── CONTACT / QUOTE FORM ────────────────── */
.contact-section {
    padding: 120px 48px;
    background: var(--black);
    color: var(--white);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
}

.contact-text .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 24px;
}

.contact-text .section-tag {
    text-align: left;
}

.contact-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    font-size: 14px;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 1px;
}

.contact-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Form */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

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

/* Date input color fix */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.4);
    cursor: pointer;
}

/* Checkboxes */
.form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    accent-color: var(--red);
    cursor: pointer;
}

/* Submit */
.form-submit {
    align-self: flex-start;
    min-width: 200px;
    position: relative;
}

/* Feedback */
.form-feedback {
    font-size: 14px;
    padding: 16px;
    border-left: 3px solid var(--red);
}

.form-feedback.success {
    border-color: #2ecc71;
    color: #2ecc71;
    background: rgba(46,204,113,0.05);
}

.form-feedback.error {
    border-color: var(--red);
    color: #ff6b6b;
    background: rgba(196,30,30,0.05);
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollDown {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .services-strip {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding: 60px 32px;
    }

    .rental-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

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

    .alacarte-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .section {
        padding: 80px 24px;
    }

    .works-section {
        padding: 80px 24px;
    }

    .alacarte-section {
        padding: 80px 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    footer {
        padding: 60px 24px 32px;
    }

    .contact-section {
        padding: 80px 24px;
    }

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