* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --buttonBg-color: rgb(254, 254, 254);
    --text-color: #64748b;
    --button-color: rgb(0, 112, 240);
    --search-bar: rgb(223, 223, 223);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --header-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    --banner-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #f8fafc, #eceeef, #e9eaef);
}

/* Enhanced Professional Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}



.logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.menu a {
    text-decoration: none;
}

.menu button {
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.15);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.menu button:hover {
    background: rgba(30, 64, 175, 0.08);
    color: var(--button-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.25);
}

.menu button:last-child {
    background: var(--button-color);
    color: white;
    border: 1px solid var(--button-color);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.menu button:last-child:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

/* Enhanced Professional Banner with Spotlights */
.banner {
    background: var(--banner-bg);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 50px 80px;
}



.banner::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: 
        conic-gradient(from 0deg at 30% 70%, 
            transparent 0deg, 
            rgba(16, 16, 39, 0.845) 60deg, 
            transparent 120deg,
            rgba(59, 107, 184, 0.514) 180deg,
            transparent 240deg,
            rgba(29, 50, 97, 0.952) 300deg,
            transparent 360deg
        );
    z-index: 2;
    animation: rotate-spotlight 20s linear infinite;
} 

@keyframes rotate-spotlight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional spotlight elements */
.banner .spotlight-1 {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 4s ease-in-out infinite;
}

.banner .spotlight-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

.banner .spotlight-3 {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 4s ease-in-out infinite 1s;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.banner .left {
    position: relative;
    z-index: 3;
}


.banner .left h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}



.banner .left p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.5);
}

/* Enhanced Media Container */
.banner .right {
    position: relative;
    z-index: 3;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-container {
    position: relative;
    width: 100%;
    height: 90%;
    border-radius: 24px;
    overflow: hidden;
   background: var(--gradient-primary)
}

.media-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.media-container:hover::before {
    left: 100%;
}



/* Background Image */
/* .media-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 1;
    transform: scaleX(1.2) scaleY(1.2) rotate(85deg);
    filter: brightness(1) contrast(0.3) saturate(2);
} */

/* Video Overlay */
.media-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 75%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Floating Elements for Visual Interest */
.banner .floating-element {
    position: absolute;
    background: rgb(0, 112, 240);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.banner .floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.banner .floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.banner .floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Catalogue Section */
.catologue {
    position: relative;
    padding: 2rem 0;
}

.catologue .top {
    text-align: center;
    margin-bottom: 10px;
}

.catologue .top h2 {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.catologue .top p {
    font-size: 1.25rem;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 50px;
}

/* Filter Styles */
.filter {
    display: flex;
    margin-left: 3rem;
    margin-bottom: 80px;
}

.search {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--border-radius);
    padding: 18px 30px;
    box-shadow: var(--shadow);
    gap: 15px;
    min-width: 450px;
    border: 1px solid #e2e8f0;
}

.search img {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

.search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    color: #1e293b;
}

.search input::placeholder {
    color: var(--text-color);
}

/* Cars Grid - 3 in a row */
.cars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.car {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.car:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
}

.car-content {
    padding: 25px;
}

.car-content h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.middle {
    list-style: none;
    margin-bottom: 20px;
}

.parts {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.parts img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.price-section h4 {
    color: var(--button-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.home-btn {
    background: var(--button-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.home-btn:hover {
    background: #0056cc;
    transform: translateY(-2px);
}


/* contact form */

.container-contact {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Header */
.header-contact {
  text-align: center;
  margin-bottom: 3rem;
}

.header-contact h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.header-contact h1 span {
  color: #2563eb;
}

.header-contact p {
  color: #4b5563;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Card */
.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  min-height: 600px;
}

.form-section {
  padding: 2rem;
}

.form-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-section p {
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Inputs */
label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group .icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #2563eb;
  background: white;
}

/* Button */
button {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.02);
  background: linear-gradient(to right, #1e40af, #3730a3);
}

.icon-btn {
  width: 20px;
  height: 20px;
}

/* Image Section */
.image-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-section img {
  width: 35rem;
  object-fit: cover;
  border-radius: 1rem;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.image-section img:hover {
  transform: scale(1.05);
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.blue { background: #dbeafe; color: #2563eb; }
.green { background: #dcfce7; color: #16a34a; }
.purple { background: #ede9fe; color: #7c3aed; }

.info-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-card p {
  color: #6b7280;
  font-size: 0.95rem;
}


/* Footer Styles */
footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5rem;
    border-top: 1px solid rgb(179, 179, 179);
    color: black;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    /* filter: brightness(0) invert(1); */
}

.footer-logo h3 {
    /* color: white; */
    font-size: 1.5rem;
    font-weight: 700;
}

footer .left p {
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1rem;
}

footer .right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.content h4 {
    /* color: white; */
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.content ul {
    list-style: none;
}

.content li {
    margin-bottom: 15px;
    opacity: 0.8;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.content li:hover {
    opacity: 1;
    color: #60a5fa;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cars {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }
    
    .banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding: 80px 40px;
    }
    
    .banner .left h1 {
        font-size: 3.5rem;
    }
    
    .banner .right {
        height: 400px;
    }
    
    .media-container video {
        width: 90%;
        height: 80%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 24px;
        padding: 20px 24px;
    }
    
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .banner {
        padding: 60px 24px;
    }
    
    .banner .left h1 {
        font-size: 2.8rem;
    }
    
    .banner .right {
        height: 320px;
    }
    
    .media-container video {
        width: 90%;
        height: 80%;
    }
    
    .catologue .top h2 {
        font-size: 2.5rem;
    }
    
    .search {
        min-width: 300px;
        margin: 0 15px;
    }
    
    .cars {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    footer .right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .price-section {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .banner .left h1 {
        font-size: 2.2rem;
    }
    
    .banner .left p {
        font-size: 1.1rem;
    }
    
    .banner .right {
        height: 280px;
    }
    
    .catologue .top h2 {
        font-size: 2rem;
    }
    
    .search {
        min-width: 280px;
        padding: 15px 20px;
    }
    
    .car-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .media-container video {
        width: 95%;
        height: 85%;
    }
}

/* Responsive */
@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
  }
  .image-section {
    order: -1;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}


/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.car {
    animation: fadeInUp 0.6s ease forwards;
}

.car:nth-child(1) { animation-delay: 0.1s; }
.car:nth-child(2) { animation-delay: 0.2s; }
.car:nth-child(3) { animation-delay: 0.3s; }
.car:nth-child(4) { animation-delay: 0.4s; }
.car:nth-child(5) { animation-delay: 0.5s; }
.car:nth-child(6) { animation-delay: 0.6s; }