/* ============================================
           SPLASH SCREEN STYLES
        ============================================ */
        #splashScreen {
            position: fixed;
            inset: 0;
            background: #e8f5e9;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .splash-screen-hiding {
            animation: splashExit 0.6s ease forwards !important;
        }

        /* Floating Gradient Waves */
        .splash-bg-layer,
        .splash-bg-layer2 {
            position: absolute;
            width: 140%;
            height: 140%;
            top: -20%;
            left: -20%;
            border-radius: 40%;
            animation: waveMotion 6s infinite alternate ease-in-out;
            filter: blur(60px);
        }

        .splash-bg-layer {
            background: #a5d6a7;
            opacity: 0.7;
        }

        .splash-bg-layer2 {
            background: #81c784;
            animation-delay: 1.5s;
            opacity: 0.6;
        }

        /* Logo + Text */
        .splash-content {
            position: relative;
            z-index: 10;
            text-align: center;
            animation: contentAppear 0.8s ease forwards;
        }

        .splash-logo {
            width: 130px;
            height: 130px;
            object-fit: contain;
            border-radius: 50%;
            background: #ffffff;
            padding: 10px;
            box-shadow: 0px 10px 25px rgba(0,0,0,0.18);
            animation: logoPop 0.9s cubic-bezier(.21,1.18,.54,1.05);
            aspect-ratio: 1;
        }

        .splash-title {
            font-size: 2.1rem;
            font-weight: 900;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1b5e20;
            margin-top: 14px;
            letter-spacing: .8px;
            animation: fadeSlideUp 0.7s ease forwards;
        }

        .splash-tagline {
            font-size: 1rem;
            color: #2e7d32;
            margin-top: -4px;
            opacity: 0;
            animation: fadeInSoft 0.9s 0.5s ease forwards;
        }

        /* Progress Bar */
        .progress-container {
            width: 180px;
            height: 6px;
            margin: 26px auto 0;
            background: rgba(255,255,255,0.5);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 3px 10px rgba(0,0,0,0.15);
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #2e7d32, #66bb6a);
            animation: fillProgress 1.5s ease-out forwards;
        }

        /* Animations */
        @keyframes waveMotion {
            0% { transform: rotate(0deg) scale(1); }
            100% { transform: rotate(360deg) scale(1.3); }
        }

        @keyframes logoPop {
            0% { transform: scale(0.3); opacity: 0; }
            80% { transform: scale(1.15); }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeInSoft {
            0% { opacity: 0; transform: translateY(6px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeSlideUp {
            0% { opacity: 0; transform: translateY(12px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes contentAppear {
            0% { opacity: 0; transform: translateY(16px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fillProgress {
            0% { width: 0%; }
            60% { width: 70%; }
            100% { width: 100%; }
        }

        @keyframes splashExit {
            0% { opacity: 1; }
            100% { opacity: 0; visibility: hidden; display: none; }
        }

        /* ============================================
           GLOBAL VARIABLES & RESET
        ============================================ */
        :root {
            --primary: #4CAF50;
            --primary-dark: #388E3C;
            --secondary: #FFC107;
            --light: #F5F5F5;
            --dark: #212121;
            --gray: #757575;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Main content initially hidden */
        .main-content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .main-content.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* ============================================
           LAYOUT COMPONENTS
        ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ============================================
           HEADER & NAVIGATION
        ============================================ */
        header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1rem;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 1.2rem;
            border-radius: 6px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            min-height: 44px;
        }
        
        .btn:hover {
            background: #FFB300;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            color: var(--white);
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* ============================================
           MAIN CONTENT SECTIONS
        ============================================ */
        .main {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            display: inline-block;
            padding-bottom: 1rem;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        /* ============================================
           FEATURES SECTION
        ============================================ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        
        .feature-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .feature-card:hover i {
            transform: scale(1.1);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        /* Weather Feature Special Styling */
        .weather-feature {
            background: linear-gradient(135deg, #87CEEB, #4682B4);
            color: white;
        }

        .weather-feature i {
            color: white;
        }

        .weather-feature h3 {
            color: white;
        }
        
        /* ============================================
           ENHANCED TESTIMONIAL SLIDER STYLES
        ============================================ */
        .testimonials {
            padding: 4rem 0;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1200px;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.6s ease;
            padding: 1rem 0;
        }

        .testimonial-card {
            min-width: 350px;
            flex: 0 0 350px;
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            border: 1px solid rgba(76, 175, 80, 0.1);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 4rem;
            color: rgba(76, 175, 80, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
        }

        .testimonial-content p:first-child {
            font-style: italic;
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        .testimonial-content p:last-child {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .stars {
            color: #FFC107;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .prev { left: -25px; }
        .next { right: -25px; }

        /* Progress Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
        }

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

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--primary-dark);
        }
        
        /* ============================================
           SECURITY SECTION
        ============================================ */
        .security-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        
        .security-badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .badge {
            background: var(--white);
            color: var(--primary-dark);
            padding: 2rem 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .badge i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            background: var(--secondary);
            padding: 4rem 0;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .cta-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn-dark {
            background: var(--dark);
            color: var(--white);
        }
        
        .btn-dark:hover {
            background: #424242;
        }
        
        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: #BDBDBD;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #424242;
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #424242;
            color: #BDBDBD;
            font-size: 0.9rem;
        }
        
        /* ============================================
           ANIMATIONS
        ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ============================================
           MOBILE MENU
        ============================================ */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            min-height: 44px;
            min-width: 44px;
            border-radius: 6px;
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* ============================================
           DARK MODE STYLES
        ============================================ */
        body.dark {
            background: #121212;
            color: #e0e0e0;
        }
        
        body.dark .feature-card,
        body.dark .testimonial-card {
            background: #2d2d2d;
            color: #e0e0e0;
        }
        
        body.dark .section-title h2 {
            color: var(--primary);
        }

        body.dark .testimonial-card {
            background: #2d2d2d;
            border-color: rgba(76, 175, 80, 0.2);
        }

        body.dark .testimonial-content p:first-child {
            color: #e0e0e0;
        }

        body.dark .testimonial-author {
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        body.dark .slider-btn {
            background: #2d2d2d;
            color: #e0e0e0;
        }
        
        .dark-mode-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: var(--shadow);
            z-index: 1000;
        }
        
        .dark-mode-toggle:hover {
            transform: scale(1.1);
        }
        
        body.dark .dark-mode-toggle {
            background: var(--primary-dark);
        }
        
        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            
            nav ul.show {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                min-width: 280px;
                flex: 0 0 280px;
                padding: 1.5rem;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .prev { left: -15px; }
            .next { right: -15px; }

            .author-avatar {
                width: 50px;
                height: 50px;
            }

            .author-info h4 {
                font-size: 1rem;
            }

            .testimonial-content p:first-child {
                font-size: 0.95rem;
            }

            .testimonial-content p:last-child {
                font-size: 0.85rem;
            }
            
            .security-badges {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero h1 {
                font-size: 1.6rem;
                line-height: 1.3;
            }
            
            .hero p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem 1rem;
                margin: 0 5px;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .feature-card i {
                font-size: 2.5rem;
            }
            
            .testimonial-card {
                min-width: 85%;
                flex: 0 0 85%;
                margin: 0 10px;
                padding: 1.5rem;
            }

            .slider-btn {
                display: none;
            }

            .testimonial-track {
                gap: 1rem;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
            }
            
            .author-info h4 {
                font-size: 1rem;
            }
            
            .author-info p {
                font-size: 0.85rem;
            }
            
            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .security-badges {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                gap: 1.5rem;
            }
        }

        /* Small Devices (Tablets, 481px to 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        /* Medium Devices (Small Laptops, 769px to 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                max-width: 95%;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .feature-card:hover {
                transform: none;
            }
            
            .btn:hover {
                transform: none;
            }
            
            nav ul li a:hover {
                transform: none;
                background: rgba(255, 255, 255, 0.1);
            }
            
            /* Increase touch targets */
            .btn, nav ul li a {
                min-height: 48px;
            }
            
            .mobile-menu-btn {
                min-height: 48px;
                min-width: 48px;
            }
        }

        /* High DPI Screens */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .author-avatar img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Orientation Specific */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                height: 80vh;
                min-height: 400px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            #splashScreen {
                display: none !important;
            }

            .main-content {
                opacity: 1 !important;
                visibility: visible !important;
            }

            .feature-card,
            .testimonial-card,
            .btn,
            nav ul li a {
                transition: none;
            }
            
            .fade-in,
            .slide-up {
                transition: none;
                opacity: 1;
                transform: none;
            }
        }

        /* Safe Area Insets for Notches */
        @supports(padding: max(0px)) {
            .container {
                padding-left: max(15px, env(safe-area-inset-left));
                padding-right: max(15px, env(safe-area-inset-right));
            }
            
            footer {
                padding-left: max(20px, env(safe-area-inset-left));
                padding-right: max(20px, env(safe-area-inset-right));
            }
        }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* Focus styles */
        button:focus,
        a:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        /* Weather widget styles */
        .weather-widget {
            margin-top: 15px;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 12px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }
        /* Dark Mode Styles for Header */
body.dark header {
    background: linear-gradient(135deg, #2d5a2d, #1e3e1e) !important;
}

body.dark nav ul li a {
    color: #e0e0e0 !important;
}

body.dark nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

body.dark .mobile-menu-btn {
    color: #e0e0e0 !important;
}

body.dark .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}
/* HOW IT WORKS SECTION */
.how-it-works {
    background: var(--light);
    padding: 4rem 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-steps .step {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: var(--transition);
}

.workflow-steps .step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.workflow-steps .step i {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: rgba(76, 175, 80, 0.12);
    padding: 16px;
    border-radius: 50%;
    color: var(--primary);
}

.workflow-steps .step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--primary-dark);
}

.workflow-steps .step p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    .workflow-steps .step {
        padding: 1.8rem 1.4rem;
    }
    .workflow-steps .step h3 {
        font-size: 1.25rem;
    }
}
