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

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --accent: #00d4ff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #27ae60;
    --spacing: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}
.logo img {
  height: 100px;        /* adjust if needed */
  width: auto;
  display: block;
}
.logo svg {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.lang-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    background-color: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/078004eb-5b0c-45b0-a335-5633b0e16c5f copy.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("images/hero-bg.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
  rgba(0, 0, 0, 0.35),
  rgba(0, 0, 0, 0.35)
),
url("hero.jpg");

    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-full {
    width: 100%;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

/* ========================================
   FLEET SECTION
   ======================================== */
.fleet {
    background-color: var(--bg-light);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.car-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.car-image {
    /* Fleet card image area */
.car-image, .vehicle-image, .car-media {
  height: 220px;              /* adjust if you want taller/shorter */
  background: #fff !important;/* kills the gradient color */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  padding: 10px;
}

/* The actual car image */
.car-image img, .vehicle-image img, .car-media img,
.car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* keeps full car visible */
  display: block;
}

}

.car-badge {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--bg-white);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.car-details {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.label {
    color: var(--text-light);
    font-weight: 500;
}

.colors {
    color: var(--text-dark);
    font-weight: 500;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    background-color: var(--bg-white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-item {
    background-color: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}

.price-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.price-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.price-item.featured .price-tag {
    color: var(--bg-white);
}

.unit {
    font-size: 1rem;
}

.price-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.price-item.featured .price-features {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking {
    background-color: var(--bg-light);
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

    .pricing-cards .price-item.featured {
        transform: scale(1);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: -1;
    }

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

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

    .lang-toggle {
        order: -1;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        flex: 0 0 auto;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   ANIMATIONS
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .header,
    .footer,
    .hero-cta,
    .form-actions,
    .btn {
        display: none;
    }
}
.car-img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  display: block;
}
.site-logo img{
  object-fit: contain;
  transform: scale(1.2);
  transform-origin: left center;
}
.site-logo {
  display: flex;
  align-items: center;
}
/* ===== HEADER LOGO FIX (OVERRIDES) ===== */

.site-logo,
.logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}

}

  }
  header,
  .navbar,
  nav {
    min-height: 85px !important;
  }
}

/* ===== CLEAN HEADER + LOGO (FIXED) ===== */

header {
  padding: 10px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* left area (logo) */
.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

/* the logo itself */
.site-logo img {
  height: 70px;      /* good desktop size */
  width: auto;
  display: block;
}

/* keep menu + language on one line */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* prevent the menu from dropping */
@media (max-width: 768px) {
  .site-logo img {
    height: 86px;
  }
  .nav-links {
    gap: 14px;
  }
}
/* ===== MOBILE LOGO FIX ===== */
@media (max-width: 768px) {

  /* header spacing */
  header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* logo wrapper */
  .site-logo {
    display: flex;
    align-items: center;
  }

  /* BIGGER logo on mobile */
  .site-logo img {
    height: 92px;          /* 👈 key change (was too small before) */
    width: auto;
    max-width: 100%;
  }

}
/* =========================
   LOGO SIZE FIX (FINAL)
   ========================= */

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

/* Desktop logo */
.logo img,
.site-logo img {
  height: 100px;              /* bigger on desktop */
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transform: none !important; /* cancel any old scaling */
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  .logo img,
  .site-logo img {
    height: 110px;           /* bigger on mobile */
    max-width: 280px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .logo img,
  .site-logo img {
    height: 96px;            /* still big but not crazy */
    max-width: 260px;
  }
}
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* lighter overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
