@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&display=swap');

/* ===================== VARIABLES [BRIGHT THEME] ===================== */
:root {
    --brand-green: #006a4e;
    --brand-dark: #004d38;
    --brand-red: #f42a41;

    --red: var(--brand-red);
    --green: var(--brand-green);
    --accent-yellow: #f59e0b;
    --accent-blue: #2563eb;
    --grad-green: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    --grad-light: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    --dark: #f8fafc;
    --dark-2: #ffffff;
    --white: #0f172a;
    --muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --trans: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET & BODY ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================== TOP HEADER ===================== */
.top-header {
    background: #004d38;
    color: #e2e8f0;
    padding: 4px 0;
    /* Reduced padding for compact look */
    font-size: 0.8rem;
    /* Slightly smaller font */
    font-weight: 500;
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-left i {
    color: #f42a41;
    /* Red icons */
    margin-right: 5px;
}

.top-divider {
    color: #334155;
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-right a {
    color: #cbd5e1;
    transition: 0.3s;
    font-size: 1rem;
}

.top-right a:hover {
    color: #3b82f6;
}

.lang-switch {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 5px;
    border-radius: 50px;
    cursor: pointer;
}

.lang-switch span {
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    transition: 0.3s;
}

.lang-switch span.active {
    background: #f42a41;
    /* Red for active language */
    color: white;
}

/* ===================== HEADER [BRIGHT & GLOSSY] ===================== */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(0, 106, 78, 0.1);
    /* Green border */
}

.header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

header.scrolled .header-container {
    padding: 0.7rem 5%;
}

.logo {
    font-size: 1.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(90deg, #006a4e 0%, #004d38 100%);
    /* Green logo gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.logo:hover {
    filter: brightness(1.2);
}

#main-nav {
    background: linear-gradient(to bottom, #006a4e 0%, #004d38 100%);
    /* Full green gradient */
    border-radius: 8px;
    overflow: hidden;
}

#main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

#main-nav li {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#main-nav li:last-child {
    border-right: none;
}

#main-nav a {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    transition: 0.3s;
    text-transform: capitalize;
}

#main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

#main-nav a::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
}

/* Mega Menu Support */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 5%;
    right: 5%;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border: 1px solid #f1f5f9;
    z-index: 999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    text-decoration: none !important;
}

.mega-item:hover {
    background: #f8fafc;
}

.mega-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 106, 78, 0.08);
    /* Light brand green */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.mega-item:hover .mega-icon {
    background: var(--brand-red);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.mega-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 5px;
    transition: 0.3s;
}

.mega-item:hover .mega-content h5 {
    color: var(--brand-red);
}

.mega-content p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Mega Menu Fix */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        grid-template-columns: 1fr;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .mega-dropdown.active .mega-menu {
        display: grid;
    }
}

/* ===================== BUTTONS [VIBRANT] ===================== */
.btn-tesla-primary {
    padding: 1rem 2.5rem;
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--trans);
    border: none;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

.btn-tesla-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.3);
}

.btn-tesla-secondary {
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--trans);
}

.btn-tesla-secondary:hover {
    background: #f1f5f9;
    border-color: var(--red);
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 400;
    /* Not bold */
    letter-spacing: 0px;
    transition: var(--trans);
    text-decoration: none;
    text-transform: uppercase;
    transform: scaleY(1.4);
    /* Loma kora - making it tall */
    transform-origin: left;
}

.brand-text {
    display: inline-flex;
    gap: 4px;
}

