/*
Theme Name: Titan Car Miami Black Gold
Description: Templete for titancarmiami.com
Author: Volodymyr 
Version: 1.0
*/
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --yellow: #FFD700;
      --yellow-hover: #E5C100;
      --black: #000000;
      --white: #ffffff;
      --dark-surface: #111111;
      --dark-footer: #0a0a0a;
      --gray-bg: #F5F5F5;
      --green: #25D366;
      --green-hover: #128C7E;
      --gold: #D4AF37;
      --gold-dark: #B8952A;
      --dark-gray: #1a1a1a;
      --gradient: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    img { max-width: 100%; display: block; }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #111; }
    ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

    /* ================= NAVIGATION ================= */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 0;
      transition: all 0.5s ease;
    }
    .nav.scrolled {
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(12px);
      padding: 12px 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.5px;
      font-style: italic;
    }
    .logo span { color: var(--white); }
    .logo .accent { color: var(--yellow); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.8);
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--yellow); }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav-phone {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s;
    }
    .nav-phone:hover { color: var(--yellow); }
    .nav-phone svg { width: 14px; height: 14px; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--yellow);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      background: var(--yellow-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    }
    .btn-primary-whatapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--green);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .btn-primary-whatapp:hover {
      background: var(--green-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(18, 140, 126,0.3);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border: 1px solid var(--white);
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .btn-outline:hover {
      background: var(--white);
      color: var(--black);
    }
    .btn-outline-yellow {
      border-color: var(--yellow);
      color: var(--yellow);
    }
    .btn-outline-yellow:hover {
      background: var(--yellow);
      color: var(--black);
    }

    .menu-toggle {
      display: none;
      color: var(--white);
      padding: 8px;
    }
    .menu-toggle svg { width: 24px; height: 24px; }
        .fleet-car {
            padding: 120px 5% 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .car-card {
            background: var(--dark-surface);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .car-card:hover {
            transform: translateY(-15px);
            border-color: var(--gold);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
        }

        .car-image {
            height: 150px;
            background: linear-gradient(45deg, var(--gold), var(--gold-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--black);
        }
        .car-image img{
            background-size: cover;      /* Заповнює весь блок */
            background-position: center; /* Центрує фото */
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .car-info {
            padding: 2rem;
        }

        .car-name {
            position: relative;
            font-size: 1.8rem;
            font-weight: 700;
            /* color: var(--gold); */
            color: var(--white);
            margin-bottom: 0.5rem;
            z-index: 20;
        }

        .car-price {
            font-size: 1.5rem;
            color: var(--yellow);
            font-weight: 600;
            margin-bottom: 1rem;
            margin-top: 1rem;
        }
        .car-info p {
            color: var(--yellow);
        }
                /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    /* ================= MOBILE MENU ================= */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: var(--black);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }
    .mobile-menu.active { opacity: 1; visibility: visible; }
    .mobile-menu a {
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--yellow); }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: heroZoom 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.15); }
      to { transform: scale(1); }
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
      z-index: 1;
    }

    /* Hero Marquee */
    .hero-marquee {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 100%;
      overflow: hidden;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      animation: fadeIn 1s ease 0.5s forwards;
    }
    .hero-marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marqueeScroll 20s linear infinite;
    }
    .hero-marquee-track span {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(80px, 15vw, 220px);
      font-weight: 700;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      padding: 0 20px;
      flex-shrink: 0;
    }
    @keyframes marqueeScroll {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      padding: 0 24px 80px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-label {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--yellow);
      margin-bottom: 16px;
      opacity: 0;
      animation: slideUp 0.8s ease 0.6s forwards;
    }
    .hero h1 {
      font-size: clamp(36px, 6vw, 80px);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 20px;
      opacity: 0;
      animation: slideUp 0.8s ease 0.75s forwards;
    }
    .hero h1 .accent { color: var(--yellow); }
    .hero p {
      font-size: clamp(14px, 1.2vw, 18px);
      color: rgba(255,255,255,0.75);
      max-width: 600px;
      margin-bottom: 32px;
      line-height: 1.7;
      opacity: 0;
      animation: slideUp 0.8s ease 0.9s forwards;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      opacity: 0;
      animation: slideUp 0.8s ease 1.05s forwards;
    }
    .hero-buttons svg { width: 18px; height: 18px; }

    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* ================= FLEET SECTION ================= */
    .fleet {
      background: var(--white);
      color: var(--black);
      padding: 100px 24px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--yellow);
      margin-bottom: 12px;
    }
    .section-label-secondary {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--black);
      margin-bottom: 12px;
      padding: 15px;
    }
    .section-label-secondary .accent { color: var(--yellow)}
    .section-title {
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 800;
      text-transform: uppercase;
    }
    .section-title .accent { color: var(--yellow); }


   

    /* ================= ABOUT SECTION ================= */
    .about {
      background: var(--black);
      color: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
    }
    .about-img {
      position: relative;
      overflow: hidden;
    }
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-content {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-content .section-label { color: var(--yellow); }
    .about-content h2 {
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 24px;
      line-height: 1.1;
    }
    .about-content h2 .accent { color: var(--yellow); }
    .about-text {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .about-text strong { color: var(--yellow); }

    /* Accordion */
    .accordion-item {
      border-bottom: 1px solid rgba(255,255,255,0.7);
      transition: all 0.3s;
    }
    .accordion-item.active {
      border-left: 3px solid var(--yellow);
      padding-left: 16px;
    }
    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      transition: color 0.3s;
    }
    .accordion-item.active .accordion-header { color: var(--yellow); }
    .accordion-header:hover { color: var(--yellow); }
    .accordion-header svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 12px;
    }
    .accordion-item.active .accordion-header svg { transform: rotate(180deg); }
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .accordion-item.active .accordion-body {
      max-height: 200px;
      padding-bottom: 18px;
    }
    .accordion-body p {
      font-size: 14px;
      line-height: 1.7;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
      padding-top: 32px;
    }

    .about-stats { text-align: center; }
    .about-stat-value {
      font-size: 32px;
      font-weight: 800;
      color: var(--white);
    }
    .about-stat-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.45);
      margin-top: 4px;
    }

    /* ================= SERVICES MARQUEE ================= */
    .services-marquee {
      background: var(--black);
      padding: 28px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
    }
    .services-marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marqueeFast 18s linear infinite;
    }
    .services-marquee-track span {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(18px, 2vw, 28px);
      font-weight: 600;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      padding: 0 16px;
      flex-shrink: 0;
      transition: color 0.3s;
    }
    .services-marquee-track span:hover { color: var(--yellow); }
    .services-marquee-track .star {
      color: var(--yellow);
      padding: 0 8px;
      font-size: 20px;
    }
    @keyframes marqueeFast {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }

    /* ================= FAQ ================= */
    .faq {
      background: var(--white);
      color: var(--black);
      padding: 100px 24px;
    }
    .faq-inner {
      max-width: 850px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.1);
      transition: all 0.3s;
      opacity: 0;
      transform: translateY(40px);
    }
    .faq-item.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    }
    .faq-item.active {
      border-left: 3px solid var(--yellow);
      padding-left: 20px;
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      cursor: pointer;
      gap: 16px;
    }
    .faq-question-text {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 600;
      color: rgba(0,0,0,0.85);
      transition: color 0.3s;
    }
    .faq-item.active .faq-question-text { color: var(--black); }
    .faq-question svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: rgba(0,0,0,0.3);
      transition: transform 0.3s, color 0.3s;
    }
    .faq-item.active .faq-question svg.icon-chevron {
      transform: rotate(180deg);
      color: var(--yellow);
    }
    .faq-item.active .faq-question svg.icon-q { color: var(--yellow); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding-bottom: 24px;
    }
    .faq-answer p {
      font-size: 14px;
      color: rgba(0,0,0,0.6);
      line-height: 1.7;
      padding-left: 30px;
    }

    /* ================= FOOTER ================= */
    .footer {
      background: var(--dark-footer);
      color: var(--white);
    }
    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 24px 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }
    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
    }
    .footer-title .accent { color: var(--yellow); }

    .footer-location {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      transition: color 0.3s;
    }
    .footer-location:hover { color: var(--yellow); }
    .footer-location svg {
      width: 16px;
      height: 16px;
      color: var(--yellow);
      flex-shrink: 0;
      margin-top: 3px;
    }
    .footer-location p { font-size: 14px; color: rgba(255,255,255,0.7); }
    .footer-location p:hover { color: var(--yellow); }

    .footer-phone {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      font-size: 15px;
      font-weight: 600;
      transition: color 0.3s;
    }
    .footer-phone:hover { color: var(--yellow); }
    .footer-phone svg { width: 16px; height: 16px; color: var(--yellow); }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .social-links a:hover {
      background: var(--yellow);
      color: var(--black);
    }
    .social-links a svg { width: 18px; height: 18px; }

    .footer-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .footer-links-grid a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      transition: color 0.3s;
    }
    .footer-links-grid a:hover { color: var(--yellow); }

    .footer-menu { display: flex; flex-direction: column; gap: 12px; }
    .footer-menu a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      transition: color 0.3s;
    }
    .footer-menu a:hover { color: var(--yellow); }

    .newsletter { margin-top: 24px; }
    .newsletter p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 10px;
    }
    .newsletter-form {
      display: flex;
    }
    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-right: none;
      border-radius: 4px 0 0 4px;
      color: var(--white);
      font-size: 13px;
      outline: none;
      transition: border-color 0.3s;
    }
    .newsletter-form input:focus { border-color: var(--yellow); }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button {
      padding: 12px 20px;
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 13px;
      border-radius: 0 4px 4px 0;
      transition: background 0.3s;
    }
    .newsletter-form button:hover { background: var(--yellow-hover); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      max-width: 1400px;
      margin: 0 auto;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }

    /* ================= SCROLL ANIMATIONS ================= */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .scroll-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .scroll-reveal-delay-1 { transition-delay: 0.1s; }
    .scroll-reveal-delay-2 { transition-delay: 0.2s; }
    .scroll-reveal-delay-3 { transition-delay: 0.3s; }
    .scroll-reveal-delay-4 { transition-delay: 0.4s; }
    .floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.whatsapp-btn {
  background: var(--green);
  color: #fff;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* ================= Cars page ================= */
.cars-gallery-cpt {
    padding: 100px 0;
    background: var(--dark-gray);
}

.container-cpt {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-cpt {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-cpt {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle-cpt {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cars-filter-cpt {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
}

.cars-grid-cpt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.car-card-cpt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
}

.car-card-cpt:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.car-image-cpt {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.car-image-cpt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-card-cpt:hover .car-image-cpt img {
    transform: scale(1.08);
}

.image-overlay-cpt {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.stock-badge-cpt {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge-cpt.available {
    background: rgba(76, 175, 80, 0.9);
}

.stock-badge-cpt.out {
    background: rgba(244, 67, 54, 0.9);
}

.car-info-cpt {
    padding: 2rem;
}

.car-header-cpt {
    margin-bottom: 1rem;
}

.car-name-cpt {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.car-year-cpt {
    color: #ccc;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-price-cpt {
    margin: 1.2rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.car-price-cpt strong {
    color: var(--gold);
    font-size: 1.8rem;
}

.car-desc-cpt {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.car-actions-cpt {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary-cpt {
    flex: 1;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary-cpt:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.stock-info-cpt {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive CPT */
@media (max-width: 768px) {
    .cars-grid-cpt {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .car-actions-cpt {
        flex-direction: column;
    }
    
    .btn-primary-cpt {
        flex: none;
    }
}
    /* ================= RESPONSIVE ================= */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .nav-cta .nav-phone { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .about-img { height: 350px; }
      .about-content { padding: 60px 40px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-cta .btn-primary { display: none; }
      .hero { min-height: 100dvh; }
      .hero-content { padding-bottom: 60px; }
      .hero h1 { font-size: 36px; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-outline { width: 100%; }
      .about-content { padding: 50px 24px; }
      .about-stats { grid-template-columns: 1fr; gap: 16px; }
      .about-stat { display: flex; align-items: center; justify-content: space-between; }
      .footer-main { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }

    @media (min-width: 769px) {
      .car-grid-mobile { display: none !important; }
    }
            /* Responsive */
    @media (max-width: 768px) {
        .cars-grid {
            grid-template-columns: 1fr;
        }
        .car-name {
            color: var(--white);
        }
        .car-image{
            height: 100px;
        }
        .car-image img {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
    }
    /* Utility */
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  