/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #fee900;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #777777;
    --background-light: rgba(221, 221, 221, 0.87);
}

/* Screen Reader Only - Hide visually but keep accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

/* Keep all primary page sections aligned to full viewport width like hero */
.header,
.hero,
.brands,
.offers,
.services,
.why-choose-us,
.customer-testimonials,
.contact-us-cta,
.about-us,
.quick-links {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* ===== Header Styles ===== */
.header {
    background-color: #000;
    padding: 0px 40px;
    position: sticky;
    top: 0;
    width: 100%;
    overflow: visible;
    z-index: 1000;
    border-bottom: 2px solid #fee900;
}

/* ============================================
   SEARCH BAR
   Positioned in top center of header
   ============================================ */

.search-container{
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Search Toggle Button (Mobile Only) */
.search-toggle-btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.search-toggle-btn:hover {
    background-color: #ffed33;
    transform: translateX(-50%) scale(1.1);
}

.search-toggle-btn i {
    color: #000;
}

/* Login/Signup Buttons - Positioned in top right */
.auth-buttons{
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 10;
}

.button-bg{
    background-color: #fee900;
    color: #000;
    display: flex;
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    border-radius: 7px;
    border: 2px solid #000;
    height: 30px;
}

.login-bg{
    background-color: #000;
    color: #fee900;
    clip-path: polygon(100% 0, 0 0, 0 100%, 70% 100%);
    padding-left: 15px;
    padding-right: 25px;
    position: relative;
    z-index: 1;
    border: 2px solid #fee900;
    border-right: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.login-bg a{
    text-decoration: none;
    color: #fee900;
    display: inline-block;
}

.signup-bg{
    padding-right: 15px;
    /* padding-left: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.signup-bg a{
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.login-bg:hover,
.signup-bg:hover{
    transform: scale(1.09);
}

.search-form{
    display: flex;
    align-items: center;
}

.search-button{
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 25px 0 0 25px;
    border-right: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    height: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    margin-right: 0;
    z-index: 1;
}

.search-button i{
    color: #000;
    font-size: 16px;
}

.search-button:hover{
    background-color: #ffed33;
}

.search-input{
    width: 340px;
    padding: 10px 20px;
    border: 2px solid #000;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    height: 40px;
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -15px;
    z-index: 0;
}

.search-close-btn {
    display: none;
    background-color: transparent;
    border: none;
    color: #fee900;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.search-input::placeholder{
    color: #999;
}

.header-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    min-height: 120px;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.logo-container{
    flex: 0 0 auto;
}

.logo{
    width: 200px;
    height: 120px;
    object-fit: contain;
}

.nav{
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    padding-top: 50px;
    overflow: visible;
    min-width: 0;
    flex-shrink: 1;
}

.nav-link{
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover{
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 5px;
}


.nav-link-wrapper{
    position: relative;
    display: inline-block;
}

.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    width: max-content;
    min-width: fit-content;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 200px);
    padding: 20px 30px;
    display: flex !important;
    flex-direction: row;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.2);
    will-change: opacity, transform;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu-exterior {
    flex-direction: column;
    gap: 30px;
}

/* Below 1400px: Make GLAZE'S wrap to second row */
@media (max-width: 1399px) {
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: wrap;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(1),
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(2) {
        flex: 0 0 calc(50% - 30px);
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) {
        flex: 0 0 100%;
        margin-top: 0;
    }
}

/* At 1400px and above, make all three columns appear in one row */
@media (min-width: 1400px) {
    .dropdown-menu-exterior {
        flex-direction: row;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: nowrap;
        width: 100%;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column {
        flex: 0 0 auto;
    }
}

.dropdown-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Custom Scrollbar for Dropdown Menu */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.nav-link-wrapper:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    display: flex !important;
}

.dropdown-column{
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    max-width: calc((100vw - 140px) / 2);
    box-sizing: border-box;
}


.dropdown-heading{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* font-weight: bold; */
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-column:nth-child(3) .dropdown-heading {
    transition-delay: 0.25s;
}

.dropdown-column:nth-child(4) .dropdown-heading {
    transition-delay: 0.35s;
}

.dropdown-column:nth-child(5) .dropdown-heading {
    transition-delay: 0.45s;
}

/* Exterior dropdown specific - GLAZE'S in third column */
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-heading {
    transition-delay: 0.25s;
}

.nav-link-wrapper:hover .dropdown-menu .dropdown-heading,
.dropdown-menu:hover .dropdown-heading {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset on close - no delay for smooth reverse */
.dropdown-menu:not(:hover) .dropdown-heading {
    transition-delay: 0s;
}

.dropdown-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: max-content;
    padding: 0;
    margin: 0;
    pointer-events: auto;
}

/* Universal Dropdown List Items - Brick-by-Brick Animation */
.dropdown-list li {
    margin: 0;
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

/* Universal animation delays - works for all columns and items */
/* Column 1 items */
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(1) { transition-delay: 0.1s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(2) { transition-delay: 0.15s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(3) { transition-delay: 0.2s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(4) { transition-delay: 0.25s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(5) { transition-delay: 0.3s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(6) { transition-delay: 0.35s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(7) { transition-delay: 0.4s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(8) { transition-delay: 0.45s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(9) { transition-delay: 0.5s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(10) { transition-delay: 0.55s; }

/* Column 2 items */
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(1) { transition-delay: 0.2s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(2) { transition-delay: 0.25s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(3) { transition-delay: 0.3s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(4) { transition-delay: 0.35s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(5) { transition-delay: 0.4s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(6) { transition-delay: 0.45s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(7) { transition-delay: 0.5s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(8) { transition-delay: 0.55s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(9) { transition-delay: 0.6s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(10) { transition-delay: 0.65s; }

/* Column 3 items */
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(9) { transition-delay: 0.7s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(10) { transition-delay: 0.75s; }

/* Exterior dropdown specific - GLAZE'S items in third column/wrapped row */
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }

/* Activate animation on hover */
.nav-link-wrapper:hover .dropdown-menu .dropdown-list li,
.dropdown-menu:hover .dropdown-list li {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset animation on close - smooth reverse */
.dropdown-menu:not(:hover) .dropdown-list li {
    transition-delay: 0s;
}

.dropdown-list .list-out{
    color: var(--light-gray);
}
.dropdown-list a{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s ease;
    white-space: nowrap;
    width: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.dropdown-list a:hover{
    color: #fee900;
}

.dropdown-list .list-out:hover{
    color: var(--light-gray);
}
/* Social Icons */
.header-container .social-icons{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
    padding-top: 50px;
}

.header-container .social-icons .social-icon{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-container .social-icons .social-icon:hover{
    color: #fee900;

    transform: scale(1.1);
}

/* ===== Hamburger Menu Styles ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    margin-left: 15px;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fee900;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Menu Overlay */
.mobile-menu-overlay::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-overlay::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.mobile-menu-overlay {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fee900;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-menu-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-size: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 120px 30px 30px;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mobile-nav-link {
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 20px;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    word-wrap: break-word;
}

.mobile-nav-link:hover {
    color: #fff;
}

.mobile-nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown {
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #111;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-dropdown-content.active {
    max-height: 2000px;
}

.mobile-dropdown-section {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    width: 100%;
    box-sizing: border-box;
}

.mobile-dropdown-heading {
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 0 20px;
    word-wrap: break-word;
    box-sizing: border-box;
}

.mobile-dropdown-link-list-out{
    color: var(--light-gray);
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    text-decoration: none;
    padding: 10px 15px;
}

.mobile-dropdown-link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.mobile-dropdown-link:hover {
    color: #fee900;
    padding-left: 30px;
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 660px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}



.hero-car-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-car {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Changa One', cursive;
    font-weight: 500;
    font-size: 78px;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    box-sizing: border-box;
}

.hero-quote {
    position: absolute;
    left: 43px;
    bottom: 100px;
    max-width: calc(100% - 86px);
    z-index: 5;
    padding-right: 20px;
    box-sizing: border-box;
}

.hero-quote p {
    font-family: 'Poppins', sans-serif;
    font-weight: 650;
    font-size: 24px;
    line-height: 50px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.quote-mark {
    color: var(--yellow);
    font-size: 36px;
}

.cta-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    background: var(--yellow);
    color: var(--black);
    padding: 12px 40px;
    border-radius: 24px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 17px;
    z-index: 5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ===== Brands Section ===== */
.brands {
    background: #000000;
    padding: 10px 0;
    overflow: hidden;
}

.brands-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 30px;
}

.brands-container {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scroll-brands 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.brands-wrapper:hover .brands-container {
    animation-play-state: paused;
}

/* Move by exactly half the container (one full set of logos) for seamless loop */
@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* ~70% height; avoids transform:scale (scale does not shrink flex item width) */
.brand-logo--sm {
    height: 49px;
}

/* ===== Offers Section ===== */
.offers {
    background: var(--black);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    text-align: left;
    text-transform: capitalize;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
    margin-left: 100px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: calc(100% - 100px);
}

    .offers-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 20px;
        box-sizing: border-box;
    }

.offer-card {
    position: relative;
    width: 220px;
    height: 470px;
    /* border: 1px solid var(--white); */
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Active Offers: horizontal scroll on mobile only */
@media (max-width: 1024px) {
    .offers-grid {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        user-select: none;
    }
    .offers-grid::-webkit-scrollbar {
        display: none;
    }
    .offers-grid.is-dragging .offer-card:hover {
        transform: none;
    }
    .offers-grid .offer-card {
        flex-shrink: 0;
    }
}

/* Center Active Offers for 1024px landscape tablets */
@media (min-width: 1024px) and (max-width: 1200px) {
    .offers-grid {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0 20px;
    }
}

/* ===== Services Section ===== */
.services {
    background: var(--black);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    scroll-margin-top: 140px;
}

.services-grid {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
}
.services-grid::-webkit-scrollbar {
    display: none;
}
.services-grid.is-dragging .service-card:hover {
    transform: none;
}

.service-card {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
    transition: transform 0.3s;
    background-color: #333333;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-5px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding-top: 0px;
    padding-bottom: 6px;
    font-size: 15px;
    color: var(--white);
    text-align: center;
}


/* ============================================
   WHY CHOOSE US SECTION
   Background Color: #333333
   ============================================ */

   .why-choose-us{
    background-color: #333333; 
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
.why-moto{
    padding-top:10px;
    margin:10px;
    border-radius: 10px;
    text-align: center;
    background-color: #000;
}
.content1,.content2{
    font-family: 'Poppins';
    color:#fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.8;
    font-weight: 700;
    padding-bottom: 10px;
}
.why-heading{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 20px;
    color:#fff;
    letter-spacing: 1.5px;
    font-weight: 400;
}
.change-why{
    font-size: 24px;
}
.statistics-choose{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin: 10px;
    padding-left: 5px;
    padding-right: 5px;
}
.finished_proj,.testimonials{
    width: 100%;
    padding: 20px 0px;
    background-color: #000;
    color:#fee900;
    font-family: 'Changa One';
    font-style: italic;
    letter-spacing: 1.5px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
}
.finished_proj .fa-solid,
.testimonials .fa-solid{
    padding-right: 10px;
    color: #fee900;
    font-weight: 400;
}
.monthly-enq,.working-hrs{
    width: 100%;
    padding:20px 0px;   
    background-color: #fee900;
    color:#000;
    font-family: 'Changa One';
    font-style: italic;
    letter-spacing: 1.5px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
}
.monthly-enq .fa-solid,
.working-hrs .fa-solid{
    padding-right: 10px;
    color: #000;
    font-weight: 600;
}

/* ============================================
   CUSTOMER TESTIMONIALS SECTION
   ============================================ */

.customer-testimonials{
    background-color: #ECF0F9;
    display: flex;
    flex-direction: column;
    margin-bottom:15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.heading-reviews{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    padding: 8px 0px;
    color:#000;
}
.review-container{
    padding: 20px 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.review-line{
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}
.review-scroll-wrapper{
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 0;
}
.review-scroll-content{
    display: flex;
    gap: 20px;
    will-change: transform;
}
.review-scroll-content .reviews-from-user{
    flex-shrink: 0;
}
.reviews-from-user{
    font-family: 'Poppins', sans-serif;
    background-color: #1F262E;
    color:#fff;
    border-radius: 10px;
    padding:8px 15px 8px 15px;
    min-width: 400px;
    max-width: 400px;
    box-sizing: border-box;
}
.review-name{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.review-com{
    padding-top: 3px;
    padding-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
}
.fa-star{
    color:#fee900;
}

/* ============================================
   INFINITE SCROLL ANIMATIONS
   Creates seamless scrolling effect for testimonials
   ============================================ */

/* Animation: Scroll from right to left */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animation: Scroll from left to right */
@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.scroll-right-to-left .review-scroll-content {
    animation: scroll-right-to-left 30s linear infinite;
}

.scroll-left-to-right .review-scroll-content {
    animation: scroll-left-to-right 30s linear infinite;
}

/* Pause animation on hover for better user experience */
.review-scroll-wrapper:hover .review-scroll-content {
    animation-play-state: paused;
}

/* ============================================
   CONTACT US SECTION
   Contains contact information and enquiry form
   ============================================ */

.contact-us-cta{
    position: relative;
    background-image: url('../asset/contact_us_bg_1.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    scroll-margin-top: 140px;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 20px;
    padding-bottom:0px;
    gap: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}


.contact-us-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 1;
}

.contact-us-cta > * {
    position: relative;
    z-index: 2;
}
.heading-contact-us{
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    padding: 20px 20px;
}
.fa-phone,.fa-envelope,.fa-calendar,.fa-clock,.fa-location-dot{
    color:#999999;
    font-size: 25px;
    padding-top:10px;
    padding-left: 20px;
}
.phone-link,.email-link,.address-link{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.moto-phoneno,.moto-emailid,.moto-days-open,.moto-timings-open,.location-address{
    font-family: 'Poppins';
    color:#fff;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.moto-location {
    display: flex;
    align-items: flex-start;
    padding-bottom: 30px;
}

.location-address {
    display: block;
    text-align: left;
    padding-left: 20px;
    line-height: 1;
}

.address-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.address-line-1,
.address-line-2,
.address-line-3 {
    display: block;
    padding-left: 0;
    text-align: left;
    margin: 0;
}
.email-contact,.opening-calender,.moto-timings,.moto-location,.maps-image{
    padding-top:25px;
}
.changes-in-days-open,.maps-image{
    padding-left:70px; 
}
.call-to-action{
    flex: 1;
    max-width: 50%;
    min-width: 0;
    z-index: 2;
    box-sizing: border-box;
}

.details-form{
    background-color: #fff;
    font-family: 'Poppins';
    font-size: 16px;
    border-radius: 15px;
    padding: 30px;
    flex: 0 0 35%;
    max-width: 35%;
    min-width: 320px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    align-self: flex-start;
    margin-top: 30px;
    box-sizing: border-box;
}

.form-heading{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: #000;
    margin: 0 0 10px 0;
}

.form-subtitle{
    font-family: 'Poppins';
    font-size: 16px;
    color: #444444;
    margin: 0 0 25px 0;
}

.enquiry-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input{
    font-family: 'Poppins';
    font-size: 16px;
    padding: 15px;
    background-color: #111111;
    color: #fff;
    border: none;
    border-radius: 8px;
    outline: none;
}

.form-input::placeholder{
    color: #fff;
    opacity: 0.8;
}

.form-textarea{
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn{
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    background-color: #fee900;
    color: #000;
    border: none;
    border-radius:50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover{
    transform: scale(1.05);
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-us{
    position: relative;
    background-color: #000;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.80);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    z-index: 1;
}

.about-us > * {
    position: relative;
    z-index: 2;
}
.about-us-heading{
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding: 20px 40px;
}
.about-us-content{
    font-family: 'Poppins';
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    padding-left:40px;
    padding-right:400px;
}


/* ============================================
   FOOTER SECTION
   ============================================ */

   .quick-links{
    background-color: #fff;
    padding: 60px 40px 20px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-webberg{
    display: inline-block;
    text-decoration: none;
    color: #0A6DFF;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer-webberg:hover{
    /* color: #0A2F63; */
    transform: scale(1.05);
    margin-left: 5px;
}
.footer-logo{
    flex: 0 0 150px;
    transition: transform 0.3s ease;
}
.footer-logo:hover{
    transform: scale(1.05);
}
.logo-img{
    max-width: 120px;
    height: auto;
    width: auto;
}

/* ============================================
   RESPONSIVE IMAGES AND MEDIA
   ============================================ */

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

.footer-section{
    flex: 0 0 150px;
}

.footer-heading{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 12px;
}

.footer-links a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: #fee900;
}

.footer-newsletter{
    flex: 0 0 280px;
}

.newsletter-label{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input::placeholder{
    color: #999;
}

.newsletter-btn{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.newsletter-btn:hover{
    background-color: #333;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 20px auto 0;
    padding-top: 20px;
}

.footer-copyright{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #000;
}

.footer-social{
    display: flex;
    gap: 20px;
}

.social-icon{
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover{
    color: #fee900;
}

@media (max-width: 1023px) {
    .contact-us-cta {
        flex-direction: column;
    }
    
    .call-to-action {
        max-width: 100%;
        width: 100%;
    }
    
    /* Remove details-form rule here - handled by tablet-specific query below */
    .about-us-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-us::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 1440px) {
    .hero {
        height: 575px;
    }

    .hero-car-wrapper {
        height: 100%;
        width: 100%;
    }

    .hero-quote {
        left: 43px;
        bottom: 100px;
        max-width: calc(100% - 86px);
    }
    .quote-mark {
        font-size: 20px;
    }

    .hero-quote p {
        bottom: 80px;
        font-size: 20px;
    }

    .hero-title {
        max-width: 95%;
        padding: 0 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Desktop 1024px (1024px - 1079px) */
@media (min-width: 1024px) and (max-width: 1079px) {
    html {
        font-size: 16px;
    }
    
    .why-choose-us {
        padding: 20px;
        flex-direction: column;
    }
    
    .why-moto {
        margin: 10px;
        padding: 25px 20px;
    }
    
    .why-heading {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .change-why {
        font-size: 24px;
    }
    
    .content1, .content2 {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 1.8;
        padding: 10px;
    }
    
    .statistics-choose {
        margin: 10px;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 16px;
        padding: 20px 0px;
        letter-spacing: 1.5px;
    }
    
    .review-line {
        overflow: hidden;
    }
    
    .reviews-from-user {
        min-width: 380px;
        max-width: 380px;
        padding: 7px 14px 7px 14px;
    }
    
    .review-name {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .review-com {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 30s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 30s;
    }
    
    /* Contact Us Section Desktop 1024px */
    .contact-us-cta {
        flex-direction: row;
        padding: 40px 20px;
    }
    
    .call-to-action {
        max-width: 50%;
    }
    
    .details-form {
        max-width: 33%;
        min-width: 320px;
    }

    .location-address {
        width: 100%;
        padding-left: 20px;
        text-align: left;
        line-height: 1;
    }
    
    .address-line-1,
    .address-line-2,
    .address-line-3 {
        display: block;
        padding-left: 0;
        text-align: left;
    }
    
    /* About Us Section Desktop 1024px */
    .about-us-content {
        padding-right: 200px;
    }
}

/* Desktop 1080px (1080px - 1919px) */
@media (min-width: 1080px) and (max-width: 1919px) {
    html {
        font-size: 16px;
    }
    
    .why-choose-us {
        padding: 20px;
        flex-direction: column;
    }
    
    .why-moto {
        margin: 10px;
        padding: 30px 25px;
    }
    
    .why-heading {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .change-why {
        font-size: 24px;
    }
    
    .content1, .content2 {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 1.8;
        padding: 8px;
    }
    
    .statistics-choose {
        margin: 10px;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 16px;
        padding: 22px 0px;
        letter-spacing: 1.5px;
    }
    
    .finished_proj .fa-solid,
    .testimonials .fa-solid,
    .monthly-enq .fa-solid,
    .working-hrs .fa-solid {
        font-size: 18px;
    }
    
    .review-line {
        overflow: hidden;
    }
    
    .reviews-from-user {
        min-width: 400px;
        max-width: 400px;
        padding: 8px 15px 8px 15px;
    }
    
    .review-name {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .review-com {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 30s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 30s;
    }
    
    /* Contact Us Section Desktop 1080px */
    .contact-us-cta {
        padding: 40px 30px;
    }
    
    /* About Us Section Desktop 1080px */
    .about-us-content {
        padding-right: 300px;
    }
}

/* 2K Resolution (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    html {
        font-size: 18px;
    }
    
    body {
        background-color: #000;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .why-choose-us {
        padding: 30px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .why-moto {
        flex: 0 0 auto;
        margin: 10px;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    .statistics-choose {
        flex: 0 0 auto;
        margin: 10px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .why-heading {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .change-why {
        font-size: 26px;
    }
    
    .content1, .content2 {
        font-size: 16px;
        letter-spacing: 1.5px;
        line-height: 1.8;
        padding: 15px;
    }
    
    .statistics-choose {
        flex: 1;
        margin: 10px;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 18px;
        padding: 30px 20px;
        letter-spacing: 1.5px;
    }
    
    .finished_proj .fa-solid,
    .testimonials .fa-solid,
    .monthly-enq .fa-solid,
    .working-hrs .fa-solid {
        font-size: 20px;
        padding-right: 15px;
    }
    
    .review-line {
        overflow: hidden;
    }
    
    .reviews-from-user {
        min-width: 450px;
        max-width: 450px;
        padding: 9px 18px 9px 18px;
    }
    
    .review-name {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .review-com {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 35s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 35s;
    }
    
    .customer-testimonials {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-us-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-us {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .quick-links {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* 4K Resolution (2560px and above) */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }
    
    body {
        background-color: #000;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .why-choose-us {
        padding: 40px;
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .statistics-choose {
        flex: 0 0 auto;
        margin: 15px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .why-moto {
        flex: 0 0 auto;
        margin: 15px;
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    .why-heading {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .change-why {
        font-size: 28px;
    }
    
    .content1, .content2 {
        font-size: 18px;
        letter-spacing: 2px;
        line-height: 2;
        padding: 20px;
    }
    
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 20px;
        padding: 40px 20px;
        letter-spacing: 2px;
    }
    
    .finished_proj .fa-solid,
    .testimonials .fa-solid,
    .monthly-enq .fa-solid,
    .working-hrs .fa-solid {
        font-size: 24px;
        padding-right: 20px;
    }
    
    .customer-testimonials {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .review-container {
        padding: 30px 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .review-line {
        overflow: hidden;
        gap: 25px;
        width: 100%;
    }
    
    .reviews-from-user {
        min-width: 500px;
        max-width: 500px;
        padding: 15px 25px 15px 25px;
    }
    
    .review-name {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .review-com {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 40s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 40s;
    }
    
    .contact-us-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 50px 40px;
    }
    
    .about-us {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-us-content {
        padding-right: 400px;
        padding-bottom: 40px;
    }
    
    .quick-links {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media(max-width: 456px) {
    .moto-location .location-address {
        font-size: 13px;
    }
}
/* ===== Desktop 1024px (1024px - 1079px) ===== */
@media (max-width: 1024px) {
    .header {
        padding: 0px 35px;
        overflow: visible;
    }

    .header-container {
        overflow: visible;
        max-width: 100%;
        gap: 10px;
        min-height: 114px;
    }

    .logo {
        width: 190px;
        height: 114px;
        flex-shrink: 0;
    }

    .nav {
        display: flex;
        gap: 20px;
        min-width: 0;
        overflow: visible;
        flex-shrink: 1;
    }

    .nav-link-wrapper {
        overflow: visible;
    }

    .nav-link {
        font-size: 16px;
    }

    .dropdown-menu {
        max-width: calc(100vw - 70px);
        padding: 18px 25px;
        gap: 40px;
    }

    .dropdown-menu-exterior {
        gap: 25px;
    }

    .dropdown-row {
        gap: 40px;
    }

    .dropdown-column {
        max-width: calc((100vw - 200px) / 2);
        min-width: 180px;
    }

    .hamburger-menu {
        display: none;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
    }

    .search-input {
        width: 280px;
    }

    .search-toggle-btn {
        display: none;
    }

    .header-container .social-icons {
        gap: 15px;
        flex-shrink: 0;
        min-width: 0;
    }

    .header-container .social-icons .social-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .hero{
        height: 500px;
    }

    .hero-title {
        top:-1px;
        font-size: 70px;
        max-width: 95%;
        padding: 0 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-car-wrapper {
        height: 500px;
    }

    .hero-quote {
        left: 35px;
        right: 35px;
        bottom: 100px;
        max-width: calc(100% - 70px);
    }

    .quote-mark {
        font-size: 21px;
    }

    .hero-quote p {
        top:50px;
        font-size: 21px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 30px;
    }
    .section-title {
        font-size: 21px;
        margin-bottom: 25px;
        text-align: flex-start;
        margin-left: 20px;
        max-width: calc(100% - 40px);
        padding-right: 20px;
    }

    .services {
        padding: 30px 15px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        width: 180px;
    }

    .service-image-wrapper {
        height: 150px;
    }

    .service-title {
        font-size: 15px;
        text-align: center;
        padding: 0;
    }
}

/* Laptop and above: Recommended Services – left/right padding, equal spacing, centered cards */
@media (min-width: 1024px) {
    .services {
        padding: 48px 56px 56px 56px;
    }

    .services .section-title {
        margin-left: 0;
        margin-bottom: 40px;
        padding-right: 0;
    }

    .services-grid {
        justify-content: center;
        gap: 32px;
        padding: 0;
    }

    .service-card {
        border-radius: 8px;
    }

    .service-image-wrapper {
        border-radius: 8px 8px 0 0;
    }

    .service-title {
        margin-top: 0;
        /* padding: 6px 10px; */
        font-size: 15px;
    }
}

/* 1024-range fix: make Recommended Services span full row without side gutters */
@media (min-width: 1024px) and (max-width: 1200px) {
    .services {
        padding: 40px 24px 48px;
    }

    .services-grid {
        justify-content: space-between;
        gap: 16px;
        overflow-x: visible;
        padding: 0;
    }

    .service-card {
        width: calc((100% - 64px) / 5);
        max-width: 220px;
    }
}

/* Tablet Devices (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 15px;
    }
    
    .why-choose-us {
        padding: 20px;
        flex-direction: column;
    }
    
    .why-moto {
        margin: 8px;
        padding: 20px 15px;
    }
    
    .why-heading {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .change-why {
        font-size: 22px;
    }
    
    .content1, .content2 {
        font-size: 13px;
        letter-spacing: 1.5px;
        line-height: 1.8;
        padding: 8px;
    }
    
    .statistics-choose {
        margin: 8px;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 4px;
        padding-right: 4px;
    }
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 14px;
        padding: 18px 0px;
        letter-spacing: 1.5px;
    }
    
    .finished_proj .fa-solid,
    .testimonials .fa-solid,
    .monthly-enq .fa-solid,
    .working-hrs .fa-solid {
        padding-right: 10px;
        font-size: 18px;
    }
    
    .heading-reviews {
        font-size: 22px;
    }
    
    .review-container {
        padding: 15px 0;
    }
    
    .review-line {
        overflow: hidden;
        margin-bottom: 15px;
    }
    
    .review-scroll-wrapper {
        padding: 0;
    }
    
    .reviews-from-user {
        min-width: 350px;
        max-width: 350px;
        padding: 7px 14px 7px 14px;
    }
    
    .review-name {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .review-com {
        font-size: 12px;
        line-height: 1.35;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 28s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 28s;
    }
    
    /* Contact Us Section Tablet */
    .contact-us-cta {
        flex-direction: column;
        padding: 30px 20px;
        min-height: auto;
    }
    
    .contact-us-cta::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .call-to-action {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .moto-phoneno, .moto-emailid, .moto-days-open, .moto-timings-open, .location-address {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .location-address {
        text-align: left;
    }
    
    .fa-phone, .fa-envelope, .fa-calendar, .fa-clock, .fa-location-dot {
        font-size: 22px;
        padding-left: 18px;
    }
    
    .email-contact, .opening-calender, .moto-timings, .moto-location, .maps-image {
        padding-top: 18px;
    }
    
    .changes-in-days-open {
        padding-left: 60px;
    }
    
    .maps-image {
        padding-left: 0;
    }
    
    .details-form {
        flex: 0 0 auto;
        width: 550px;
        max-width: 550px;
        min-width: 320px;
        padding: 25px 20px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .maps-image iframe {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
    
    /* About Us Section Tablet */
    .about-us-heading {
        font-size: 22px;
        padding: 20px 30px;
    }
    
    .about-us-content {
        font-size: 15px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 25px;
    }
    
    .about-us::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Footer Tablet */
    .quick-links {
        padding: 50px 30px 20px;
    }
    
    .footer-main {
        flex-wrap: wrap;
        gap: 25px;
        display: flex;
    }
    
    .footer-logo {
        flex: 0 0 150px;
    }
    
    .footer-section {
        flex: 0 0 calc((100% - 150px - 75px) / 3);
        min-width: 150px;
    }
    
    .footer-newsletter {
        flex: 0 0 100%;
        margin-top: 10px;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* If screen is too narrow (768px - 900px), make footer sections 2 columns */
    @media (min-width: 768px) and (max-width: 900px) {
        .footer-section {
            flex: 0 0 calc((100% - 150px - 50px) / 2);
        }
    }
}

/* ===== Tablet Responsive (768px - 900px) ===== */
@media (min-width: 768px) and (max-width: 900px) {
    .header {
        padding: 0px 25px;
        overflow: visible;
    }

    .header-container {
        overflow: visible;
        max-width: 100%;
        gap: 8px;
        min-height: 96px;
    }

    .logo {
        width: 150px;
        height: 90px;
        flex-shrink: 0;
    }

    .nav {
        display: flex;
        gap: 20px;
        min-width: 0;
        overflow: visible;
        flex-shrink: 1;
        padding-top: 50px;
        max-width: calc(100% - 200px);
    }

    .nav-link-wrapper {
        overflow: visible;
        flex-shrink: 1;
    }

    .nav-link {
        font-size: 15px;
        white-space: nowrap;
    }

    .header-container .social-icons {
        gap: 10px;
        flex-shrink: 0;
        padding-top: 50px;
        min-width: 0;
    }

    .header-container .social-icons .social-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .dropdown-menu {
        max-width: calc(100vw - 50px);
        padding: 15px 20px;
        gap: 30px;
    }

    .dropdown-menu-exterior {
        gap: 20px;
    }

    .dropdown-row {
        gap: 30px;
    }

    .dropdown-column {
        max-width: calc((100vw - 150px) / 2);
        min-width: 150px;
    }
    
    /* Smaller tablets - adjust form width */
    .details-form {
        flex: 0 0 auto;
        width: 480px;
        max-width: 480px;
        min-width: 320px;
        padding: 25px 20px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

/* ===== Tablet Responsive (768px - 1023px) ===== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .header {
        padding: 0px 30px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 10px;
        min-height: 96px;
        flex-wrap: nowrap;
    }

    .logo {
        width: 160px;
        height: 96px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 12px;
    }

    .social-icons {
        gap: 15px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
        z-index: 10;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
    }

    .search-container .search-input {
        width: 250px;
        border-radius: 0 25px 25px 0;
        border: 2px solid #000;
        border-left: none;
        clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
        margin-left: -15px;
        padding-left: 20px;
    }

    .search-container .search-button {
        border-radius: 25px 0 0 25px;
        clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: none;
    }

    .search-toggle-btn {
        display: none;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 30px;
        z-index: 10;
    }

    .button-bg {
        font-size: 14px;
        height: 30px;
    }

    .login-bg {
        padding-left: 12px;
        padding-right: 20px;
    }

    .signup-bg {
        padding-right: 12px;
    }

    .quote-mark {
        font-size: 22px;
    }

    .hero-quote p {
        font-size: 22px;
    }

    .offers {
        padding: 30px 15px;
        overflow-x: hidden;
    }

    .section-title {
        font-size: 19px;
        margin-bottom: 25px;
        text-align: flex-start;
        margin-left: 20px;
        max-width: calc(100% - 40px);
        padding-right: 20px;
    }

    .offers-grid {
        padding: 0 10px;
    }

    .offer-card {
        width: 180px;
        height: 350px;
        flex-shrink: 0;
    }

    /* Services */
    .services {
        padding: 20px 15px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        width: 150px;
    }

    .service-image-wrapper {
        height: 120px;
    }

    .service-title {
        font-size: 15px;
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .header {
        padding: 0px 15px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 10px;
    }

    .logo {
        width: 120px;
        height: 72px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px;
        width: 20px;
        height: 20px;
    }

    .social-icons {
        gap: 5px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 12px;
        flex-shrink: 0;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .button-bg {
        font-size: 12px;
        height: 28px;
    }

    .login-bg {
        padding-left: 10px;
        padding-right: 15px;
    }

    .signup-bg {
        padding-right: 10px;
    }
    .engine-dec{
        line-height: 1.15;
        padding-bottom: 5px;
    }
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }

    .mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-nav {
        padding: 100px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .mobile-dropdown-heading {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobile-dropdown-link {
        font-size: 12px;
        padding: 8px 15px;
    }


    /* Hero */
    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 32px;
        top: 25px;
        white-space: nowrap;
        max-width: 95%;
        padding: 0 15px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-quote {
        left: 15px;
        right: 15px;
        bottom: 80px;
        max-width: calc(100% - 30px);
    }

    .quote-mark {
        font-size: 20px;
    }

    .hero-quote p {
        font-size: 20px;
        line-height: 24px;
    }

    .cta-button {
        font-size: 10px;
        padding: 10px 24px;
        bottom: 20px;
    }

    /* Brands */
    .brand-logo {
        height: 40px;
    }

    .brand-logo--sm {
        height: 28px;
    }

    /* Offers */
    .offers {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 19px;
        margin-bottom: 25px;
        text-align: left;
        margin-left: 20px;
    }

    .offer-card {
        width: 150px;
        height: 300px;
    }

    /* Services */
    .services {
        padding: 20px 15px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        width: 150px;
    }

    .service-image-wrapper {
        height: 120px;
    }

    .service-title {
        font-size: 15px;
        text-align: center;
        margin-top: -5px;
        padding: 0;
    }
    .why-choose-us {
        padding: 15px 0px;
        flex-direction: column;
    }
    
    .why-moto {
        margin: 5px;
        padding: 15px 5px;
    }
    
    .why-heading {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .change-why {
        font-size: 20px;
    }
    
    .content1, .content2 {
        font-size: 11px;
        letter-spacing: 1px;
        line-height: 1.6;
        padding: 5px;
    }
    
    .statistics-choose {
        margin: 0px;
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .finished_proj, .testimonials, .monthly-enq, .working-hrs {
        font-size: 10px;
        padding: 12px 8px;
        letter-spacing: 0.5px;
        white-space: normal;
        overflow: visible;
        word-wrap: break-word;
        text-align: center;
    }
    
    /* Mobile: Black background items */
    .finished_proj{
        background-color: #000;
        color: #fee900;
    }
    .testimonials {
        background-color: #fee900;
        color: #000;
    }
    
    /* Mobile: Yellow background items */
    .monthly-enq{
        background-color: #fee900;
        color: #000;
    } 
    .working-hrs {
        background-color: #000;
        color: #fee900;
    }
    
    .finished_proj .fa-solid{
        padding-right: 5px;
        font-size: 12px;
        color: #fee900;
    }

    .testimonials .fa-solid {
        padding-right: 5px;
        font-size: 12px;
        color: #000;
    }
    
    .monthly-enq .fa-solid{
        padding-right: 5px;
        font-size: 12px;
        color: #000;
    }

    .working-hrs .fa-solid {
        padding-right: 5px;
        font-size: 12px;
        color: #fee900;
    }
    
    .heading-reviews {
        font-size: 18px;
    }
    
    .review-container {
        padding: 10px 0;
    }
    
    .review-line {
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .review-scroll-wrapper {
        padding: 0;
    }
    
    .reviews-from-user {
        min-width: 320px;
        max-width: 320px;
        padding: 6px 12px 6px 12px;
    }
    
    .review-name {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .review-com {
        font-size: 11px;
        line-height: 1.3;
        padding-top: 2px;
        padding-bottom: 4px;
    }
    
    .scroll-right-to-left .review-scroll-content {
        animation-duration: 25s;
    }
    
    .scroll-left-to-right .review-scroll-content {
        animation-duration: 25s;
    }
    
    /* Contact Us Section Mobile */
    .contact-us-cta {
        flex-direction: column;
        padding: 20px 15px;
        min-height: auto;
    }
    
    .contact-us-cta::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .call-to-action {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .heading-contact-us {
        font-size: 20px;
        padding: 15px 10px;
    }
    
    .moto-phoneno, .moto-emailid, .moto-days-open, .moto-timings-open, .location-address {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .fa-phone, .fa-envelope, .fa-calendar, .fa-clock, .fa-location-dot {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .email-contact, .opening-calender, .moto-timings, .moto-location, .maps-image {
        padding-top: 15px;
    }
    
    .changes-in-days-open {
        padding-left: 52px;
    }
    
    .maps-image {
        padding-left: 0;
    }
    
    .moto-location {
        display: flex;
        align-items: flex-start;
    }
    
    .location-address {
        padding-left: 20px;
        line-height: 1;
        text-align: left;
    }
    
    .address-line-1,
    .address-line-2,
    .address-line-3 {
        display: block;
        padding-left: 0;
        text-align: left;
    }
    
    .maps-image iframe {
        width: 100%;
        height: 200px;
    }
    
    .details-form {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        padding: 15px 10px;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .form-heading {
        font-size: 22px;
        margin: 0 0 5px 0;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin: 0 0 15px 0;
    }
    
    .enquiry-form {
        gap: 10px;
    }
    
    .form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .form-submit-btn {
        padding: 6px 18px;
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* About Us Section Mobile */
    .about-us-heading {
        font-size: 20px;
        padding: 15px 20px;
    }
    
    .about-us-content {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    
    .about-us::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Footer Mobile */
    .quick-links {
        padding: 40px 20px 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section,
    .footer-newsletter {
        flex: 1;
        width: 100%;
    }
    
    .footer-logo {
        flex: 0 0 auto;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
    
    .logo-img {
        max-width: 100px;
    }
    
    .footer-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 458px) {
    .hero-title {
        font-size: 28px;
        font-weight: 500;
        white-space: nowrap;
        max-width: 95%;
        padding: 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .quote-mark {
        font-size: 17px;
    }

    .hero-quote p{
        font-size: 17px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .header {
        padding: 0px 15px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 10px;
    }

    .logo {
        width: 120px;
        height: 72px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px;
        width: 20px;
        height: 20px;
    }

    .social-icons {
        gap: 2px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 12px;
        flex-shrink: 0;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .button-bg {
        font-size: 12px;
        height: 28px;
    }

    .login-bg {
        padding-left: 10px;
        padding-right: 15px;
    }

    .signup-bg {
        padding-right: 10px;
    }
    
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }

    .mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-nav {
        padding: 100px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .mobile-dropdown-heading {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobile-dropdown-link {
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 28px;
        
        top: 25px;
        white-space: nowrap;
        max-width: 95%;
        padding: 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-quote {
        left: 15px;
        right: 15px;
        bottom: 70px;
        max-width: calc(100% - 30px);
    }
    .quote-mark {
        font-size: 14px;
    }

    .hero-quote p {
        font-size: 14px;
        line-height: 20px;
    }

    .cta-button {
        font-size: 10px;
        padding: 10px 24px;
        bottom: 15px;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-logo--sm {
        height: 28px;
    }

    .offers {
        padding: 30px 15px;
        overflow-x: hidden;
    }

    .section-title {
        font-size: 17px;
        margin-bottom: 25px;
        text-align: left;
        margin-left: 20px;
        max-width: calc(100% - 40px);
        padding-right: 20px;
    }

    .offers-grid {
        padding: 0 10px;
        gap: 15px;
    }

    .offer-card {
        width: 115px;
        height: 275px;
        flex-shrink: 0;
    }

    .services {
        padding: 15px 10px;
    }

    .services-grid {
        gap: 15px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .service-card {
        width: 120px;
        flex-shrink: 0;
    }

    .service-image-wrapper {
        height: 90px;
    }

    .service-title {
        font-size: 15px;
        text-align: center;
        margin-top: -5px;
        padding: 0;
    }
}

/* ===== Ultra-Wide Display (2560px and above) ===== */
@media (min-width: 2560px) {
    body {
        font-size: 18px;
    }

    /* Header Styles */
    .header {
        padding: 0px 80px;
    }

    .header-container {
        min-height: 160px;
        max-width: 2400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .logo {
        width: 280px;
        height: 160px;
    }

    .nav {
        gap: 50px;
        padding-top: 60px;
    }

    .nav-link {
        font-size: 24px;
    }

    .auth-buttons {
        right: 80px;
        top: 20px;
    }

    .button-bg {
        font-size: 20px;
        height: 40px;
        border-radius: 10px;
    }

    .login-bg {
        padding-left: 20px;
        padding-right: 35px;
    }

    .signup-bg {
        padding-right: 20px;
    }

    .search-container {
        left: 52%;
        top: 20px;
    }

    .search-input {
        width: 480px;
        padding: 14px 28px;
        font-size: 18px;
        height: 52px;
    }

    .search-button {
        padding: 14px 28px;
        height: 52px;
    }

    .search-button i {
        font-size: 20px;
    }

    .header-container .social-icons {
        gap: 30px;
        padding-top: 60px;
    }

    .header-container .social-icons .social-icon {
        font-size: 28px;
    }

    /* Dropdown Menus */
    .dropdown-menu {
        padding: 30px 50px;
        gap: 80px;
        max-width: calc(100vw - 160px);
    }

    .dropdown-menu-exterior {
        gap: 40px;
    }

    .dropdown-row {
        gap: 80px;
    }

    .dropdown-column {
        min-width: 280px;
        max-width: calc((100vw - 400px) / 2);
    }

    .dropdown-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .dropdown-list {
        gap: 16px;
    }

    .dropdown-list a {
        font-size: 18px;
    }

    /* Hero Section */
    .hero {
        height: 900px;
    }

    .hero-title {
        font-size: 110px;
        top: 60px;
        letter-spacing: 4px;
        -webkit-text-stroke: 3px var(--white);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }

    .hero-quote {
        left: 80px;
        bottom: 140px;
        max-width: calc(100% - 160px);
        padding-right: 40px;
    }

    .hero-quote p {
        font-size: 32px;
        line-height: 64px;
    }

    .quote-mark {
        font-size: 48px;
    }

    .cta-button {
        padding: 18px 60px;
        font-size: 24px;
        border-radius: 32px;
        bottom: 60px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    /* Brands Section */
    .brands {
        padding: 20px 0;
    }

    .brands-wrapper {
        padding: 0 50px;
    }

    .brands-container {
        gap: 70px;
    }

    .brand-logo {
        height: 100px;
    }

    .brand-logo--sm {
        height: 70px;
    }

    /* Offers Section */
    .offers {
        padding: 40px 80px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 34px;
        margin-bottom: 50px;
        margin-left: 0;
        padding-right: 40px;
        letter-spacing: 2.5px;
    }

    .offers-grid {
        max-width: 1800px;
        gap: 90px;
        padding: 0 40px;
    }

    .offer-card {
        width: 320px;
        height: 680px;
        border-radius: 10px;
        border: 2px solid var(--white);
    }

    /* Services Section */
    .services {
        padding: 40px 80px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .services-grid {
        max-width: 2000px;
        gap: 120px;
        padding: 0 40px;
    }

    .service-card {
        width: 320px;
        border-radius: 10px;
    }

    .service-image-wrapper {
        height: 240px;
        border-radius: 10px;
    }

    .service-title {
        font-size: 24px;
        margin-top: -15px;
    }
}
