/* ══════════════════════════════════════════════════════════════════
   ALBION ALL HIRE — STYLESHEET
   You should NOT need to edit this file unless you want to
   change colours, fonts, or layout. All content is in content.js.
   ══════════════════════════════════════════════════════════════════ */

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

:root {
    --navy: #1a2332;
    --navy-deep: #0d1520;
    --gold: #f5a623;
    --gold-dark: #d4941a;
    --gold-light: #ffc95c;
    --light-gray: #f4f6f8;
    --medium-gray: #6b7c93;
    --white: #ffffff;
    --black: #0a0f1a;
    --teal: #4A90A4;
    --success: #2ecc71;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.7;
    color: var(--navy);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* ── SCROLL PROGRESS ────────────────────────────────────────── */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10000; width: 0%; transition: width 0.1s;
}

/* ── HEADER ─────────────────────────────────────────────────── */
header {
    position: fixed; top: 0; width: 100%;
    background: rgba(13, 21, 32, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
    transition: all 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.header-top {
    background: var(--black);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    font-size: 0.85rem;
}
.header-top-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.header-contact { display: flex; gap: 2rem; }
.header-contact a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    display: flex; align-items: center; gap: 0.4rem;
    transition: color 0.3s; font-size: 0.85rem;
}
.header-contact a:hover { color: var(--gold); }
.header-hours { color: var(--gold); font-weight: 600; font-size: 0.85rem; }

nav {
    max-width: 1400px; margin: 0 auto; padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none;
}
.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.4rem;
    color: var(--navy-deep); letter-spacing: -0.02em;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Oswald', sans-serif; font-size: 1.3rem;
    font-weight: 700; color: var(--white); text-transform: uppercase;
    letter-spacing: 0.08em; line-height: 1.1;
}
.logo-tagline {
    font-size: 0.7rem; color: var(--gold); text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 600;
}

.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.6rem 1.2rem; position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%); width: 0; height: 2px;
    background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 60%; }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-deep) !important; font-weight: 700 !important;
    padding: 0.6rem 1.6rem !important; border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(245,166,35,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: 0.3s; display: block; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e2d40 100%);
    position: relative; overflow: hidden; padding-top: 120px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(245,166,35,0.03) 0px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(245,166,35,0.03) 0px, transparent 1px, transparent 80px);
}
.hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-accent {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
}
.hero-content {
    max-width: 1400px; margin: 0 auto; padding: 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3);
    padding: 0.4rem 1rem; border-radius: 30px; margin-bottom: 1.5rem;
    color: var(--gold); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem); color: var(--white);
    margin-bottom: 1.5rem; line-height: 1.05;
}
.hero h1 .gold { color: var(--gold); display: block; }
.hero-desc {
    font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem;
    max-width: 520px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; font-family: 'Oswald', sans-serif;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
    text-decoration: none; border-radius: 4px; font-weight: 600;
    transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-deep);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(245,166,35,0.35); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.stat-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 2rem; text-align: center;
    backdrop-filter: blur(6px); transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.stat-number {
    font-family: 'Oswald', sans-serif; font-size: 3rem;
    font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
    background: var(--white); padding: 2rem; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-bar-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; font-weight: 600; color: var(--navy);
}
.trust-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(245,166,35,0.1); display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
    display: inline-block; background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25); color: var(--gold);
    padding: 0.3rem 1rem; border-radius: 30px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem); color: var(--navy);
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem; color: var(--medium-gray); max-width: 600px; margin: 0 auto;
}

.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy-deep); }
.bg-navy .section-header h2 { color: var(--white); }
.bg-navy .section-header p { color: rgba(255,255,255,0.6); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
    color: var(--navy-deep); border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.process-step p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; }

/* ── FLEET ──────────────────────────────────────────────────── */
.fleet-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem;
}
.fleet-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; position: relative;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.fleet-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-image-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem;
}
.fleet-image::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.fleet-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold); color: var(--navy-deep);
    font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 3px; text-transform: uppercase;
    letter-spacing: 0.05em; z-index: 1;
}
.fleet-content { padding: 1.5rem; }
.fleet-category {
    font-size: 0.7rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.4rem;
}
.fleet-content h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.3rem;
    margin-bottom: 0.6rem; color: var(--navy);
}
.fleet-content p { font-size: 0.95rem; color: var(--medium-gray); margin-bottom: 1rem; line-height: 1.6; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.spec-tag {
    background: var(--light-gray); padding: 0.25rem 0.7rem;
    border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    color: var(--navy); letter-spacing: 0.02em;
}
.fleet-enquire {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem; color: var(--gold); font-weight: 600;
    font-size: 0.9rem; text-decoration: none; transition: gap 0.3s;
}
.fleet-enquire:hover { gap: 0.7rem; }

/* ── GUARANTEE ──────────────────────────────────────────────── */
.guarantee {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 4rem 2rem; text-align: center;
}
.guarantee h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy-deep); margin-bottom: 1rem;
}
.guarantee p { color: rgba(26,35,50,0.8); font-size: 1.1rem; max-width: 700px; margin: 0 auto 2rem; }
.guarantee-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.guarantee-stat { text-align: center; }
.guarantee-stat .stat-number { color: var(--navy-deep); font-size: 2.5rem; }
.guarantee-stat .stat-label { color: rgba(26,35,50,0.7); }

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem;
}
.service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 2.5rem; transition: all 0.3s;
}
.service-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.service-icon {
    width: 56px; height: 56px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.2rem;
    color: var(--white); margin-bottom: 0.8rem;
}
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem;
}
.testimonial-card {
    background: var(--white); border-radius: 12px; padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.06); position: relative; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial-text {
    font-size: 1.05rem; color: var(--navy); line-height: 1.8;
    margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--gold);
}
.testimonial-author-info h4 {
    font-family: 'Oswald', sans-serif; font-size: 0.95rem;
    color: var(--navy); margin-bottom: 0;
}
.testimonial-author-info p { font-size: 0.8rem; color: var(--medium-gray); margin: 0; text-transform: none; }
.testimonial-quote {
    position: absolute; top: 1.5rem; right: 2rem;
    font-size: 4rem; color: rgba(245,166,35,0.1);
    font-family: Georgia, serif; line-height: 1;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-text h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--medium-gray); margin-bottom: 1.2rem; font-size: 1.05rem; }
