/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image {
    height: 90px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
    object-fit: contain;
}

.header.scrolled .logo-image {
    height: 150px;
}

.company-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.company-name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .company-name {
    font-size: 24px;
}

.company-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c41e3a;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .company-tagline {
    font-size: 12px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .hamburger-line {
    background: #000;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active-link {
    color: #c41e3a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
    background: #c41e3a;
}

.btn-enquiry {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.btn-enquiry:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background picture {
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 35%, rgba(255,255,255,0) 70%);
    display: flex;
    align-items: center;
}

.container-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text-stack {
    display: flex;
    flex-direction: column;
    gap: -8px;
}

.hero-word {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Arial Black', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.hero-word:hover {
    letter-spacing: -3px;
    color: #c41e3a;
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
}

.hero-sub-line {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* Brand Intro Section */
.brand-intro {
    padding: 120px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-heading:hover::after {
    width: 100px;
}

.section-heading.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.highlight-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 16px;
    border-left: 2px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    border-left-color: #c41e3a;
    padding-left: 24px;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: fill;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image img:hover {
    transform: scale(1.02);
}

/* Brand Logos Section */
.brand-logos {
    padding: 80px 0;
    background: #fafafa;
    overflow: hidden;
}

.logos-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
}

.logos-scroll {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: none;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: none;
}


.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Product Range Section */
.product-range {
    padding: 120px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #f0f0f0;
}

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    padding: 24px 24px 12px;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-title {
    color: #c41e3a;
}

.product-card:hover .product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 40px;
    height: 2px;
    background: #c41e3a;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 40px;
    }
}

.product-desc {
    font-size: 14px;
    color: #666;
    padding: 0 24px 24px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vehicle Compatibility Section */
.vehicle-compatibility {
    padding: 120px 0;
    background: #fafafa;
}

.vehicle-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.vehicle-card {
    flex: 1;
    min-width: 180px;
    border: 2px solid #e5e5e5;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
}

.vehicle-card:hover {
    border-color: #c41e3a;
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.12);
}

.vehicle-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-icon {
    color: #c41e3a;
    transform: scale(1.1);
}

.vehicle-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-name {
    color: #c41e3a;
}

/* Quality Standards Section */
.quality-standards {
    padding: 120px 0;
    background: #fff;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.standard-block {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    cursor: pointer;
}

.standard-block:hover {
    transform: translateY(-6px);
}

.standard-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.standard-block:hover .standard-icon {
    color: #c41e3a;
    transform: scale(1.15);
}

.standard-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.standard-block:hover .standard-title {
    color: #c41e3a;
}

.standard-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Visual Strip Section */
.visual-strip {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-strip:hover .strip-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.strip-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-strip:hover .strip-title {
    transform: translateY(-5px);
}

.strip-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-strip:hover .strip-subtitle {
    opacity: 1;
}

/* Brand Values Section */
.brand-values {
    padding: 120px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.value-block {
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
}

.value-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #f0f0f0;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-block:hover .value-title {
    color: #c41e3a;
}

.value-block:hover .value-title::after {
    width: 60px;
}

.value-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: #1a1a1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo-image {
    height: 150px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    gap: 6px;
}

.logo-bold {
    color: #fff;
    font-weight: 700;
}

.logo-light {
    color: #999;
    font-weight: 400;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c41e3a;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c41e3a;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #c41e3a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: #c41e3a;
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
    color: #c41e3a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .container-hero {
        padding: 0 30px;
    }
    
    .hero-word {
        font-size: 85px;
        letter-spacing: -4px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .vehicle-cards {
        gap: 20px;
    }
    
    .vehicle-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .logos-track {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .container-hero {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
        background: transparent;
    }
    
    .header.scrolled {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header .container {
        flex-direction: row;
        gap: 0;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo-image {
        height: 75px;
        filter: none;
    }
    
    .header.scrolled .logo-image {
        height: 60px;
    }
    
    .company-name {
        font-size: 20px;
        letter-spacing: 1.5px;
        font-weight: 900;
    }
    
    .header.scrolled .company-name {
        font-size: 18px;
    }
    
    .company-tagline {
        font-size: 11px;
        letter-spacing: 1px;
        font-weight: 700;
    }
    
    .header.scrolled .company-tagline {
        font-size: 10px;
    }
    
    /* Show Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        padding: 80px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        color: #000;
    }
    
    .nav-link::after {
        bottom: 0;
    }
    
    .btn-enquiry {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .hero {
        min-height: 600px;
        height: 100vh;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-word {
        font-size: 60px;
        letter-spacing: -3px;
    }
    
    .hero-subtitle {
        gap: 4px;
    }
    
    .hero-sub-line {
        font-size: 12px;
        letter-spacing: 3px;
        font-weight: 600;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image img {
        height: 300px;
        border-radius: 12px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        border-radius: 12px 12px 0 0;
        height: 220px;
    }
    
    .vehicle-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .vehicle-card {
        flex: 1;
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-block {
        border-radius: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-image {
        height: 100px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .brand-intro,
    .product-range,
    .vehicle-compatibility,
    .quality-standards,
    .brand-values {
        padding: 60px 0;
    }
    
    .brand-logos {
        padding: 60px 0;
    }
    
    .visual-strip {
        height: 300px;
        background-attachment: scroll;
    }
    
    .strip-title {
        font-size: 36px;
    }
    
    .strip-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .container-hero {
        padding: 0 15px;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-image {
        height: 65px;
        filter: none;
    }
    
    .header.scrolled .logo-image {
        height: 55px;
    }
    
    .company-name {
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 900;
    }
    
    .header.scrolled .company-name {
        font-size: 16px;
    }
    
    .company-tagline {
        font-size: 10px;
        letter-spacing: 0.8px;
        font-weight: 700;
    }
    
    .header.scrolled .company-tagline {
        font-size: 9px;
    }
    
    .hero-word {
        font-size: 48px;
        letter-spacing: -2px;
    }
    
    .hero-sub-line {
        font-size: 11px;
        letter-spacing: 2.5px;
        font-weight: 600;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .strip-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .strip-subtitle {
        font-size: 16px;
    }
    
    .logos-track {
        gap: 30px;
    }
    
    .logo-item {
        width: 140px;
        height: 70px;
    }
    
    .nav {
        width: 100%;
        padding: 80px 30px;
    }
    
    .btn-enquiry {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-image {
        border-radius: 16px 16px 0 0;
    }
    
    .intro-image img {
        border-radius: 16px;
    }
    
    .value-block {
        padding: 25px 20px;
    }
    
    .vehicle-card {
        padding: 25px 15px;
    }
    
    .footer-logo-image {
        height: 80px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-legal-link {
        font-size: 12px;
    }
}

/* Overlay for mobile menu */
@media (max-width: 768px) {
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}