@charset "UTF-8";

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

        body {
            font-family: Inter, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #000000fa;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #000000fa;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
            height: 130px;
		 
    		padding-top: 10px;
        }

        nav.scrolled {
            height: 80px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.4s ease;
            height: 100%;
        }

        nav.scrolled .nav-container {
            padding: 0.5rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd34f;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }
		.logo img {
    		max-width: 250px;
            height: 200px;
            object-fit: contain;
            transition: all 0.4s ease;
		}

        nav.scrolled .logo img {
            max-width: 200px;
            height: 60px;
        }

        .nav-links {
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            
            list-style: none;
            flex-direction: column;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s ease, opacity 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 1px solid #eee;
        }

        .nav-links.active {
            display: flex;
            max-height: 500px;
            opacity: 1;
			background: #000;
        }

        .nav-links li {
            border-bottom: 1px solid #eee;
        }

        .nav-links li:last-child {
            border-bottom: none;
        }

        .nav-divider {
            border-bottom: 2px solid #ffd34f !important;
            height: 0;
            margin: 0.5rem 0;
        }

        .nav-links a {
                display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 100;
    transition: all 0.3s;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 14px;
}

        .nav-links a:hover {
            color:#E2E076;
        }

        .nav-links a.active {
            color: #FFD34F;
            font-weight: bold;
        }

        .nav-icon {
            font-size: 1.2rem;
            min-width: 20px;
        }

        /* Social Icons Mobile */
        .social-menu-item {
            display: flex;
            justify-content: center;
            padding: 1.5rem 0 !important;
            border-bottom: none !important;
        }

        .social-icons-mobile {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ffd34f;
            color: #000;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .social-icon:hover {
            background: #c0392b;
            color: white;
            transform: translateY(-3px);
        }

        /* Social Icons Desktop */
        .social-icons-desktop {
            display: none;
            gap: 1rem;
            align-items: center;
        }

        /* Active indicator line */
        .nav-indicator {
            position: absolute;
            bottom: 0;
            height: 3px;
            background: #ffd34f;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @media (max-width: 767px) {
            .nav-indicator {
                display: none;
            }
			.logo img {
    			max-width: 230px;
			}

            .social-icons-desktop {
                display: none;
            }
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #FFF;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (min-width: 768px) {
            .nav-links {
                position: static;
                flex-direction: row;
                max-height: none;
                opacity: 1;
                display: flex;
                box-shadow: none;
                border-top: none;
                gap: 2rem;
                overflow: visible;
            }

            .nav-links li {
                border-bottom: none;
            }

            .nav-links a {
                padding: 0;
                gap: 0.5rem;
            }

            .nav-divider {
                display: none;
            }

            .social-menu-item {
                display: none;
            }

            .nav-indicator {
                display: block;
            }

            .nav-icon {
                display: none;
            }

            .hamburger {
                display: none;
            }

            .social-icons-desktop {
                display: flex;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }

        /* Hero/Slider */
        .hero {
            margin-top: 130px;
            height: 500px;
            position: relative;
            overflow: hidden;
            transition: margin-top 0.4s ease;
        }

        nav.scrolled ~ #home .hero,
        nav.scrolled ~ #services .hero,
        nav.scrolled ~ #vehicles .hero,
        nav.scrolled ~ #about .hero,
        nav.scrolled ~ #booking .hero,
        nav.scrolled ~ #contact .hero {
            margin-top: 80px;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-content {
            text-align: left;
            color: white;
            position: relative;
            z-index: 2;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-badge {
            display: inline-block;
            border: 1px solid rgba(255, 211, 79, 0.5);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-content h1 .highlight {
            color: #FFD34F;
            display: block;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 550px;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-features {
            display: flex;
            gap: 2.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero-feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 211, 79, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-feature-icon i {
            color: #FFD34F;
            font-size: 1.2rem;
        }

        .hero-feature-text {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffd34f;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
        }

        .cta-button:hover {
            background: #e6be47;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 211, 79, 0.4);
        }

        .cta-button-outline {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid white;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button-outline:hover {
            background: white;
            color: #000;
            transform: translateY(-2px);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        @media (min-width: 768px) {
            .hero {
                height: 740px;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

            .hero-content p {
                font-size: 1.15rem;
            }

            .hero-content {
                padding: 4rem;
            }
        }

        /* Primary CTA Section */
        .primary-cta {
            background: #f8f9fa;
            padding: 3rem 2rem;
            text-align: center;
        }

        .primary-cta-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .primary-cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .primary-cta p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }

        /* Page Container */
        .page {
            display: none;
            animation: fadeIn 0.5s;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Services Section */
        .services {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            padding-top: calc(4rem + 20px);
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .service-img {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-weight: bold;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

		.service-content p {
 		   color: #000;
		}
 

/* Service Card Image Styling - Makes all images uniform */
.service-img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0; /* Rounded corners on top */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures images fill the space uniformly while maintaining aspect ratio */
    object-position: center; /* Centers the image */
    display: block;
}

/* If you want the images to fit without cropping (show full image with letterboxing) use this instead: */
/*
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
*/

        /* About Section */
        .about {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            padding-top: calc(4rem + 20px);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

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

        .about-img {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .about-img img {
            width: 100%;
           
        }

        .about-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .about-content p {
            margin-bottom: 1rem;
            color: #666;
            line-height: 1.8;
        }

        /* Booking Calendar */
        .booking {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            padding-top: calc(4rem + 20px);
        }

        .booking h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .booking-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            overflow-x: hidden;
        }

        @media (min-width: 768px) {
            .booking-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        .calendar-wrapper {
            background: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 1.5rem;
            min-width: 0;
            overflow-x: auto;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .calendar-header button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0.5rem 0.75rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            white-space: nowrap;
            font-size: 0.85rem;
        }

        .calendar-header button:hover {
            background: #c0392b;
        }

        .weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.25rem;
            margin-bottom: 0.75rem;
        }

        .weekday {
            text-align: center;
            font-weight: bold;
            padding: 0.35rem 0.25rem;
            color: #666;
            font-size: 0.75rem;
        }

        .dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.25rem;
        }

        .date {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #eee;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            font-size: 0.85rem;
            padding: 0.25rem;
        }

        .date:hover {
            background: #f0f0f0;
            border-color: #e74c3c;
        }

        .date.selected {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }

        .date.disabled {
            color: #ccc;
            cursor: not-allowed;
        }

        .booking-form {
            background: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #1a1a1a;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e74c3c;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            padding-top: calc(4rem + 20px);
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .contact-card {
            text-align: center;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 5px;
        }

        .contact-card h3 {
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .contact-card p {
            color: #666;
        }

        /* Vehicles Page */
        .vehicles {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            padding-top: calc(4rem + 20px);
        }

        .vehicle-hero {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }
        

        @media (min-width: 768px) {
            .vehicle-hero {
                height: 500px;
            }


        }

        .vehicle-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .vehicle-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
       }

        .vehicle-intro p {
            font-size: 1.1rem;
            color: #ffffff;
            max-width: 700px;
            margin: 0 auto;
        }

        .vehicle-specs {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 5px;
            margin-bottom: 3rem;
            display: inline-block;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .specs-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .spec-item h4 {
            color: #e74c3c;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .spec-item p {
            color: #a8a8a8;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .vehicle-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .vehicle-description:last-child {
            margin-bottom: 0;
        }

        /* Lightbox Gallery */
        .gallery-section h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-weight: bold;
            transition: all 0.3s;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .gallery-overlay-icon {
            color: white;           
            font-size: 2rem;
        }

        .gallery-img img {
    height: 100%;
}

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            padding: 2rem;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-img {
            width: 100%;
            height: auto;
            max-height: 70vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .lightbox-counter {
            color: white;
            margin-top: 1.5rem;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .lightbox-close:hover {
            transform: scale(1.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s;
            user-select: none;
        }

        .lightbox-nav:hover {
            transform: scale(1.2);
        }

        .lightbox-prev {
            left: 0;
        }

        .lightbox-next {
            right: 0;
        }


/* ADD THIS CSS TO YOUR assets/style.css FILE */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 20px;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.service-preview-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-5px);
}

.service-preview-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-preview-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.secondary-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #1a1a2e;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 60px 0;
}

.step-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 18px 50px;
}

/* Trust Badges Section */
.trust-badges {
    padding: 50px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.badge-item p {
    color: #444;
    font-weight: 500;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: white;
    color: #667eea;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-grid,
    .services-preview-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .why-choose-us h2,
    .services-preview h2,
    .testimonials-section h2,
    .how-it-works h2 {
        font-size: 2rem;
    }
}

        /* Footer */
        footer {
            background: #000000;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

        /* AI Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: Inter, sans-serif;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FFD34F 0%, #E6BE47 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 211, 79, 0.4);
            transition: all 0.3s ease;
            position: relative;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(255, 211, 79, 0.6);
        }

        .chat-button i {
            font-size: 28px;
            color: #000;
        }

        .chat-badge {
            position: absolute;
            top: -35px;
            right: 0;
            background: #000;
            color: #FFD34F;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .chat-container {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 600px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .chat-container.active {
            display: flex;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-header {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-header i {
            font-size: 32px;
            color: #FFD34F;
        }

        .chat-header h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .chat-status {
            font-size: 12px;
            color: #4CAF50;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chat-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #4CAF50;
            border-radius: 50%;
            display: inline-block;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: transform 0.2s;
        }

        .chat-close:hover {
            transform: rotate(90deg);
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8f9fa;
        }

        .chat-message {
            margin-bottom: 16px;
            display: flex;
            gap: 10px;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .message-avatar {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #FFD34F 0%, #E6BE47 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .message-avatar i {
            font-size: 18px;
            color: #000;
        }

        .message-content {
            background: white;
            padding: 12px 16px;
            border-radius: 12px;
            max-width: 75%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .bot-message .message-content {
            border-bottom-left-radius: 4px;
        }

        .user-message {
            flex-direction: row-reverse;
        }

        .user-message .message-content {
            background: linear-gradient(135deg, #FFD34F 0%, #E6BE47 100%);
            color: #000;
            border-bottom-right-radius: 4px;
            margin-left: auto;
        }

        .message-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
        }

        .message-content ul {
            margin: 8px 0;
            padding-left: 20px;
        }

        .message-content li {
            margin: 4px 0;
            font-size: 14px;
        }

        .chat-quick-actions {
            padding: 12px 20px;
            background: white;
            border-top: 1px solid #e0e0e0;
            display: flex;
            gap: 8px;
            overflow-x: auto;
        }

        .quick-action-btn {
            background: #f8f9fa;
            border: 1px solid #e0e0e0;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .quick-action-btn:hover {
            background: #FFD34F;
            border-color: #FFD34F;
            transform: translateY(-2px);
        }

        .quick-action-btn i {
            font-size: 14px;
        }

        .chat-input-container {
            padding: 16px 20px;
            background: white;
            border-top: 1px solid #e0e0e0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .chat-input:focus {
            border-color: #FFD34F;
        }

        .chat-send {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #FFD34F 0%, #E6BE47 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .chat-send:hover {
            transform: scale(1.1);
        }

        .chat-send i {
            color: #000;
            font-size: 16px;
        }

        .typing-indicator .message-content {
            padding: 16px;
        }

        .typing-dots {
            display: flex;
            gap: 5px;
        }

        .typing-dots span {
            width: 8px;
            height: 8px;
            background: #999;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }

        /* Mobile responsiveness for chat */
        @media (max-width: 480px) {
            .chat-container {
                width: calc(100vw - 40px);
                height: calc(100vh - 140px);
                bottom: 80px;
            }

            .chat-badge {
                display: none;
            }
        }