.about-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.value-item {
    background: var(--white); padding: 1.2rem; border-radius: 8px;
    border-left: 3px solid var(--gold);
}
.value-item h4 {
    font-family: 'Oswald', sans-serif; font-size: 0.95rem;
    color: var(--navy); margin-bottom: 0.3rem;
}
.value-item p { font-size: 0.85rem; color: var(--medium-gray); margin: 0; }

.about-image {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    border-radius: 12px; padding: 3rem; min-height: 450px;
    display: flex; flex-direction: column; justify-content: center;
    border: 1px solid rgba(245,166,35,0.15); position: relative; overflow: hidden;
}
.about-image::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.1), transparent);
}
.about-image .highlight {
    font-family: 'Oswald', sans-serif; font-size: 5rem;
    color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
}
.about-image .highlight-label {
    color: rgba(255,255,255,0.6); font-size: 1.1rem; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 2rem;
}
.about-feature {
    display: flex; align-items: center; gap: 0.8rem;
    color: rgba(255,255,255,0.8); margin-bottom: 0.8rem; font-size: 1rem;
}
.about-feature-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(245,166,35,0.15); display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.75rem; flex-shrink: 0;
}

/* ── SERVICE AREA ───────────────────────────────────────────── */
.area-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.area-text h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.area-text p { color: var(--medium-gray); margin-bottom: 1.2rem; font-size: 1.05rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.area-tag {
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem;
    font-weight: 600; color: var(--navy); transition: all 0.3s;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }
.area-map {
    background: var(--navy-deep); border-radius: 12px; min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 0.9rem;
    text-align: center; padding: 2rem;
    border: 1px solid rgba(245,166,35,0.15);
}
.area-map-note {
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.area-map-note span:first-child { font-size: 3rem; }
.area-map code { background: rgba(245,166,35,0.15); padding: 0.1rem 0.4rem; border-radius: 3px; font-size: 0.8rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px; margin-bottom: 0.8rem; overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(245,166,35,0.3); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.3rem 1.5rem; cursor: pointer; background: none;
    border: none; width: 100%; text-align: left;
    font-family: 'Oswald', sans-serif; font-size: 1.05rem;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.03em; font-weight: 600;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(245,166,35,0.1); display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem; flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.3rem;
    color: var(--medium-gray); font-size: 0.95rem; line-height: 1.8;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(245,166,35,0.02) 0px, transparent 1px, transparent 100px),
        repeating-linear-gradient(0deg, rgba(245,166,35,0.02) 0px, transparent 1px, transparent 100px);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band .btn { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info > p { color: var(--medium-gray); margin-bottom: 2rem; font-size: 1.05rem; }
.contact-detail {
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-icon {
    width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.contact-detail h4 {
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    color: var(--navy); margin-bottom: 0.2rem;
}
.contact-detail p { color: var(--medium-gray); font-size: 0.95rem; margin: 0; }
.contact-detail a { color: var(--gold); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
    background: var(--white); border-radius: 12px; padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.contact-form h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.4rem;
    color: var(--navy); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.3rem; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(0,0,0,0.12);
    border-radius: 6px; font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem; transition: border-color 0.3s, box-shadow 0.3s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
    background: var(--navy-deep); padding: 4rem 2rem 0; color: rgba(255,255,255,0.6);
}
.footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 6px;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.9rem; transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }

.footer-col h4 {
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    color: var(--white); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1.2rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-col a {
    display: block; color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.9rem; padding: 0.25rem 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-bottom {
    margin-top: 3rem; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin-left: auto; margin-right: auto;
    font-size: 0.8rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--gold); }

/* ── WHATSAPP ───────────────────────────────────────────────── */
.whatsapp-btn {
    position: fixed; bottom: 2rem; left: 2rem;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999; transition: all 0.3s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
    position: absolute; left: 70px; top: 50%; transform: translateY(-50%);
    background: var(--white); color: var(--navy); padding: 0.5rem 1rem;
    border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    white-space: nowrap; box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--navy-deep);
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s; z-index: 999;
    box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { max-width: 500px; margin: 3rem auto 0; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--navy-deep); padding: 1rem 2rem;
        border-bottom: 3px solid var(--gold);
    }
    .fleet-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .guarantee-stats { gap: 1.5rem; }
    .about-values { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .trust-bar-inner { gap: 1.5rem; }
    .section { padding: 4rem 1.5rem; }
    .whatsapp-btn { bottom: 1.5rem; left: 1.5rem; width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 42px; height: 42px; }
}
@media (max-width: 480px) {
    .hero { padding-top: 100px; min-height: 90vh; }
    .hero h1 { font-size: 2rem; }
    .stat-card { padding: 1.2rem; }
    .stat-number { font-size: 2.2rem; }
    .hero-stats { gap: 0.8rem; }
    .footer-links { flex-direction: column; gap: 0.5rem; }
}