.brand-green {
    background: linear-gradient(180deg, #00b386 0%, #006a4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-red {
    background: linear-gradient(180deg, #ff4d5e 0%, #f42a41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-dark {
    background: linear-gradient(180deg, #64748b 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Ensures white background perfectly blends */
}

nav {
    margin-left: auto;
    /* Pushes the menu to the right */
}

nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

nav a {
    color: #333333;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

nav a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111111;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    color: #111111;
    font-size: 1.2rem;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.icon-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    border-radius: 2px;
    transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    width: 100%;
    max-width: 100vw;
    margin-top: 75px;
    padding: 0 !important;
    background: #ffffff;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.swiper-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    z-index: 1;
    transition: transform 12s linear;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.swiper-slide .slide-bg.slide-studio {
    height: 85%;
    /* Increased to 85% for more zoom */
    top: 55%;
    object-fit: contain;
    transform: translateY(-50%) scale(1);
    padding: 0;
    transition: transform 12s linear;
}

.swiper-slide-active .slide-bg.slide-studio {
    transform: translateY(-50%) scale(1.1);
}

/* Tesla Style Top Text */
.slide-text-top {
    position: absolute;
    top: 10%;
    /* Moved up slightly to make room for larger car */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.slide-text-top>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-text-top>* {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .title {
    transition-delay: 0.1s;
}

.swiper-slide-active .subtitle {
    transition-delay: 0.3s;
}

.slide-text-top .title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slide-text-top .subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Tesla Style Bottom Buttons */
.slide-btns-bottom {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    z-index: 2;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.5s;
}

.swiper-slide-active .slide-btns-bottom {
    opacity: 1;
    transform: translateY(0);
}

.btn-tesla-primary,
.btn-tesla-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    min-width: 260px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
}

.btn-tesla-primary {
    background: #f4f4f4;
    color: #171a20;
}

.btn-tesla-secondary {
    background: rgba(23, 26, 32, 0.8);
    color: #ffffff;
}

.btn-tesla-primary:hover {
    background: #ffffff;
}

.btn-tesla-secondary:hover {
    background: #171a20;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #111;
    background: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--trans);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev {
    left: 2%;
}

.swiper-button-next {
    right: 2%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 500;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--red);
    color: #fff;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    background: var(--red);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* ===================== STATS ===================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3rem;
    font-weight: 500;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat p {
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== SECTION COMMON ===================== */
section {
    padding: 100px 6%;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 500;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-head h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--grad-vibrant);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-sub {
    color: #1e40af;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

/* ===================== FEATURES ===================== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.feature-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1e3a8a;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: 0;
    margin: 0;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================== CATALOG ===================== */
.catalog {
    background: var(--dark-2);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.car-card {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--trans);
    border: none;
    box-shadow: none;
}

.car-card:hover {
    transform: translateY(-4px);
}

.car-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.car-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}

.car-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.car-badge {
    display: none;
    /* Hidden for simplicity */
}

.car-info {
    padding: 1.2rem 0;
}

.car-info h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--primary);
}

.car-spec {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0;
}

.view-link {
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.8;
    transition: var(--trans);
}

.car-card:hover .view-link {
    opacity: 1;
    transform: translateX(4px);
}

.car-info .btn {
    width: 100%;
    justify-content: center;
}

/* ===================== CONTACT ===================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #ffffff;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-item .icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e3a8a;
}

.info-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 400;
}

.info-text p {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--trans);
}

.social-btn.wa {
    background: #25D366;
    color: white;
}

.social-btn.wa:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.social-btn.fb {
    background: #1877F2;
    color: white;
}

.social-btn.fb:hover {
    background: #0d5dc4;
    transform: translateY(-3px);
}

/* Form */
.booking-form {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
}

.booking-form h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--trans);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1e3a8a;
    background: rgba(0, 0, 0, 0.04);
}

.form-group select option {
    background: var(--dark-2);
}

/* Alerts */
.alert {
    padding: 1rem 1.4rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34C759;
}

.alert-error {
    background: rgba(255, 69, 58, 0.12);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #FF453A;
}

/* ===================== FOOTER ===================== */
footer {
    padding: 2.5rem 6%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--red);
}

.footer-logo span {
    color: var(--red);
}

.footer-links a {
    color: var(--muted);
    margin-left: 20px;
    transition: var(--trans);
}

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

/* ===================== FLOATING WA ===================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--trans);
    animation: waPulse 3s ease infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8);
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .top-header {
        font-size: 0.7rem;
    }

    .top-header i {
        font-size: 0.75rem;
        margin-right: 3px;
    }

    .top-header-container {
        flex-direction: column;
        gap: 5px;
        padding: 5px 5%;
    }

    .top-left, .top-right {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .top-divider {
        display: none;
    }

    .slide-btns-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-tesla-primary,
    .btn-tesla-secondary {
        min-width: 90%;
        width: 90%;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-bottom: 1px solid var(--border);
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    nav.active {
        display: block;
    }

    .mega-menu {
        display: none;
        background: #f8fafc;
        padding: 0;
        box-shadow: none;
        border: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-dropdown.active .mega-menu {
        display: block !important;
    }

    .mega-item {
        padding: 10px 30px !important;
        border-bottom: 1px solid #eee;
        display: block !important;
    }

    .mega-icon, .mega-content p {
        display: none !important;
    }

    .mega-content h5 {
        font-size: 0.95rem;
        margin: 0;
        color: #555;
        font-weight: 400;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: #111;
    }

    nav a {
        color: #333;
        display: block;
        padding: 10px 0;
    }

    /* Contact Page Responsive */
    .contact-hero {
        height: 250px !important;
    }

    .contact-hero h1 {
        font-size: 1.8rem !important;
    }

    .contact-main-grid {
        grid-template-columns: 1fr !important;
        margin: -30px 5% 50px !important;
        border-radius: 20px !important;
    }

    .contact-info-col {
        padding: 40px 30px !important;
    }

    .contact-map-col {
        padding: 30px !important;
    }

    /* Service Detail Page Responsive */
    .service-hero {
        padding: 40px 6% 60px !important;
        text-align: center;
    }

    .service-hero h1 {
        font-size: 2.2rem !important;
        margin: 15px 0 !important;
    }

    .service-hero p {
        margin: 0 auto !important;
    }

    .service-content-grid {
        grid-template-columns: 1fr !important;
        padding: 60px 6% !important;
        gap: 50px !important;
    }

    .service-trust-section {
        margin: 0 0 60px !important;
        border-radius: 0 !important;
        padding: 60px 6% !important;
    }

    .service-trust-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-faq-section, .service-cta-section {
        padding: 60px 6% !important;
    }

    .service-faq-section h2, .service-cta-section h2 {
        font-size: 1.8rem !important;
    }

    .service-items-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-split-section {
        grid-template-columns: 1fr !important;
        padding: 60px 6% !important;
        gap: 40px !important;
        margin: 0 0 60px !important;
        border-radius: 0 !important;
    }

    .service-split-section h2 {
        font-size: 2rem !important;
        margin-bottom: 25px !important;
        text-align: center;
    }

    .support-tag {
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
        bottom: 15px !important;
        right: 15px !important;
        border-radius: 12px !important;
    }

    .service-split-section ul {
        gap: 15px !important;
    }

    .service-split-section li {
        font-size: 1rem !important;
    }

    .cta-btns {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100% !important;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section {
        padding: 70px 5%;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    /* ===================== MODERN SERVICES ===================== */
    .modern-services {
        padding: 120px 6%;
        background: #fff;
        position: relative;
    }

    .services-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }

    .m-service-card {
        background: #fff;
        padding: 50px 40px;
        border-radius: 30px;
        display: flex;
        gap: 30px;
        align-items: center;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: var(--trans);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .s-num {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 5rem;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.03);
        line-height: 1;
        z-index: 1;
    }

    .s-icon {
        width: 80px;
        height: 80px;
        background: var(--dark);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--red);
        flex-shrink: 0;
        transition: var(--trans);
        z-index: 2;
    }

    .m-service-card:nth-child(1) .s-icon {
        background: #f0fdf4;
        color: #16a34a;
    }

    .m-service-card:nth-child(2) .s-icon {
        background: #fffbeb;
        color: #d97706;
    }

    .m-service-card:nth-child(3) .s-icon {
        background: #eff6ff;
        color: #2563eb;
    }

    .m-service-card:nth-child(4) .s-icon {
        background: #fef2f2;
        color: #dc2626;
    }

    .m-service-card:nth-child(5) .s-icon {
        background: #faf5ff;
        color: #9333ea;
    }

    .m-service-card:nth-child(6) .s-icon {
        background: #f0f9ff;
        color: #0891b2;
    }

    .s-content {
        z-index: 2;
    }

    .s-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        color: var(--white);
    }

    .s-content p {
        font-size: 0.95rem;
        color: var(--muted);
        line-height: 1.6;
    }

    .m-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-blue);
    }

    .m-service-card:hover .s-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    @media (max-width: 768px) {
        .services-wrapper {
            grid-template-columns: 1fr;
        }

        .m-service-card {
            padding: 40px 25px;
            flex-direction: column;
            text-align: center;
        }
    }

    ;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f4fbf8;
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-8px) scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===================== BRAND MARQUEE ===================== */
.brands {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f5f5f5;
}

.brand-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.brand-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.brand-slide img {
    height: 50px;
    width: auto;
    filter: grayscale(1) opacity(0.4);
    transition: var(--trans);
}

.brand-slide img:hover {
    filter: grayscale(0) opacity(1);
}

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

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

@media (max-width: 768px) {
    .brand-track {
        width: calc(180px * 12);
    }

    .brand-slide {
        width: 180px;
    }

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

        100% {
            transform: translateX(calc(-180px * 6));
        }
    }
}

/* ===================== PREMIUM MODERN FOOTER ===================== */
.main-footer {
    background: var(--brand-dark);
    color: #ffffff;
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--brand-green);
    /* Changed from red to green */
    opacity: 0.05;
    filter: blur(120px);
    border-radius: 50%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ffffff;
    /* Changed from red to white */
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col .footer-logo {
    font-size: 1.4rem;
    /* Reduced font size */
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.footer-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    opacity: 0.85;
}

.footer-col ul li a:hover {
    color: #ffffff;
    /* Changed from red to white for cleaner look */
    opacity: 1;
    transform: translateX(8px);
}

.footer-col p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0.85;
}

.footer-col i {
    color: #ffffff;
    /* Restored to white */
    font-size: 1.1rem;
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--brand-green);
    /* Changed from red to brand green */
    transform: translateY(-5px) rotate(8deg);
}

align-items: center;
justify-content: center;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

/* Real Brand Colors for Social Icons */
.fa-facebook-f {
    color: #1877F2 !important;
}

.fa-whatsapp {
    color: #25D366 !important;
}

.fa-youtube {
    color: #FF0000 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: #ffcc00;
    /* Changed to yellow for visibility */
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== BRIGHT LUXURY HERO [V3] ===================== */
.hero-v3 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hero-bg-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1);
    /* No more dark filter */
}

.hero-bg-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-glass-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 1);
    max-width: 750px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out;
}

.hero-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    color: var(--red);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.hero-title-v3 {
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title-v3 span {
    color: var(--red);
}

.hero-text-v3 {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 45px;
}

.hero-actions-v3 {
    display: flex;
    gap: 20px;
}

/* Floating Specs [Bright] */
.spec-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    animation: float 4s ease-in-out infinite;
}

.spec-bubble i {
    font-size: 1.5rem;
    color: var(--red);
}

/* ===================== VIBRANT STATS [BRIGHT] ===================== */
.stats-vibrant {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);

    .car-img-zoom:hover {
        transform: scale(1.1);
    }

    /* Hero Content Animation */
    .hero-content-anim {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .swiper-slide-active .hero-content-anim {
        opacity: 1;
        transform: translateY(0);
    }

    .anim-delay-1 {
        transition-delay: 0.2s;
    }

    .anim-delay-2 {
        transition-delay: 0.4s;
    }

    .anim-delay-3 {
        transition-delay: 0.6s;
    }

}

.s-count {
    display: block;
    font-size: 3rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
}

/* ===================== ELITE SERVICES ===================== */
.elite-services {
    padding: 120px 6%;
}

.section-head-v2 {
    text-align: center;
    margin-bottom: 70px;
}

.section-head-v2 p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-head-v2 h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -1px;
}



.e-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.e-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.e-service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.e-service-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--red);
}

/* ===================== CAR CARD V2 ===================== */
.featured-inventory {
    padding: 100px 6%;
    background: #f1f5f9;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.car-card-v2 {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    transition: var(--trans);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.car-img-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
}

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

