@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --primary: #0EA5E9;
            --primary-dark: #0284C7;
            --secondary: #1E293B;
            --accent: #06B6D4;
            --text-light: #64748B;
            --text-dark: #1E293B;
            --bg-light: #F8FAFC;
            --bg-dark: #0F172A;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        a {
            cursor: pointer;
            text-decoration: none;
        }


        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.8rem 5%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .logo img {
            height: 32px;
            margin-right: 8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 1rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .nav-cta:after {
            display: none;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out 0.5s both;
            line-height: 1.2;
        }

        .hero-subtitle {
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.8);
            animation: fadeInUp 1s ease-out 1.5s both;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border: 0;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            margin-left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border-radius: 50px;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            background: white;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.67rem;
        }

        .about-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        /* Features Section */
        .features {
            padding: 5rem 5%;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Tablet and below */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
        }

        /* Mobile (iPhone 5 and similar ~320px wide) */
        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature-desc {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            padding: 5rem 5%;
            background: var(--bg-light);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            padding: 2rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: auto;
            font-size: 0.9rem;
        }


        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(14, 165, 233, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .service-features li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-cta i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .service-cta:hover {
            color: var(--primary-dark);
        }

        .service-cta:hover i {
            transform: translateX(5px);
        }


        /* Pricing Section */
        .pricing {
            padding: 5rem 5%;
            background: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto 3rem;
        }

        .pricing-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: scale(1.05);
            z-index: 1;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text-dark);
            color: white;
            padding: 0.7rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured .pricing-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-header h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .pricing-card.featured .pricing-header h3 {
            color: white;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .price-subtext {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .pricing-card.featured .price-subtext {
            color: rgba(255, 255, 255, 0.8);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-features i {
            color: var(--primary);
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

        .pricing-card.featured .pricing-features i {
            color: white;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            background: var(--primary);
            color: white;
            padding: 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .pricing-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pricing-cta.featured {
            background: white;
            color: var(--primary);
        }

        .pricing-cta.featured:hover {
            background: var(--bg-light);
            color: var(--primary-dark);
        }

        .pricing-footer {
            text-align: center;
            color: var(--text-light);
        }

        .pricing-footer a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        .pricing-footer a:hover {
            text-decoration: underline;
        }

        /* Testimonials Carousel */
        .testimonials {
            padding: 5rem 2% 5px 2%;
            /* top | right | bottom | left */
            background: var(--bg-light);
            overflow: hidden;
        }

        .testimonial-carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            height: 350px;
        }

        .testimonial-track {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .testimonial-card {
            position: absolute;
            width: 80%;
            left: 10%;
            top: 0;
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.5;
            transform: scale(0.85);
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:nth-child(1) {
            transform: translateX(-40%) scale(0.85);
        }

        .testimonial-card:nth-child(2) {
            transform: scale(0.85);
        }

        .testimonial-card:nth-child(3) {
            transform: translateX(40%) scale(0.85);
        }

        .testimonial-card.active:nth-child(1) {
            transform: translateX(0) scale(1);
        }

        .testimonial-card.active:nth-child(2) {
            transform: translateX(0) scale(1);
        }

        .testimonial-card.active:nth-child(3) {
            transform: translateX(0) scale(1);
        }

        .rating {
            color: #FFD700;
            margin-bottom: 1.5rem;
        }

        .rating i {
            margin-right: 2px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            font-size: 1.1rem;
        }

        .testimonial-text:before {
            content: "'";
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -1.5rem;
            left: -1rem;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }

        .author-details h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .author-details p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .carousel-button {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 4;
            transition: all 0.3s ease;
        }

        .carousel-button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-button-prev {
            left: 0;
        }

        .carousel-button-next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
            position: relative;
            z-index: 4;
        }

        /* Responsive Styles for Testimonial Carousel */
        @media screen and (max-width: 992px) {
            .testimonials {
                padding: 4rem 4% 2rem 4%;
            }

            .testimonial-carousel {
                height: 310px;
            }

            .testimonial-card {
                width: 85%;
                left: 7.5%;
                padding: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            .testimonials {
                padding: 3.5rem 4% 1.5rem 4%;
            }

            .testimonial-carousel {
                height: 420px;
                max-width: 500px;
            }

            .testimonial-card {
                width: 90%;
                left: 5%;
                padding: 1.8rem;
            }

            .carousel-button {
                width: 45px;
                height: 45px;
            }

            .testimonial-text {
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .testimonials {
                padding: 3rem 4% 1.2rem 4%;
            }

            .testimonial-carousel {
                height: 280px;
            }

            .testimonial-card {
                width: 95%;
                left: 2.5%;
                padding: 1.5rem;
            }

            .testimonial-text:before {
                font-size: 3rem;
                top: -1rem;
                left: -0.5rem;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
            }
        }

        @media screen and (max-width: 320px) {
            .testimonials {
                padding: 2.5rem 4% 1rem 4%;
            }

            .testimonial-carousel {
                height: 280px;
            }

            .testimonial-card {
                padding: 1.2rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .author-details h4 {
                font-size: 1rem;
            }

            .author-details p {
                font-size: 0.85rem;
            }

            .carousel-button {
                width: 35px;
                height: 35px;
            }

            .carousel-button i {
                font-size: 0.9rem;
            }
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 5%;
            background: white;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: var(--bg-light);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(200px, 1fr));
            grid-auto-rows: minmax(250px, 300px);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .gallery-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .gallery-expand {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-expand {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-expand:hover {
            background: var(--primary-dark);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--primary);
        }

        .lightbox-prev {
            left: -60px;
        }

        .lightbox-next {
            right: -60px;
        }


        /* CAR CARE INSIGHTS SECTION - 3 ROW GRID */
        .insights {
            padding: 5rem 5%;
            background: var(--bg-light);
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 2rem;
        }

        .insight-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .insight-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .insight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .insight-card:hover .insight-image img {
            transform: scale(1.05);
        }

        .insight-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .insight-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .insight-content h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .insight-excerpt {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .insight-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
        }

        .insight-date,
        .insight-read-time {
            color: var(--text-light);
            display: flex;
            align-items: center;
        }

        .insight-date i,
        .insight-read-time i {
            margin-right: 0.5rem;
            color: var(--primary);
        }

        .insight-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .insight-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .insight-link:hover {
            color: var(--primary-dark);
        }

        .insight-link:hover i {
            transform: translateX(5px);
        }

        .insights-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
            color: white;
        }

        .newsletter-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            background: rgb(236, 236, 236);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            max-width: 1200px;
            margin: 0 auto;
        }

        .newsletter-content {
            padding: 3rem;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .newsletter-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .newsletter-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .newsletter-form {
            margin-bottom: 2rem;
        }

        .form-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 1px solid var(--primary-dark);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .newsletter-agree {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .newsletter-agree input[type="checkbox"] {
            accent-color: var(--primary);
        }

        .newsletter-features {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .newsletter-image {
            position: relative;
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1593105632614-370657b81ab4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .newsletter-image::before {
            content: '';
            position: absolute;
            top: -20px;
            bottom: -20px;
            left: -20px;
            right: -20px;
            background: inherit;
            filter: blur(10px);
            z-index: -1;
            opacity: 0.7;
        }

        /* CONTACT SECTION STYLING */
        .contact {
            padding: 4rem 1rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-info {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 0.65rem 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: rgba(14, 165, 233, 0.05);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .contact-details p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .social-links {
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(148, 163, 184, 0.2);
        }

        .social-links h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
        }

        .contact-form-container {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.50rem 1rem;
            border: 1px solid transparent;
            border-radius: 12px;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            transition: all 0.3s ease;
            color: var(--text-dark);
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Map Styles */
        .map-container {
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .map-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
            filter: grayscale(0.9) contrast(1.1);
            filter: brightness(0.8);
            transition: all 0.3s ease;
        }

        .map-wrapper:hover iframe {
            filter: grayscale(0) contrast(1);
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 280px;
            transition: all 0.3s ease;
        }

        .map-overlay:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .map-info h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .map-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .map-directions {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .map-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
        }

        .map-directions i {
            font-size: 1rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 5%;
            background: white;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: var(--bg-light);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(200px, 1fr));
            grid-auto-rows: minmax(250px, 300px);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .gallery-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .gallery-expand {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-expand {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-expand:hover {
            background: var(--primary-dark);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 0;
            box-sizing: border-box;
        }


        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-width: 90vw;
            max-height: 90vh;
            text-align: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 1rem;
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--primary);
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        /* Mobile Responsive - iPhone 5 and smaller (320px) */
        @media (max-width: 480px) {
            .gallery {
                padding: 2rem 3%;
            }

            .gallery-filter {
                gap: 0.5rem;
                margin-bottom: 2rem;
            }

            .filter-btn {
                padding: 0.6rem 1rem;
                font-size: 14px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: minmax(200px, 220px);
                gap: 1rem;
            }

            .gallery-overlay {
                padding: 1rem;
            }

            .gallery-info h3 {
                font-size: 1rem;
            }

            .gallery-info p {
                font-size: 0.8rem;
            }

            .gallery-expand {
                width: 35px;
                height: 35px;
                top: 0.5rem;
                right: 0.5rem;
            }

            /* Lightbox Mobile Optimizations */
            .lightbox {
                padding: 10px;
            }

            .lightbox-image {
                max-height: 70vh;
            }

            .lightbox-caption {
                font-size: 1rem;
                margin-top: 0.5rem;
                padding: 0 10px;
            }

            .lightbox-close {
                top: -45px;
                right: -10px;
                width: 35px;
                height: 35px;
                font-size: 1.5rem;
            }

            .lightbox-prev,
            .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .lightbox-prev {
                left: -50px;
            }

            .lightbox-next {
                right: -50px;
            }
        }

        /* Extra Small Mobile - iPhone 5 (320px) */
        @media (max-width: 360px) {
            .gallery {
                padding: 1.5rem 2%;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: minmax(180px, 200px);
                gap: 0.8rem;
            }

            .filter-btn {
                padding: 0.5rem 0.8rem;
                font-size: 13px;
            }

            /* Lightbox for very small screens */
            .lightbox {
                padding: 5px;
            }

            .lightbox-image {
                max-height: 65vh;
                border-radius: 4px;
            }

            .lightbox-caption {
                font-size: 0.9rem;
                padding: 0 5px;
            }

            .lightbox-close {
                top: -40px;
                right: -5px;
                width: 32px;
                height: 32px;
                font-size: 1.3rem;
            }

            .lightbox-prev,
            .lightbox-next {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .lightbox-prev {
                left: -42px;
            }

            .lightbox-next {
                right: -42px;
            }
        }

        /* iPhone SE (375px) and similar */
        @media (max-width: 375px) and (min-width: 361px) {
            .lightbox-prev {
                left: -45px;
            }

            .lightbox-next {
                right: -45px;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {

            .gallery-item:hover .gallery-overlay,
            .gallery-item:hover .gallery-expand {
                opacity: 1;
                transform: translateY(0);
            }

            .gallery-item:hover img {
                transform: none;
            }

            .lightbox-prev,
            .lightbox-next,
            .lightbox-close {
                background: rgba(0, 0, 0, 0.6);
            }
        }

        /* Landscape orientation on small devices */
        @media (max-height: 480px) and (orientation: landscape) {
            .lightbox-image {
                max-height: 85vh;
            }

            .lightbox-close {
                top: -35px;
            }
        }

        /* Footer Section */
        .footer {
            background: var(--bg-dark);
            color: white;
            padding: 4rem 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 2rem;
            padding-bottom: 3rem;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.8rem;
            color: white;
        }

        .footer-logo img {
            height: 32px;
            margin-right: 8px;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary);
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: -5px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-item i {
            color: var(--primary);
            margin-top: 0.2rem;
            min-width: 16px;
        }

        .footer-newsletter-text {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .newsletter-input-group {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .newsletter-input-group input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.8rem 1.5rem;
            color: white;
            outline: none;
        }

        .newsletter-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input-group button {
            background: var(--primary);
            border: none;
            color: white;
            padding: 0.8rem 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-input-group button:hover {
            background: var(--primary-dark);
        }

        .footer-payment p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }

        .payment-methods {
            display: flex;
            gap: 0.8rem;
        }

        .payment-methods i {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
        }

        .payment-methods i:hover {
            color: white;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

        /* Responsive Styles for Footer */
        @media screen and (max-width: 992px) {
            .footer-main {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 2rem;
            }

            .footer-column:first-child {
                grid-column: 1 / -1;
            }
        }

        @media screen and (max-width: 768px) {
            .footer {
                padding: 3rem 0 0;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media screen and (max-width: 576px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-links a:hover {
                padding-left: 0;
            }

            .footer-links a::before {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .footer {
                padding: 2.5rem 0 0;
            }

            .footer-container {
                padding: 0 1rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.8rem;
                align-items: center;
            }

            .payment-methods {
                justify-content: center;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 5%;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .faq-item {
            border-bottom: 1px solid var(--bg-light);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: white;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 0 2rem 1.5rem;
            margin: 0;
            color: var(--text-light);
            line-height: 1.7;
        }

        .faq-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 12px;
        }

        .faq-cta p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* FAQ Animation */
        .faq-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /****************************************************************************************************************************************************************************************/

        /* Responsive Styles for FAQ Section */
        @media screen and (max-width: 768px) {
            .faq {
                padding: 4rem 4%;
            }

            .faq-question {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }

            .faq-answer p {
                padding: 0 1.5rem 1.2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .faq {
                padding: 3rem 4%;
            }

            .faq-container {
                border-radius: 8px;
            }

            .faq-question {
                padding: 1rem 1.2rem;
            }

            .faq-answer p {
                padding: 0 1.2rem 1rem;
            }

            .faq-cta {
                padding: 1.5rem;
            }
        }

        @media screen and (max-width: 320px) {
            .faq {
                padding: 2.5rem 4%;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 0.8rem 1rem;
            }

            .faq-answer p {
                padding: 0 1rem 0.8rem;
                font-size: 0.95rem;
            }
        }

        /* Responsive map styles */
        @media (max-width: 768px) {
            .map-container {
                margin-top: 2rem;
            }

            .map-wrapper {
                height: 300px;
                border-radius: 16px;
            }

            .map-wrapper iframe {
                border-radius: 16px;
            }

            .map-overlay {
                position: static;
                margin-bottom: 1rem;
                max-width: none;
                border-radius: 12px;
            }
        }

        @media (max-width: 480px) {
            .map-wrapper {
                height: 250px;
            }

            .map-overlay {
                padding: 1rem;
            }

            .map-directions {
                padding: 0.625rem 0.875rem;
                font-size: 0.8125rem;
            }
        }

        /* iPhone 5 map styles */
        @media (max-width: 320px) {
            .map-wrapper {
                height: 200px;
                border-radius: 12px;
            }

            .map-wrapper iframe {
                border-radius: 12px;
            }

            .map-overlay {
                padding: 0.875rem;
            }
        }

        /* Responsive design for contact */
        @media (min-width: 480px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 768px) {
            .contact {
                padding: 6rem 2rem;
            }

            .contact-container {
                grid-template-columns: 1fr 1.2fr;
                gap: 3rem;
                align-items: start;
            }

            .contact-info-item {
                padding: 1.5rem;
            }

            .contact-form-container {
                padding: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .contact-info-item {
                gap: 1.5rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* iPhone 5 and smaller devices */
        @media (max-width: 320px) {
            .contact {
                padding: 2rem 0.75rem;
            }

            .contact-info,
            .contact-form-container {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .contact-info-item {
                padding: 0.75rem;
                margin-bottom: 1.5rem;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 0.875rem 1rem;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 15px;
            }
        }

        /* Animation for form submission */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .btn-primary:active {
            animation: pulse 0.2s ease-in-out;
        }

        .slideshow-banner {
            position: relative;
            height: 300px;
            width: 100%;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(2, 59, 85, 0.3) 0%,
                    rgba(0, 71, 83, 0.3) 50%,
                    rgba(9, 17, 31, 0.4) 100%);
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            backdrop-filter: blur(10px);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: 2rem 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translate(-50%, -50%) translateY(30px);
            transition: all 0.8s ease-out 0.5s;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }

        .slide-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .slide-subtitle {
            font-size: 1.2rem;
            color: white;
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 3;
            transform-origin: left;
            animation: progress 4s linear infinite;
        }

        @keyframes progress {
            0% {
                width: 0%;
            }

            100% {
                width: 100%;
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid var(--glass-border);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .indicator.active {
            background: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
        }

        /* Content below banner for context */
        .content {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .dark .content h1 {
            color: white;
        }

        .content p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .slideshow-banner {
                height: 250px;
            }

            .slide-title {
                font-size: 1.2rem;
            }

            .slide-subtitle {
                font-size: 0.65rem;
            }

            .slide-content {
                padding: 1.5rem 2rem;
            }

            .content h1 {
                font-size: 2.5rem;
            }
        }

        /* Responsive Styles for Newsletter Section */
        @media screen and (max-width: 992px) {
            .newsletter-container {
                grid-template-columns: 1fr;
            }

            .newsletter-image {
                display: none;
            }

            .newsletter-content {
                padding: 2.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .newsletter {
                padding: 4rem 4%;
            }

            .newsletter-content {
                padding: 2rem;
            }

            .newsletter-title {
                font-size: 1.8rem;
            }

            .form-group {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }

            .newsletter-features {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .newsletter {
                padding: 3rem 4%;
            }

            .newsletter-content {
                padding: 1.5rem;
            }

            .newsletter-title {
                font-size: 1.6rem;
            }

            .newsletter-subtitle {
                font-size: 1rem;
            }

            .newsletter-input {
                padding: 0.8rem 1.2rem;
            }
        }

        @media screen and (max-width: 320px) {
            .newsletter {
                padding: 2.5rem 4%;
            }

            .newsletter-content {
                padding: 1.2rem;
            }

            .newsletter-title {
                font-size: 1.4rem;
            }

            .newsletter-agree {
                font-size: 0.8rem;
            }

            .feature-item {
                font-size: 0.85rem;
            }
        }

        /* Responsive Styles for 3-Row INSIGHTS Grid */
        @media screen and (max-width: 1200px) {
            .insights-grid {
                gap: 1.5rem;
            }

            .insight-content h3 {
                font-size: 1.1rem;
            }
        }

        @media screen and (max-width: 992px) {
            .insights-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }
        }

        @media screen and (max-width: 768px) {
            .insights {
                padding: 4rem 4%;
            }

            .insights-grid {
                gap: 1.5rem;
            }

            .insight-image {
                height: 180px;
            }

            .insight-content {
                padding: 1.2rem;
            }
        }

        @media screen and (max-width: 600px) {
            .insights-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 1fr);
            }
        }

        @media screen and (max-width: 480px) {
            .insights {
                padding: 3rem 4%;
            }

            .insight-content h3 {
                font-size: 1.1rem;
            }

            .insight-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media screen and (max-width: 320px) {
            .insights {
                padding: 2.5rem 4%;
            }

            .insight-card {
                border-radius: 8px;
            }

            .insight-image {
                height: 160px;
            }

            .insight-category {
                font-size: 0.75rem;
                padding: 0.3rem 0.6rem;
            }

            .insight-excerpt {
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }
        }

        @media screen and (max-width: 768px) {
            .navbar {
                padding: 1rem 4%;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                flex-direction: column;
                background: white;
                padding: 5rem 1.5rem 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1.2rem 0;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .hamburger {
                display: block;
                z-index: 1001;
                font-size: 1.4rem;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.8rem;
                margin-top: 1.5rem;
            }

            .btn {
                width: 100%;
                text-align: center;
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* iPhone 5/SE and other very small screens */
        @media screen and (max-width: 320px) {
            .navbar {
                padding: 0.8rem 4%;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo img {
                height: 22px;
                margin-right: 5px;
            }

            .hamburger {
                font-size: 1.3rem;
            }

            .nav-links {
                width: 85%;
                padding: 4.5rem 1rem 2rem;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .hero-title {
                font-size: 1.9rem;
                margin-bottom: 0.8rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1.2rem;
            }

            .hero-content {
                padding: 1rem;
            }

            .btn {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        /* Responsive Styles for About Section */
        @media screen and (max-width: 992px) {
            .about-container {
                gap: 3rem;
            }
        }

        @media screen and (max-width: 768px) {
            .about {
                padding: 3.5rem 4%;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }

            .about-content h3 {
                font-size: 1.6rem;
                margin-bottom: 1.2rem;
            }

            .about-content p {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin-top: 1.5rem;
            }

            .stat-item {
                padding: 1.2rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .about-image {
                order: -1;
            }
        }

        @media screen and (max-width: 480px) {
            .about {
                padding: 3rem 4%;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.9rem;
            }
        }

        /* Extra small devices (320px and below) */
        @media screen and (max-width: 320px) {
            .about {
                padding: 2.5rem 4%;
            }

            .about-content h3 {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .about-content p {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }

            .stats-grid {
                margin-top: 1.2rem;
                gap: 0.8rem;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

        /* Responsive Styles for Services Section */
        @media screen and (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .services {
                padding: 4rem 4%;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .service-card {
                padding: 1.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .services {
                padding: 3rem 4%;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1.2rem;
            }

            .service-icon i {
                font-size: 1.7rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }
        }

        @media screen and (max-width: 320px) {
            .services {
                padding: 2.5rem 4%;
            }

            .service-card {
                padding: 1.2rem;
            }

            .service-features li {
                font-size: 0.9rem;
            }

            .service-cta {
                font-size: 0.95rem;
            }
        }

        /* Responsive Styles for Pricing Section */
        @media screen and (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
        }

        @media screen and (max-width: 768px) {
            .pricing {
                padding: 4rem 4%;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .pricing-card {
                padding: 1.5rem;
            }

            .price {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .pricing {
                padding: 3rem 4%;
            }

            .pricing-header h3 {
                font-size: 1.3rem;
            }

            .pricing-features li {
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 320px) {
            .pricing {
                padding: 2.5rem 4%;
            }

            .pricing-card {
                padding: 1.2rem;
            }

            .price {
                font-size: 2.2rem;
            }

            .pricing-features li {
                font-size: 0.9rem;
            }

            .pricing-cta {
                padding: 0.8rem;
                font-size: 0.95rem;
            }
        }

        /* Responsive Styles for Testimonials */
        @media screen and (max-width: 992px) {
            .testimonials-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .testimonials {
                padding: 4rem 4%;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 2rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .testimonials {
                padding: 3rem 4%;
            }

            .testimonial-text:before {
                font-size: 3rem;
                top: -1rem;
                left: -0.5rem;
            }

            .author-avatar {
                width: 45px;
                height: 45px;
            }
        }

        @media screen and (max-width: 320px) {
            .testimonials {
                padding: 2.5rem 4%;
            }

            .testimonial-card {
                padding: 1.2rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .author-details h4 {
                font-size: 0.95rem;
            }

            .author-details p {
                font-size: 0.8rem;
            }
        }


        /* Sections animation*/
        @media (prefers-reduced-motion: reduce) {

            .section-animate,
            .service-card,
            .pricing-card,
            .feature-card,
            .stat-item {
                transition: opacity 0.3s ease-out;
                transform: none !important;
            }
        }

        /* Hardware acceleration for smoother animations */
        .service-card,
        .pricing-card,
        .feature-card {
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }