/* ============================================
   SCHNELL UND SICHER TRANSPORT
   Ana Stil Dosyası
   Mobil öncelikli, production-grade
   ============================================ */

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

:root {
    /* Marka Renkleri - Schnell & Sicher logo */
    --navy: #11426d;           /* Ana marka rengi - lacivert */
    --navy-dark: #0c3255;      /* Koyu lacivert */
    --navy-light: #1d5a92;     /* Açık lacivert */
    --gold: #d4a04a;           /* Altın vurgu */
    --gold-dark: #b8862f;      /* Koyu altın */
    --gold-light: #e8bc6a;     /* Açık altın */

    /* Geriye dönük uyumluluk için red değişkenleri lacivert olarak kalır */
    --red: #11426d;
    --red-dark: #0c3255;
    --red-light: #1d5a92;

    --black: #0a0a0a;
    --gray-900: #0f1e2e;       /* Lacivert ton ile uyumlu */
    --gray-800: #1e2a3a;
    --gray-700: #3a4654;
    --gray-600: #525f6e;
    --gray-500: #737f8c;
    --gray-400: #a3adb8;
    --gray-300: #d4d9de;
    --gray-200: #e5e8ec;
    --gray-100: #f5f6f8;
    --gray-50: #fafbfc;
    --white: #ffffff;
    --yellow: #d4a04a;         /* Altın sarısı */
    --green: #16a34a;

    /* Tipografi */
    --font-display: 'Oswald', 'Impact', sans-serif;
    --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;

    /* Spacing */
    --container: 1280px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);

    --header-height: 90px;
    --topbar-height: 40px;

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 1rem;
    color: var(--gray-900);
    text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; color: var(--gray-700); }

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

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

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

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 66, 109, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 74, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-dark {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}
.btn-dark:hover { background: var(--black); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--gray-900);
    border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* ============ ICONS ============ */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }
.icon-xs { width: 14px; height: 14px; flex-shrink: 0; }
.icon-lg { width: 48px; height: 48px; flex-shrink: 0; }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--black);
    color: var(--gray-300);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-300);
    transition: color var(--transition);
}
.topbar-item:hover { color: var(--white); }
.topbar-right { display: flex; gap: 0.75rem; }
.topbar-right a {
    color: var(--gray-400);
    display: inline-flex;
    padding: 4px;
    transition: color var(--transition);
}
.topbar-right a:hover { color: var(--red); }

@media (max-width: 767px) {
    .topbar-hide-mobile { display: none !important; }
    .topbar { font-size: 0.78rem; }
    .topbar-left { gap: 1rem; }
}

/* ============ HEADER ============ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 1px 0 var(--gray-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img { max-height: 60px; width: auto; }

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.logo-text small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

/* NAV */
.main-nav > ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.main-nav a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--gray-800);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active {
    color: var(--red);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    background: var(--red);
}

.nav-cta-mobile { display: none; }
.btn-header-cta { display: none; }
.nav-toggle { display: none; }
.nav-close { display: none; }

@media (min-width: 1024px) {
    .btn-header-cta { display: inline-flex; }
    .main-nav > ul > li:last-child { display: none; } /* CTA mobil */
}

@media (max-width: 1023px) {
    .nav-toggle {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        color: var(--gray-900);
        border-radius: var(--radius);
    }
    .nav-toggle:hover { background: var(--gray-100); }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    .main-nav.open { right: 0; }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav > ul > li { width: 100%; }
    .main-nav a {
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    .main-nav a.active::after { display: none; }
    .main-nav a.active { background: var(--gray-50); color: var(--red); }

    .nav-cta-mobile { display: block; margin-top: 1.5rem; padding: 1rem 0; }
    .nav-cta-mobile a { width: 100%; justify-content: center; }
    .nav-cta-mobile a.active { background: var(--red); color: var(--white); }

    .nav-close {
        display: grid;
        place-items: center;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        color: var(--gray-900);
        border-radius: var(--radius);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms;
        z-index: 998;
    }
    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open { overflow: hidden; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 4rem 0;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(212, 160, 74, 0.4) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 160, 74, 0.15);
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.hero h1 .accent { color: var(--red); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 640px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {
    color: var(--white);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}
.hero-stat span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
}

/* Hero Truck Illustration (fallback if no image) */
.hero-illustration {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 160, 74, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 90, 146, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, #0a1f33 0%, #11426d 50%, #0c3255 100%);
}
.hero-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.hero-illustration::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 160, 74, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

/* ============ SECTION BASICS ============ */
.section {
    padding: 5rem 0;
}
@media (max-width: 767px) {
    .section { padding: 3rem 0; }
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--red);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 700px;
}
.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-header.center .section-label { padding-left: 2.5rem; }
.section-header.center .section-label::before { left: -1rem; }

.section-lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}
.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    color: var(--red);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--gray-900);
}
.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ FEATURE STRIPE ============ */
.feature-stripe {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}
.feature-stripe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 74, 0.15);
    color: var(--red);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.feature-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}