.car-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-tag {
    color: var(--accent);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.deal-content h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.deal-content p {
    color: #777;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.deal-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
}

.deal-specs span {
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-specs i {
    color: var(--accent);
    font-size: 1.1rem;
}

.deal-price-wrap {
    margin-bottom: 45px;
}

.old-price {
    display: block;
    color: #bbb;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.new-price {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .deal-card {
        grid-template-columns: 1fr;
    }

    .deal-content {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 40px;
    }

    .deal-content h3 {
        font-size: 2rem;
    }

    .deal-specs {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* ===================== POLICIES SECTION ===================== */
.policies {
    padding: 100px 6%;
    background: #fff;
    border-top: 1px solid #f2f2f2;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.policy-box {
    background: #fdfdfd;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.policy-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.policy-box i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.policy-box h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 500;
}

.policy-box p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.tagline-banner {
    text-align: center;
    padding: 40px;
    background: #f4fbf8;
    border-radius: 100px;
    color: var(--accent);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1.5px;
    border: 1px dashed var(--accent);
}

.tagline-banner p {
    font-size: 1.1rem;
}

/* Bilingual Adjustments */
.bn-text {
    font-family: 'Hind Siliguri', sans-serif;
    display: block;
    margin-top: 5px;
}

/* ===================== MEDIA & MAP SECTION ===================== */
.media-location {
    padding: 100px 6%;
    background: #fdfdfd;
}

.media-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.video-wrapper,
.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews {
    padding: 100px 6%;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--trans);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-info h5 {
    font-size: 1rem;
    margin: 0;
}

.reviewer-info p {
    font-size: 0.8rem;
    color: var(--accent);
    margin: 0;
}

.review-text {
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.stars {
    color: #ffb400;
}

/* ===================== FAQ SECTION ===================== */
.faq {
    padding: 100px 6%;
    background: #f4fbf8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.faq-item h5 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===================== LANGUAGE SWITCHER ===================== */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(0, 0, 0, 0.05);
    padding: 3px;
    border-radius: 50px;
}

.lang-switcher button {
    border: none;
    background: transparent;
    padding: 4px 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #888;
}

.lang-switcher button.active {
    background: #1e3a8a;
    color: #fff;
}

/* Hide/Show Logic */
html[lang="en"] .lang-bn {
    display: none !important;
}

html[lang="bn"] .lang-en {
    display: none !important;
}

/* Font for Bangla */
html[lang="bn"] body {
    font-family: 'Hind Siliguri', sans-serif;
}

@media (max-width: 992px) {
    .header-actions .lang-switcher {
        display: none;
        /* Hide in mobile actions, show in mobile nav */
    }
}

/* ===================== NEW COLORFUL ADDITIONS ===================== */
:root {
    --brand-blue: #1e3a8a;
    --brand-indigo: #4338ca;
    --grad-vibrant: #1e3a8a;
    --grad-warm: #1e40af;
}

.bg-vibrant {
    background: var(--brand-blue);
    color: white;
}

.text-gradient {
    color: var(--brand-blue);
    background: none;
    -webkit-text-fill-color: initial;
}

/* Hero Taglines */
.hero-taglines {
    background: var(--dark-2);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.hero-taglines p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brand-emerald);
    display: inline-block;
    margin: 0 15px;
    letter-spacing: 0.5px;
}

.hero-taglines p i {
    color: var(--brand-orange);
    margin-right: 5px;
}

/* Services Grid */
.services-section {
    background: #ffffff;
    padding: 80px 6%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.service-card {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: #1e3a8a;
}

.service-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* Bento Spanning */
.service-card:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
}

.service-card:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
}

.service-card:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.service-card:nth-child(4) {
    grid-column: span 6;
    grid-row: span 1;
}

.service-card:nth-child(5) {
    grid-column: span 6;
    grid-row: span 1;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.service-card:nth-child(1) h3 {
    font-size: 1.8rem;
}

.service-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .service-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }
}

/* Search & Upload Section */
.search-upload-section {
    background: var(--grad-warm);
    color: white;
    padding: 80px 6%;
}

.su-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.su-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.su-box input,
.su-box select {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--white);
    font-family: inherit;
}

.su-box .btn {
    background: var(--brand-blue);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    width: 100%;
    transition: var(--trans);
}

.su-box .btn:hover {
    background: var(--white);
    color: var(--brand-blue);
}

/* Financial Info */
.financial-section {
    background: #fff;
}

.fin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fin-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    transition: var(--trans);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fin-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-orange);
}

.fin-icon {
    font-size: 2.2rem;
    color: #fff;
    background: var(--grad-warm);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
}

.fin-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #0f172a;
}

.fin-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Floating WhatsApp Widget */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-decoration: none;
    transition: var(--trans);
}

.float-wa:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Floating WhatsApp Support - Always Visible & Premium */
.wa-support-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 9999999;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.wa-support-float svg {
    display: block;
}

.wa-support-float .wa-text {
    display: inline-block;
    white-space: nowrap;
}

.wa-support-float:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    background: #1eb956;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-support-float {
    animation: waPulse 2s infinite;
}