:root {
    --primary: #ffae00;
    --primary-dark: #ffae00;
    --primary-light: #e0f4fc;
    --accent: #ffae00;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --text: #334155;
    --text-light: #94a3b8;
    --text-dark: #1e293b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --font: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* ========================================
   HEADER 
   ======================================== */
.header {
    background: var(--white);
    padding: 12px 0;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--border);
}

.logo-img {
    width: 70px;
    height: auto;
}

/* Navigation */
.nav-menu ul {
    gap: 0;
}

.nav-menu ul li a {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: var(--transition);
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary);
}

.nav-menu ul li a.active {
    color: var(--primary);
    font-weight: 700;
}

/* Header Contact Button */
.btn-contact-now {
    background: var(--primary);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(2, 168, 230, 0.3);
}

.btn-contact-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(2, 168, 230, 0.4);
    color: var(--white);
}

/* ========================================
   HERO SECTION 
   ======================================== */
.hero-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border);
    border-radius: 20px;
    margin: 20px;
    margin-bottom: 0;
}

.hero-inner {
    background: #fafbfc;
    padding: 63px 0 63px;
    position: relative;
    overflow: hidden;
}

/* Social Sidebar */
.hero-social-sidebar {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
    z-index: 30;
    left: -50px;
}

.hero-social-sidebar a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 13px;
    transition: all 0.3s ease;
    background: var(--white);
}

.hero-social-sidebar a:hover,
.hero-social-sidebar a.social-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(2, 168, 230, 0.4);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.95);
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.hero-car-wrapper {
    text-align: center;
    padding: 0 80px;
}

.hero-car-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s ease;
    position: relative;
    left: 279px;
}

.hero-slide.active .hero-car-img {
    animation: carSlideIn 0.6s ease forwards;
}

@keyframes carSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Badge */
.hero-floating-badge {
    position: absolute;
    top: 20px;
    right: 60px;
    background: var(--dark-2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 25;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-floating-badge i {
    color: var(--primary);
}

/* Slider Dots */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    z-index: 25;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(2, 168, 230, 0.3);
}

.hero-arrow-left {
    left: 15px;
}

.hero-arrow-right {
    right: 15px;
}

/* ========================================
   CHOOSE SECTION 
   ======================================== */
.choose-section {
    padding: 60px 0;
    background: var(--white);
}

.choose-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-highlight {
    color: var(--primary);
}

.choose-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   BRAND TICKER 
   ======================================== */
.brand-ticker-section {
    background: var(--bg);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-ticker {
    overflow: hidden;
    position: relative;
}

.brand-ticker-track {
    display: flex;
    gap: 50px;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

.brand-ticker-item {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   EXPLORE / DREAM CARS SECTION 
   ======================================== */
.explore-section {
    background: var(--bg);
    padding: 80px 0;
}

.explore-heading {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explore-desc {
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
}

/* Dream Car Card */
.dream-car-card {
    background: var(--white);
    border-radius: 14px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dream-car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    border-color: transparent;
}

.dream-car-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dream-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dream-car-card:hover .dream-car-img img {
    transform: scale(1.06);
}

.dream-car-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.dream-car-fav:hover {
    background: var(--primary);
    color: var(--white);
}

.dream-car-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dream-car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.dream-car-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.dream-car-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.dream-car-info {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 14px 0;
    line-height: 1.5;
}

.dream-car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.btn-order {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 168, 230, 0.35);
}

.dream-car-fav-sm {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dream-car-fav-sm:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   SERVICES SECTION 
   ======================================== */
.services-section {
    background: var(--white);
    padding: 80px 0;
}

.services-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.services-img {
    width: 100%;
    border-radius: var(--radius);
    transition: var(--transition);
}

.services-img-wrapper:hover .services-img {
    transform: scale(1.03);
}

.services-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Card */
.service-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(2, 168, 230, 0.1);
    transform: translateY(-2px);
}

.service-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.service-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FAQ SECTION 
   ======================================== */
.faq-section {
    background: var(--bg);
    padding: 80px 0;
}

.faq-heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.faq-cat-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.faq-cat-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.faq-cat-btn:hover {
    border-color: var(--primary);
}

/* FAQ Help Box */
.faq-help-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
}

.faq-help-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.faq-help-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.btn-support {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-support:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 168, 230, 0.35);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   NEWSLETTER SECTION 
   ======================================== */
.newsletter-section {
    background: var(--white);
    padding: 60px 0;
}

.newsletter-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid var(--border);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-desc {
    font-size: 14px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 14px;
    color: var(--text);
    outline: none;
    background: var(--white);
    font-family: var(--font);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* ========================================
   GALLERY SECTION — MODERN
   ======================================== */
.gallery-section {
    background: var(--bg);
    padding: 80px 0;
}

.gallery-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 210px);
    gap: 14px;
}

.gallery-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-card-tall {
    grid-row: span 2;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgb(255 174 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 4px 0 0;
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========================================
   CONTACT SECTION — MODERN REDESIGN
   ======================================== */
.contact-section-modern {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Info Panel (Left) */
.contact-info-panel {
    background: var(--primary);
    padding: 60px;
    color: var(--white);
    position: relative;
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner\ car.png') no-repeat bottom right / 80%;
    opacity: 0.05;
    pointer-events: none;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.contact-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-heading span {
    color: rgba(255, 255, 255, 0.9);
}

.contact-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-info-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.contact-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.contact-social-row a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Form Panel (Right) */
.contact-form-panel {
    padding: 60px;
    background: var(--white);
}

.form-panel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-panel-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 35px;
}

.form-floating-group {
    position: relative;
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    width: 100%;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.form-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(2, 168, 230, 0.1);
    outline: none;
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus+.form-icon {
    color: var(--primary);
}

.form-textarea {
    min-height: 140px;
    padding-top: 20px;
}

.form-textarea+.form-icon {
    top: 25px;
    transform: none;
}

.btn-send-message {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(2, 168, 230, 0.3);
}

.btn-send-message:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(2, 168, 230, 0.4);
}

/* ========================================
   FOOTER — MODERN REDESIGN
   ======================================== */
.footer-modern {
    background: #e8a045;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top-strip {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #60a5fa, var(--primary));
    opacity: 0.3;
}

.footer-main {
    padding: 80px 0 50px;
}

/* Brand Column */
.footer-brand-logo img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social-modern {
    display: flex;
    gap: 12px;
}

.social-link-modern {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link-modern:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Link Columns */
.footer-links-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Info */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Copyright Bar */
.copyright-modern {
    background: rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-inner p {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.copyright-inner p strong,
.copyright-inner p a {
    color: var(--white);
    font-weight: 600;
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright-links a:hover {
    color: var(--white);
}

.copyright-divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   MODAL BOOKING 
   ======================================== */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--primary);
    color: var(--white);
    border-bottom: none;
    padding: 20px 24px;
}

.modal-title {
    font-weight: 700;
    color: var(--white);
}

.modal-body {
    padding: 24px;
}

/* ========================================
   MOBILE MENU 
   ======================================== */
.nav-menu.mobile-active {
    display: block !important;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid var(--border);
}

.nav-menu.mobile-active ul {
    flex-direction: column;
    gap: 16px !important;
}

/* ========================================
   WHATSAPP ICON 
   ======================================== */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-icon img {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 32px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
}

/* ── Hero Text Content ── */
.hero-text-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 520px;
    padding: 0 15px;
    left: 79px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8a045; /* adjust to your brand accent */
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    margin-bottom: 16px;
}

.hero-title-highlight {
    color: #e8a045; /* your accent color */
    display: inline-block;
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 28px;
    max-width: 420px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btn-primary {
    background: #e8a045;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    border: 2px solid #e8a045;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.hero-btn-primary:hover {
    background: transparent;
    color: #e8a045;
}

.hero-btn-secondary {
    background: transparent;
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.hero-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
}
.hero-stat span {
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-text-content {
        position: relative;
        top: unset;
        transform: none;
        max-width: 100%;
        padding: 30px 15px 0;
        text-align: center;
        left: 4px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-car-img{left:10px;}
}