.feature-item p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.9rem;
}

/* ============ ABOUT SPLIT ============ */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--red);
    z-index: -1;
    border-radius: var(--radius);
}
.about-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--red);
    z-index: -1;
    border-radius: var(--radius);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.highlight-item {
    padding: 1.25rem;
    background: var(--gray-50);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.highlight-item span {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checklist {
    margin: 1.5rem 0;
}
.checklist li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--gray-700);
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.checklist li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 1rem;
    width: 8px;
    height: 4px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
}

/* ============ FLEET ============ */
.fleet-section {
    background: var(--gray-50);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.fleet-img {
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-img-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--black) 100%);
    color: var(--red);
}
.fleet-img-fallback svg { width: 80px; height: 80px; opacity: 0.5; }

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
}

.fleet-body { padding: 1.5rem; }
.fleet-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.fleet-type {
    font-size: 0.85rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
}
.fleet-specs div strong {
    display: block;
    color: var(--gray-500);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 2px;
}
.fleet-specs div span { color: var(--gray-900); font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '“';
    position: absolute;
    top: -5rem;
    right: 5%;
    font-size: 25rem;
    font-family: Georgia;
    color: rgba(212, 160, 74, 0.08);
    line-height: 1;
    font-weight: 700;
}
.testimonials .section-label { color: var(--red); }
.testimonials h2 { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--yellow);
}
.testimonial-rating svg { width: 18px; height: 18px; fill: var(--yellow); }

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============ BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gray-300);
}
.blog-card-img {
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-800), var(--black));
    display: grid;
    place-items: center;
    color: var(--red);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
}

.blog-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
}
.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}
.blog-card h3 a { color: var(--gray-900); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { color: var(--gray-600); font-size: 0.95rem; flex: 1; }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 50%, rgba(212, 160, 74, 0.25) 0%, transparent 60%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 120px);
}
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-content p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.cta-actions .btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
    border-color: var(--gold-light);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo { margin-bottom: 1rem; }
.footer-logo img { max-height: 60px; background: rgba(255,255,255,0.95); padding: 6px 10px; border-radius: var(--radius); }
.logo-fallback-footer .logo-text strong { color: var(--white); }
.logo-fallback-footer .logo-text small { color: var(--gray-400); }

.footer-about p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-800);
    display: grid;
    place-items: center;
    color: var(--gray-400);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
}
.footer-col ul li {
    padding: 0.35rem 0;
}
.footer-col ul a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-400);
}
.footer-contact li svg {
    color: var(--red);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-legal p { margin: 0 0 0.5rem; color: var(--gray-500); }
.legal-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.legal-links a { color: var(--gray-400); font-size: 0.85rem; }
.legal-links a:hover { color: var(--white); }

.footer-credit { color: var(--gray-500); }
.footer-credit a { color: var(--red); }
.footer-credit a:hover { color: var(--white); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 500;
    transition: transform var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}
@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(212, 160, 74, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-display);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ============ FORMS ============ */
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
    .form-card { padding: 3rem; }
}

.form-group { margin-bottom: 1.25rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 575px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.form-label .req { color: var(--red); }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--red);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.form-alert.success {
    background: #f0fdf4;
    border-left: 4px solid var(--green);
    color: #15803d;
}
.form-alert.error {
    background: #fef2f2;
    border-left: 4px solid var(--red);
    color: #991b1b;
}

/* ============ MAP / CONTACT ============ */
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.contact-info h3 { color: var(--white); }
.contact-info-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-info-content strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.contact-info-content span,
.contact-info-content a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.contact-info-content a:hover { color: var(--white); }

.map-wrapper {
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ============ CONTENT ============ */
.content-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-700);
}
.content-body h2 { margin-top: 2.5rem; font-size: 1.75rem; }
.content-body h3 { margin-top: 2rem; font-size: 1.35rem; }
.content-body p { margin-bottom: 1.25rem; }
.content-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.content-body ul li {
    list-style: disc;
    padding: 0.25rem 0;
}

/* ============ SECTIONS VARIANTS ============ */
.section-dark {
    background: var(--gray-900);
    color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-gray { background: var(--gray-50); }

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.pagination a, .pagination span {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0 0.75rem;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-family: var(--font-display);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .current {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ============ HERO VARIANT 2 ============ */
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }

@media (max-width: 767px) {
    .hero { min-height: 500px; padding: 3rem 0; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; }
    .cta-box { flex-direction: column; align-items: flex-start; text-align: left; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { flex: 1; justify-content: center; min-width: 0; font-size: 0.85rem; padding: 0.8rem 1rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms, transform 600ms;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
