/**
 * Noleggio Ombra - Premium Car Rental
 * Stylesheet
 */

/* ========================================
   CSS Variables & Root
======================================== */
:root {
    /* Colors */
    --primary: #1A1A2E;
    --secondary: #16213E;
    --accent: #C9A227;
    --accent-hover: #D4AF37;
    --bg-dark: #0F0F1A;
    --bg-card: #1E1E32;
    --bg-footer: #0A0A14;
    --text-primary: #E8E8E8;
    --text-secondary: #A0A0B0;
    --border-subtle: #2A2A3E;
    --success: #4A7C59;
    --error: #8B3A3A;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-max: 1200px;
    --card-padding: 40px;
    --grid-gap: 30px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   Accessibility
======================================== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 500;
}

.skip-nav:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

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

.section-title {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

.label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent);
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    background: var(--bg-dark);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

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

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

@media (max-width: 992px) {
    .nav-menu,
    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ========================================
   Mobile Menu
======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    padding: 30px;
    transition: right var(--transition);
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--accent);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav a {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.7), rgba(15, 15, 26, 0.95));
}

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

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn-group {
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--accent);
}

.trust-item span {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* ========================================
   Page Hero (Inner Pages)
======================================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.page-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.95));
}

.page-hero-content {
    text-align: center;
}

.page-hero-title {
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-secondary);
}

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

.breadcrumb span {
    color: var(--text-secondary);
}

.breadcrumb .current {
    color: var(--accent);
}

/* ========================================
   Introduction Section
======================================== */
.intro-section {
    background: var(--bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.intro-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    z-index: -1;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }
}

/* ========================================
   Services Section
======================================== */
.services-section {
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.service-card {
    background: var(--primary);
    padding: var(--card-padding);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.service-list li i {
    color: var(--accent);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Fleet Section
======================================== */
.fleet-section {
    background: var(--bg-dark);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.vehicle-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.vehicle-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.vehicle-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(15, 15, 26, 0.9);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.vehicle-content {
    padding: 24px;
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.vehicle-spec i {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.vehicle-price {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Why Us Section
======================================== */
.why-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A2A3E' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    gap: 24px;
}

.why-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.why-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-content p {
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Process Section
======================================== */
.process-section {
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-subtle);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.step-number span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.process-step:hover .step-number {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.step-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9375rem;
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    background: var(--bg-card);
}

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

.testimonial-card {
    background: var(--primary);
    padding: var(--card-padding);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 24px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-info h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: var(--bg-card);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-content .btn-group {
    justify-content: center;
    margin-bottom: 24px;
}

.cta-info {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-info i {
    color: var(--accent);
    margin-right: 8px;
}

/* ========================================
   About Page - Company History
======================================== */
.history-section {
    background: var(--bg-dark);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.history-content h2 {
    margin-bottom: 24px;
}

.history-content p {
    margin-bottom: 24px;
    text-align: justify;
}

.history-image {
    position: sticky;
    top: 120px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-image {
        position: relative;
        top: 0;
        order: -1;
    }
}

/* ========================================
   Values Section
======================================== */
.values-section {
    background: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.value-card {
    text-align: center;
    padding: var(--card-padding);
    background: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.value-card h3 {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Team Section
======================================== */
.team-section {
    background: var(--bg-dark);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-intro p {
    font-size: 1.0625rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--border-subtle);
    transition: border-color var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--accent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========================================
   Partners Section
======================================== */
.partners-section {
    background: var(--primary);
    text-align: center;
}

.partners-intro {
    max-width: 700px;
    margin: 0 auto 40px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 60px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Services Page - Rental Options Detail
======================================== */
.rental-options-section {
    background: var(--bg-dark);
}

.rental-option {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid var(--border-subtle);
}

.rental-option:last-child {
    margin-bottom: 0;
}

.rental-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.rental-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
}

.rental-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.rental-header h3 {
    font-size: 1.75rem;
}

.rental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rental-description p {
    font-size: 1.0625rem;
}

.rental-details h4 {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.rental-details ul {
    margin-bottom: 24px;
}

.rental-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.rental-details li:last-child {
    border-bottom: none;
}

.rental-details li i {
    color: var(--accent);
    margin-top: 4px;
}

.rental-price {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    padding: 16px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-sm);
    text-align: center;
}

@media (max-width: 768px) {
    .rental-option {
        padding: 30px;
    }

    .rental-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Fleet Gallery Section
======================================== */
.fleet-gallery-section {
    background: var(--bg-card);
}

.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
}

.fleet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.fleet-vehicle-card {
    background: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition);
}

.fleet-vehicle-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.fleet-vehicle-image {
    height: 200px;
    overflow: hidden;
}

.fleet-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.fleet-vehicle-card:hover .fleet-vehicle-image img {
    transform: scale(1.05);
}

.fleet-vehicle-content {
    padding: 24px;
}

.fleet-vehicle-category {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.fleet-vehicle-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.fleet-vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(160, 160, 176, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.feature-tag i {
    font-size: 0.75rem;
}

.fleet-vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.fleet-vehicle-price {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.fleet-vehicle-cta {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.fleet-vehicle-cta:hover {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .fleet-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fleet-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Additional Services Section
======================================== */
.additional-services-section {
    background: var(--bg-dark);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.additional-service-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all var(--transition);
}

.additional-service-item:hover {
    border-color: var(--accent);
}

.additional-service-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.additional-service-item h4 {
    font-family: var(--font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.additional-service-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.additional-service-price {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 992px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    background: var(--primary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-align: left;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: 24px;
}

.faq-answer-content p {
    font-size: 0.9375rem;
}

/* ========================================
   Contact Page
======================================== */
.contact-section {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.contact-info-content h4 {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-hours {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.contact-hours h4 {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hours h4 i {
    color: var(--accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--text-primary);
}

/* ========================================
   Contact Form
======================================== */
.contact-form-container {
    background: var(--bg-card);
    padding: var(--card-padding);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    margin-bottom: 12px;
}

.contact-form-header p {
    font-size: 0.9375rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A0A0B0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--accent);
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

.form-submit {
    margin-top: 24px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* ========================================
   Locations Section
======================================== */
.locations-section {
    background: var(--bg-card);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.location-card {
    background: var(--primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.location-image {
    height: 160px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 24px;
}

.location-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.location-detail i {
    color: var(--accent);
    margin-top: 4px;
}

.location-detail p,
.location-detail a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Emergency Section
======================================== */
.emergency-section {
    background: var(--bg-dark);
}

.emergency-banner {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
}

.emergency-banner h3 {
    margin-bottom: 12px;
}

.emergency-banner > p {
    max-width: 600px;
    margin: 0 auto 24px;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.emergency-phone i {
    font-size: 1.5rem;
}

.emergency-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ========================================
   Legal Pages
======================================== */
.legal-section {
    background: var(--bg-dark);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 30px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    position: relative;
}

.legal-content ul li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: -16px;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content ol li::marker {
    color: var(--accent);
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--accent);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-info-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.legal-info-box h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.legal-info-box p {
    margin-bottom: 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-update {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-footer);
    padding: 80px 0 0;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Form Messages
======================================== */
.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message.success {
    background: rgba(74, 124, 89, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(139, 58, 58, 0.2);
    border: 1px solid var(--error);
    color: var(--error);
}

.form-message i {
    font-size: 1.25rem;
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-40 {
    margin-top: 40px;
}

.hidden {
    display: none !important;
}

/* Honeypot field */
.hp-field {
    position: absolute;
    left: -9999px;
}
