/* ==========================================================================
   GENERALPROTECCIONCARS - MAIN STYLESHEET
   Premium Apple-style design with security-focused palette
   ========================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Security Premium */
    --black: #000000;
    --obsidian: #0a0e15;
    --graphite: #12171f;
    --steel: #1a2332;
    --slate: #2a3444;
    --silver: #8a95a5;
    --platinum: #c5cdd9;
    --white: #ffffff;
    --off-white: #f5f5f7;

    /* Accent Colors */
    --gold: #c9a961;
    --gold-bright: #e0bd76;
    --gold-dark: #9d7f3e;
    --accent-blue: #3a5f8a;
    --accent-red: #b91c1c;
    --accent-green: #16a34a;

    /* Overlays */
    --overlay-light: rgba(255, 255, 255, 0.05);
    --overlay-hover: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing & Layout */
    --container-max: 1280px;
    --nav-height: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--white);
    background-color: var(--obsidian);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SELECTION ===== */
::selection {
    background-color: var(--gold);
    color: var(--black);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
    background: var(--slate);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(10, 14, 21, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-apple);
}

.navbar.scrolled {
    background: rgba(10, 14, 21, 0.92);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.logo-text {
    font-weight: 500;
}

.logo-accent {
    color: var(--gold);
    font-weight: 600;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--platinum);
    border-radius: 6px;
    transition: all 0.2s var(--ease-apple);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
    background: var(--overlay-light);
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    font-weight: 500;
    margin-left: 12px;
}

.nav-cta:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-apple);
    border-radius: 2px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s var(--ease-apple);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-apple);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: var(--overlay-light);
    color: var(--white);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--overlay-hover);
    border-color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-height) 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(58, 95, 138, 0.15), transparent 50%),
        linear-gradient(180deg, var(--obsidian) 0%, var(--black) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float var(--duration, 20s) linear infinite;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    to {
        transform: translateY(-100px) translateX(var(--drift, 50px));
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--overlay-light);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
}

.hero-title {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
}

.hero-line-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--platinum);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 60px;
    border-top: 1px solid var(--border-subtle);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    position: absolute;
    right: -8px;
    top: 4px;
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--silver);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollIndicator 2s var(--ease-apple) infinite;
}

@keyframes scrollIndicator {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATEMENT SECTION ===== */
.statement {
    padding: 160px 0;
    background: var(--black);
    position: relative;
}

.statement-text {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 1100px;
}

.statement-text span {
    display: block;
    color: var(--silver);
    transition: color 0.8s var(--ease-apple);
}

.statement-text span.revealed {
    color: var(--white);
}

.statement-accent {
    color: var(--gold) !important;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
    max-width: 760px;
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-desc {
    font-size: 18px;
    color: var(--platinum);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    background: linear-gradient(180deg, var(--black) 0%, var(--obsidian) 100%);
}

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

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-apple);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201, 169, 97, 0.15);
}

.service-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-apple);
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
}

.service-card-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: auto;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card-large .service-title {
    font-size: 36px;
}

.service-desc {
    font-size: 15px;
    color: var(--platinum);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 440px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    transition: gap 0.3s var(--ease-apple);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-apple);
}

.service-link:hover {
    gap: 14px;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===== FLEET ===== */
.fleet {
    background: var(--obsidian);
}

.fleet-showcase {
    background: linear-gradient(135deg, var(--graphite), var(--steel));
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    overflow: hidden;
}

.fleet-nav {
    display: flex;
    gap: 4px;
    padding: 12px;
    border-bottom: 1px solid var(--border-subtle);
    overflow-x: auto;
    scrollbar-width: none;
}

.fleet-nav::-webkit-scrollbar {
    display: none;
}

.fleet-tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--silver);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s var(--ease-apple);
}

.fleet-tab:hover {
    color: var(--white);
}

.fleet-tab.active {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.fleet-display {
    position: relative;
    min-height: 500px;
}

.fleet-panel {
    position: absolute;
    inset: 0;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-apple);
}

.fleet-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.fleet-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 2/1;
    background: var(--steel);
}

.fleet-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-svg {
    width: 100%;
    height: 100%;
}

.fleet-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.fleet-tagline {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.fleet-specs {
    margin-bottom: 32px;
}

.fleet-specs li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 15px;
    color: var(--platinum);
}

.fleet-specs li strong {
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    min-width: 160px;
}

/* ===== TECHNOLOGY ===== */
.technology {
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--black) 100%);
}

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

.tech-feature {
    padding: 40px;
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.4s var(--ease-apple);
    position: relative;
    overflow: hidden;
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease-apple);
}

.tech-feature:hover {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--graphite), var(--steel));
}

.tech-feature:hover::before {
    transform: translateX(100%);
}

.tech-feature-icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    margin-bottom: 24px;
}

.tech-feature-icon svg {
    width: 100%;
    height: 100%;
}

.tech-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.tech-feature-desc {
    color: var(--platinum);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
    background: var(--black);
    padding-bottom: 160px;
}

.process-steps {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.process-step {
    flex: 1;
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s var(--ease-apple);
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.process-number {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1;
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-desc {
    color: var(--platinum);
    font-size: 14px;
    line-height: 1.5;
}

.process-connector {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: auto 0;
    opacity: 0.4;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--gold);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(180deg, var(--black) 0%, var(--obsidian) 100%);
}

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

.testimonial {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.4s var(--ease-apple);
}

.testimonial:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
}

.testimonial-text {
    font-size: 16px;
    color: var(--platinum);
    line-height: 1.6;
    margin-bottom: 28px;
    min-height: 120px;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--silver);
}

/* ===== CTA ===== */
.cta {
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.15), transparent 70%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M60 60V0M0 0h60" fill="none" stroke="%23c9a961" stroke-width="0.5" opacity="0.08"/></svg>');
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.cta-desc {
    font-size: 20px;
    color: var(--platinum);
    font-weight: 300;
    margin-bottom: 48px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}

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

.footer-tagline {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--platinum);
    transition: all 0.3s var(--ease-apple);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
    color: var(--silver);
    font-size: 14px;
    transition: color 0.2s var(--ease-apple);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
    color: var(--silver);
}

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

.footer-legal a {
    color: var(--silver);
    transition: color 0.2s var(--ease-apple);
}

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

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-apple);
    animation: floatIn 0.5s var(--ease-apple) 1s backwards;
}

@keyframes floatIn {
    from { opacity: 0; transform: scale(0) rotate(-180deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.float-whatsapp svg {
    width: 28px;
    height: 28px;
}

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

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    padding: calc(var(--nav-height) + 100px) 0 80px;
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.1), transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(58, 95, 138, 0.1), transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.page-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.page-subtitle {
    font-size: 20px;
    color: var(--platinum);
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: var(--silver);
    transition: color 0.2s var(--ease-apple);
}

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

.breadcrumb-separator {
    color: var(--slate);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-large {
        grid-column: span 2;
    }
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        flex-direction: column;
    }
    .process-connector {
        width: 1px;
        height: 30px;
        margin: 0 auto;
    }
    .process-connector::after {
        right: -3px;
        top: auto;
        bottom: -6px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--gold);
    }
    .fleet-panel {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--obsidian);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease-apple);
        height: calc(100vh - var(--nav-height));
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .nav-link {
        padding: 16px;
        font-size: 18px;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card-large {
        grid-column: span 1;
    }
    .tech-features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    section {
        padding: 80px 0;
    }
    .statement {
        padding: 100px 0;
    }
    .fleet-panel {
        padding: 24px;
    }
    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
