:root {
    --orange: #ff7a00;
    --bg-dark: #050714;
    --card-dark: #0d1126;
    --white: #ffffff;
    --gold: #ffcc00;
}

* { margin: 0; padding: 0; box-sizing: border-box; 
  font-family: 'Jura', sans-serif;  }
body { background: var(--bg-dark); color: var(--white); overflow-x: hidden; }

.hero { 
    height: 100vh; 
    width: 100%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: radial-gradient(circle, #1b2142 0%, #050714 100%); 
    position: relative; 
    overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  position: relative;
  padding: 20px 6%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.nav-search input {
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-text-wrapper { 
    position: absolute; 
    top: 120px; 
    left: 6%; 
    z-index: 10; 
}

.hero h1 { 
    font-size: 4.5rem; 
    margin-bottom: 5px; 
    text-transform: uppercase;
    font-weight: 700;
}

.main-car-container { 
    width: 100vw; 
    height: 90vh; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 5;
}

.model-wrapper {
    width: 100%;
    height: 100%;
}

model-viewer {
    width: 100%;
    height: 100%;
    outline: none;
    --poster-color: transparent;
}

.color-picker-sidebar {
    position: absolute;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.details-tab-wrapper {
    background-color: var(--bg-dark);
    padding-top: 50px;
}

.details-tab {
    background-color: #D66600; 
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 15px 60px 15px 80px;
    width: fit-content;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    text-transform: uppercase;
}

.car-details-orange {
    background-color: var(--orange);
    padding: 60px 6%;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-item {
    background: var(--bg-dark);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.detail-item:hover { transform: translateY(-5px); }

.detail-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.detail-item p {
    padding: 20px;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 1px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.dot.active { border-color: white; transform: scale(1.2); }
.dot.grey { background: #4b4d4e; }
.dot.red { background: #9b0000; }
.dot.white { background: #fdfdfd; }

.vt7-section { 
    padding: 100px 6%; 
    position: relative; 
    background: var(--bg-dark);
    overflow: hidden;
}

.vt7-layout { 
    display: grid; 
    grid-template-columns: 1.3fr 1fr; 
    gap: 60px; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
}

.vt7-video-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    transform: perspective(1500px) rotateY(-15deg) rotateX(5deg) scale(1.05);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 122, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tilted-video {
    width: 120%; 
    height: 100%;
    object-fit: cover;
    margin-left: -10%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 7, 20, 0.4), transparent, rgba(5, 7, 20, 0.4));
    pointer-events: none;
}

.glow-text {
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.tagline {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.vt7-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-big {
    background: var(--card-dark);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--orange);
}

.stat-big b { font-size: 1.8rem; line-height: 1; }
.stat-big small { font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; margin-top: 5px; }

.price-glow-box {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9e44 100%);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-dark);
    margin-bottom: 30px;
}

.p-left h3 { font-size: 2.2rem; }
.p-left p { font-size: 0.8rem; opacity: 0.8; }
.p-right { text-align: right; border-left: 1px solid rgba(0,0,0,0.1); padding-left: 20px; }
.p-right strong { font-size: 1.8rem; display: block; }

.button-row { display: flex; gap: 20px; }
.btn-solid { background: var(--orange); color: white; border: none; padding: 15px 35px; border-radius: 5px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-border { background: transparent; color: white; border: 1px solid white; padding: 15px 35px; border-radius: 5px; font-weight: 700; cursor: pointer; transition: 0.3s; }

.btn-solid:hover { background: #ff9e44; }
.btn-border:hover { background: rgba(255, 255, 255, 0.1); }

.perf-orange { background: var(--orange); padding: 100px 6%; text-align: center; }
.perf-dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--orange); margin-top: 50px; }
.perf-card-dark { background: var(--card-dark); padding: 80px 20px; transition: 0.3s; }
.perf-card-dark i { color: var(--orange); font-size: 2.8rem; margin-bottom: 25px; }
.perf-card-dark h3 { font-size: 1.8rem; margin-bottom: 10px; }

.stripes-divider { position: relative; width: 100%; height: 160px; background: var(--bg-dark); overflow: hidden; margin-top: -80px; z-index: 10; }
.stripe { position: absolute; width: 140%; height: 45px; left: -20%; background: repeating-linear-gradient(90deg, #fffdf2, #fffdf2 60px, var(--orange) 60px, var(--orange) 120px); }
.s1 { transform: rotate(-3deg); top: 50px; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.s2 { transform: rotate(3deg); top: 75px; z-index: 1; }

.overview-section { padding: 100px 6% 50px 6%; }
.content-card { background: var(--card-dark); padding: 60px; border-radius: 20px; border: 1px solid #1c2242; }
.overview-text { margin-bottom: 40px; color: #aaa; line-height: 1.6; }
.overview-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.info-sub-box { background: #050714; padding: 35px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); }
.info-sub-box h4 { color: var(--gold); margin-bottom: 25px; text-transform: uppercase; font-size: 1rem; letter-spacing: 1.5px; }

.feature-grid { display: flex; flex-direction: column; gap: 12px; }
.feature-box { 
    background: #0d1126; 
    padding: 18px 20px; 
    border-radius: 8px; 
    font-size: 0.95rem; 
    color: #eee; 
    border-left: 5px solid var(--orange); 
    transition: 0.3s;
}
.feature-box:hover { background: #151a36; transform: translateX(8px); }

.safety-area { padding: 50px 6%; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.safe-box { background: #050714; padding: 30px; margin-bottom: 15px; border-radius: 10px; border-left: 6px solid var(--orange); font-size: 1rem; }
.orange-star-bar { background: var(--orange); border-radius: 12px; padding: 40px; margin-top: 50px; text-align: center; }
.stars-centered { font-size: 2.5rem; letter-spacing: 5px; margin-bottom: 5px; }

.experience-section { background: #0b0e1a; padding: 120px 6%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.orange-text { color: var(--orange); font-weight: bold; letter-spacing: 2px; }
.contact-info-list { margin-top: 40px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.icon-circle { background: rgba(255, 81, 0, 0.15); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--orange); flex-shrink: 0; }
.info-item strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.info-item p { font-size: 0.85rem; color: #aaa; }

.social-links { margin-top: 40px; }
.social-icons { display: flex; gap: 20px; margin-top: 15px; font-size: 1.2rem; color: #888; }
.social-icons i { cursor: pointer; transition: 0.3s; }
.social-icons i:hover { color: var(--orange); }

.form-card { background: var(--orange); padding: 50px; border-radius: 20px; }
.form-card h3 { margin-bottom: 30px; font-size: 1.8rem; }
.form-row { display: flex; gap: 15px; }
.input-group { margin-bottom: 15px; flex: 1; }
.input-group label { display: block; font-size: 0.75rem; font-weight: bold; margin-bottom: 8px; color: rgba(255,255,255,0.9); }

input, textarea { width: 100%; padding: 14px; background: rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.1); color: white; border-radius: 6px; outline: none; }
textarea { height: 110px; resize: none; }

.submit-btn { 
    width: 100%; background: var(--bg-dark); color: white; padding: 20px; border: none; font-weight: bold; 
    cursor: pointer; text-transform: uppercase; border-radius: 35px; margin-top: 15px; letter-spacing: 1px; transition: 0.3s; 
}
.submit-btn:hover { background: #000; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

footer { padding: 40px 6%; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; opacity: 0.5; font-size: 0.8rem; }

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablets and smaller desktops (1024px and below) */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    
    .nav-links { gap: 25px; }
    
    .vt7-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vt7-video-container {
        height: 400px;
        transform: perspective(1500px) rotateY(-10deg) rotateX(3deg) scale(1.02);
    }
    
    .glow-text { font-size: 2.8rem; }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .perf-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 6%;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .hero-text-wrapper {
        top: 100px;
        left: 5%;
        right: 5%;
    }
    
    .navbar {
        padding: 15px 5%;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 12px;
    }
    
    .nav-search input {
        width: 120px;
        padding: 6px 12px;
    }
    
    .color-picker-sidebar {
        right: 3%;
        padding: 15px 8px;
        gap: 15px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .details-tab {
        font-size: 1.2rem;
        padding: 12px 40px 12px 5%;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-item img {
        height: 200px;
    }
    
    .vt7-section {
        padding: 60px 5%;
    }
    
    .vt7-video-container {
        height: 300px;
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .tilted-video {
        width: 100%;
        margin-left: 0;
    }
    
    .glow-text {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .vt7-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .stat-big {
        padding: 20px;
    }
    
    .stat-big b { font-size: 1.5rem; }
    
    .price-glow-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .p-left h3 { font-size: 1.8rem; }
    .p-right { 
        border-left: none; 
        border-top: 1px solid rgba(0,0,0,0.1); 
        padding-left: 0; 
        padding-top: 20px;
        text-align: center;
    }
    
    .button-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-solid, .btn-border {
        padding: 12px 25px;
        width: 100%;
    }
    
    .perf-orange {
        padding: 60px 5%;
    }
    
    .perf-dark-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .perf-card-dark {
        padding: 50px 20px;
    }
    
    .perf-card-dark i {
        font-size: 2rem;
    }
    
    .perf-card-dark h3 {
        font-size: 1.4rem;
    }
    
    .stripes-divider {
        height: 120px;
        margin-top: -60px;
    }
    
    .stripe {
        height: 35px;
    }
    
    .overview-section {
        padding: 60px 5% 30px 5%;
    }
    
    .content-card {
        padding: 30px;
    }
    
    .info-sub-box {
        padding: 25px;
    }
    
    .safety-area {
        padding: 40px 5%;
    }
    
    .orange-star-bar {
        padding: 30px;
    }
    
    .stars-centered {
        font-size: 2rem;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .form-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 30px 5%;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .hero h1 { 
        font-size: 1.8rem; 
    }
    
    .hero-text-wrapper {
        top: 80px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-search input {
        width: 100%;
    }
    
    .main-car-container {
        height: 70vh;
    }
    
    .color-picker-sidebar {
        right: 2%;
        padding: 12px 6px;
        gap: 12px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .details-tab {
        font-size: 1rem;
        padding: 10px 30px 10px 5%;
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    }
    
    .car-details-orange {
        padding: 40px 5%;
    }
    
    .detail-item img {
        height: 180px;
    }
    
    .detail-item p {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .vt7-section {
        padding: 40px 5%;
    }
    
    .vt7-video-container {
        height: 250px;
    }
    
    .glow-text {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .stat-big b { font-size: 1.3rem; }
    .stat-big small { font-size: 0.65rem; }
    
    .p-left h3 { font-size: 1.5rem; }
    .p-right strong { font-size: 1.5rem; }
    
    .btn-solid, .btn-border {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .perf-orange {
        padding: 40px 5%;
    }
    
    .perf-card-dark {
        padding: 40px 15px;
    }
    
    .perf-card-dark i {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .perf-card-dark h3 {
        font-size: 1.2rem;
    }
    
    .perf-card-dark p {
        font-size: 0.9rem;
    }
    
    .overview-section {
        padding: 40px 5% 20px 5%;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .info-sub-box {
        padding: 20px;
    }
    
    .info-sub-box h4 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-box {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .safety-area {
        padding: 30px 5%;
    }
    
    .safe-box {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .orange-star-bar {
        padding: 25px;
    }
    
    .stars-centered {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .experience-section {
        padding: 60px 5%;
        gap: 40px;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .info-item strong {
        font-size: 0.85rem;
    }
    
    .info-item p {
        font-size: 0.8rem;
    }
    
    .social-icons {
        gap: 15px;
        font-size: 1rem;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .form-card h3 {
        font-size: 1.3rem;
    }
    
    .input-group label {
        font-size: 0.7rem;
    }
    
    input, textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    footer {
        font-size: 0.75rem;
        padding: 25px 5%;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .hero h1 { 
        font-size: 1.5rem; 
    }
    
    .glow-text {
        font-size: 1.4rem;
    }
    
    .nav-links a {
        font-size: 11px;
    }
    
    .details-tab {
        font-size: 0.9rem;
        padding: 8px 20px 8px 5%;
    }
    
    .p-left h3 { font-size: 1.3rem; }
    .p-right strong { font-size: 1.3rem; }
    
    .form-card h3 {
        font-size: 1.2rem;
    }
}