        /* ===================================
           GLOBAL STYLES & VARIABLES
        =================================== */
        :root {
            --primary-gold: #CCF400;
            --primary-gold-dark: #B3D200;
            --dark-charcoal: #1a1a1a;
            --medium-gray: #333333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2c2c2c;
            --text-light: #666666;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--dark-charcoal);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
            border-radius: 2px;
        }

        .btn-primary-custom {
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            border: none;
            padding: 16px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
        }

        .btn-primary-custom:hover {
            background: var(--primary-gold-dark);
            color: var(--dark-charcoal);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(248, 183, 57, 0.3);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 16px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
        }

        .btn-outline-custom:hover {
            background: var(--white);
            color: var(--dark-charcoal);
            transform: translateY(-2px);
        }

        /* Focus styles for accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 3px solid var(--primary-gold);
            outline-offset: 2px;
            outline: none;
        }

        /* ===================================
           HEADER / NAVIGATION
        =================================== */
        .navbar {
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--white) !important;
            transition: var(--transition);
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand svg {
            transition: var(--transition);
        }

        .navbar-brand:hover svg {
            transform: rotate(5deg);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            margin: 0 0.25rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-link:hover {
            color: var(--primary-gold) !important;
        }

        .phone-cta {
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .phone-cta:hover {
            background: var(--primary-gold-dark);
            color: var(--dark-charcoal);
            transform: scale(1.05);
        }

        .navbar-toggler {
            border-color: var(--primary-gold);
            padding: 0.5rem;
            border: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23CCF400' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ===================================
           HERO SECTION - IMPROVED
        =================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--dark-charcoal);
            padding-top: 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(26, 26, 26, 0.95) 0%,
                    rgba(26, 26, 26, 0.85) 40%,
                    rgba(248, 183, 57, 0.25) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: var(--white);
            text-align: center;
        }

        .hero h1 {
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }

        .hero .highlight {
            color: var(--primary-gold);
            display: block;
            font-family: "Segoe UI";
            font-weight: 700;
        }

        .hero .highlight span {
            font-weight: 300;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
        }

        .hero .subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p.lead {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 2.5rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            margin-top: 50px;
            display: flex;
            gap: 4rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .stat-item p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Parallax effect elements */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(248, 183, 57, 0.15), transparent);
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-shape-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -100px;
        }

        .hero-shape-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            animation-delay: 2s;
        }

        .hero-shape-3 {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        /* ===================================
           ABOUT SECTION
        =================================== */
        .about {
            background: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            /* gap: 4rem; */
        }

        .about-text h2 {
            color: var(--dark-charcoal);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-item h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-item p {
            margin: 0;
            font-size: 0.95rem;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(248, 183, 57, 0.1), transparent);
        }

        .about-image img {
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* ===================================
           MODELS SECTION - CAROUSEL
        =================================== */
        .models {
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .model-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            margin: 0 15px;
        }

        .model-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
        }

        .model-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .model-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .model-card:hover .model-image img {
            transform: scale(1.1);
        }

        .model-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        /* EV Model Badges */
        .model-badge {
            display: inline-block;
            padding: 6px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            color: #111;
            letter-spacing: 0.3px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        /* Brand accent color shades */
        .model-badge.popular {
            background: linear-gradient(135deg, #CCF400 0%, #b3d200 100%);
        }

        .model-badge.eco {
            background: linear-gradient(135deg, #B9FF66 0%, #9fe057 100%);
        }

        .model-badge.premium {
            background: linear-gradient(135deg, #F7EFA6 0%, #DCCB58 100%);
            color: #111;
        }

        .model-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .model-content h3 {
            color: var(--dark-charcoal);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .model-specs {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .spec-item i {
            color: var(--primary-gold);
        }

        .model-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-charcoal);
            margin-bottom: 1.5rem;
        }

        .model-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .model-cta {
            margin-top: auto;
        }

        /* Carousel custom styles */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--primary-gold-dark);
        }

        .carousel-control-prev {
            left: -45px;
        }

        .carousel-control-next {
            right: -45px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: brightness(0);
        }

        .carousel-indicators {
            margin-bottom: -40px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 4px;
            background-color: var(--primary-gold);
            opacity: 0.5;
        }

        .carousel-indicators button.active {
            opacity: 1;
            background-color: var(--primary-gold);

        }

        /* Nice soft gradient background behind cards */
        .models::before {
            content: "";
            position: absolute;
            inset: -20%;
            background:
                radial-gradient(circle at 0% 0%, rgba(204, 244, 0, 0.12), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(179, 210, 0, 0.18), transparent 60%);
            opacity: 0.65;
            pointer-events: none;
        }

        /* Wrap so content stays above gradient */
        .models .container {
            position: relative;
            z-index: 1;
        }

        /* Swiper container */
        .models-swiper {
            padding-bottom: 60px;
            /* space for pagination */
        }

        /* Make slides “peek” left/right */
        .models-swiper .swiper-slide {
            height: auto;
            display: flex;
            align-items: stretch;
        }



        /* Add tagline style */
        .model-tagline {
            font-size: 0.95rem;
            margin-top: -0.25rem;
            margin-bottom: 1.25rem;
            color: var(--text-light);
        }

        /* Swiper navigation buttons – circular, brand color */
        .models-nav-prev,
        .models-nav-next {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary-gold);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .models-nav-prev::after,
        .models-nav-next::after {
            font-size: 1.1rem;
            color: #111;
        }

        .models-nav-prev:hover,
        .models-nav-next:hover {
            background: var(--primary-gold-dark);
            transform: translateY(-3px);
        }

        /* Position nav buttons */
        .models-nav-prev {
            left: -40px;
        }

        .models-nav-next {
            right: -40px;
        }

        /* Pagination bullets */
        .models-pagination .swiper-pagination-bullet {
            background: var(--primary-gold);
            opacity: 0.4;
            width: 11px;
            height: 11px;
        }

        .models-pagination .swiper-pagination-bullet-active {
            opacity: 1;
            width: 28px;
            border-radius: 6px;
        }

        /* ===================================
           MANUFACTURING SECTION
        =================================== */
        .manufacturing {
            position: relative;
            padding: 80px 0;
            color: #ffffff;
            /* Background image with slight dark fallback */
            background:
                linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
                url("../images/models/sunUtility.png") center center / cover no-repeat fixed;
            /* if 'fixed' par performance issue ho to 'scroll' kar sakte ho */
            overflow: hidden;
        }

        .manufacturing::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.35), transparent 55%);
            pointer-events: none;
        }

        .manufacturing .section-title h2 {
            color: var(--white);
        }

        .manufacturing-content {
            max-width: 900px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .manufacturing-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .capability-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capability-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }

        .capability-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--dark-charcoal);
        }

        .capability-card h4 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .capability-card p {
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
            font-size: 0.95rem;
        }

        .process-list {
            list-style: none;
            padding: 0;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .process-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .process-list li i {
            color: var(--primary-gold);
            font-size: 1.5rem;
        }

        /* ===================================
           COMPLIANCE SECTION
        =================================== */
        .compliance {
            background: var(--white);
        }

        .compliance-intro {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .compliance-intro p {
            font-size: 1.1rem;
        }

        .compliance-badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .badge-item {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .badge-item:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
        }

        .badge-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: var(--primary-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .badge-item h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .badge-item p {
            font-size: 0.85rem;
            margin: 0;
        }

        .compliance-actions {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--dark-charcoal);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-download:hover {
            background: var(--medium-gray);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===================================
           TESTIMONIALS SECTION - CAROUSEL
        =================================== */
        .testimonials {
            background: var(--light-gray);
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            margin: 0 15px;
            height: 350px;
            display: flex;
            flex-direction: column;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: var(--primary-gold);
            opacity: 0.2;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-size: 1.05rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--dark-charcoal);
            font-size: 1.2rem;
        }

        .author-info h5 {
            margin: 0 0 0.25rem 0;
            color: var(--dark-charcoal);
            font-size: 1rem;
        }

        .author-info p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .partners {
            text-align: center;
            margin-top: 4rem;
        }

        .partners h3 {
            margin-bottom: 2rem;
            color: var(--dark-charcoal);
        }

        .partner-logo {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0.7;
            margin: 0 15px;
        }

        .partner-logo:hover {
            opacity: 1;
            transform: translateY(-5px);
        }

        .partner-logo img {
            max-height: 50px;
            /* filter: grayscale(100%); */
            transition: var(--transition);
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        /* Placeholder for partner logos */
        .partner-placeholder {
            font-weight: 600;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* ===================================
       CONTACT SECTION
    =================================== */
        .contact {
            background: var(--light-gray);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h3 {
            color: var(--dark-charcoal);
            margin-bottom: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--dark-charcoal);
            font-size: 1.3rem;
        }

        .info-content h4 {
            margin-bottom: 0.5rem;
            font-size: 1rem;
            color: var(--dark-charcoal);
        }

        .info-content p {
            margin: 0;
            font-size: 0.95rem;
        }

        .info-content a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .info-content a:hover {
            color: var(--primary-gold);
        }

        .contact-form {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
        }

        .contact-form h3 {
            color: var(--dark-charcoal);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-charcoal);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid transparent;
            background: var(--white);
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-gold);
            outline: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #dc3545;
        }

        .error-message {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .success-message {
            background: #28a745;
            color: var(--white);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        .map-container {
            margin-top: 3rem;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-placeholder {
            color: var(--text-light);
            text-align: center;
        }

        /* ===================================
       FOOTER - IMPROVED SOCIAL ICONS
    =================================== */
        .footer {
            background: var(--dark-charcoal);
            color: rgba(255, 255, 255, 0.85);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-col p a,
        .footer-bottom p a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-col p a:hover {
            color: var(--primary-gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--medium-gray);
            color: var(--white);
            transform: translateY(-3px);
        }

        .social-link:focus {
            background: var(--medium-gray);
            color: var(--white);
            outline: 3px solid var(--primary-gold);
            outline-offset: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* ===================================
       RESPONSIVE STYLES
    =================================== */
        @media (max-width: 991px) {
            section {
                padding: 60px 0;
            }

            .hero {
                min-height: auto;
                padding: 120px 0 80px;
            }

            .about-content {
                flex-direction: column;
                gap: 2rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }

            .models-swiper {
                padding-inline: 10px;
            }

            .models-nav-prev,
            .models-nav-next {
                display: none;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta .btn-primary-custom,
            .hero-cta .btn-outline-custom {
                width: 100%;
                text-align: center;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .capabilities-grid {
                grid-template-columns: 1fr;
            }

            .model-card,
            .testimonial-card,
            .partner-logo {
                margin: 0 10px;
            }
        }

        /* ===================================
       UTILITY CLASSES
    =================================== */
        .text-gold {
            color: var(--primary-gold);
        }

        .bg-gold {
            background: var(--primary-gold);
        }

        /* Scroll To Top Button Start */
        #scrollTopBtn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: none;
            outline: none;
            background: #CCF400;
            /* your primary color */
            color: #111;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            transition: all .25s ease;
            visibility: hidden;
            opacity: 0;
            z-index: 999;
        }

        /* Visible when scrolled */
        #scrollTopBtn.show {
            visibility: visible;
            opacity: 1;
        }

        /* Hover effect (your hover shade) */
        #scrollTopBtn:hover {
            background: #B3D200;
            /* darker hover color */
            transform: translateY(-4px);
        }

        /* Scroll To Top Button End */


        /* ===========================
   MODELS SECTION – SWIPER
   (enhanced look)
=========================== */