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

        /* Mobile text overflow prevention */
        html {
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        :root {
            --primary-color: #0E5EA4;
            --secondary-color: #021732;
            --white: #FFFFFF;
            --dark-grey: #333333;
            --light-grey: #F8F9FA;
            --accent-blue: #007BFF;
            --success-green: #0E5EA4;
            --text-light: #666666;
            --primary-dark: #004d40;
            --primary-light: #00796b;
            --accent: #ffd700;
            --text-dark: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark-grey);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-transform: uppercase;
            color: var(--dark-grey);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
        }

        p {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .container-fluid {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .text-center {
            text-align: center;
        }

        .section-padding {
            padding: 5rem 0;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 2px solid transparent;
            cursor: pointer;
            margin: 0.5rem;
        }

        .btn-primary {
            background-color: #0E5EA4;
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #0a4a7d;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 94, 164, 0.3);
        }

        .btn-secondary {
            background-color: #FFF;
            color: var(--dark-grey);
            border: 2px solid #FFF;
        }

        .btn-secondary:hover {
            transform: translateY(-2px) scale(1.05);
        }

        .btn-outline {
            background-color: transparent;
            color: #0E5EA4;
            border-color: #0E5EA4;
        }

        .btn-outline:hover {
            transform: scale(1.05);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(2, 23, 50, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            transform: translateY(-100%);
            opacity: 0;
            animation: slideInFromTop 0.6s ease-out 0.2s forwards;
        }

        .header.scrolled {
            background: rgba(2, 23, 50, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .header-phone {
            display: flex;
            align-items: center;
            margin-left: 2rem;
        }

        .header-phone a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .header-phone a::first-letter {
            color: #0E5EA4;
        }

        .header-phone a:hover {
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            text-transform: uppercase;
        }

        .nav-menu a:hover {
            color: var(--success-green);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            -webkit-tap-highlight-color: transparent;
        }

        /* Hero Section - Optimized for LCP/CLS */
        .hero {
            min-height: 100vh;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 11vh;
        }

        .hero h1 {
            margin-bottom: 0rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        /* CRO Hero Enhancements */
        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0rem;
            display: inline-block;
        }

        .hero-badge::first-letter {
            color: #0E5EA4;
        }

        .hero-highlight {
            color: #6AABC7;
            text-shadow: 0 0 10px rgba(106, 171, 199, 0.3);
            display: inline-block;
        }

        /* Typing Effect */
        .typing-container {
            display: inline-block;
            position: relative;
            min-width: 200px;
            text-align: left;
        }

        .typed-word {
            display: inline-block;
            border-right: 3px solid #6AABC7;
            animation: blink-cursor 1s infinite;
        }

        @keyframes blink-cursor {
            0%, 50% { border-color: #6AABC7; }
            51%, 100% { border-color: transparent; }
        }

        .typing-effect {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 2s steps(20, end) forwards;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        .deleting-effect {
            overflow: hidden;
            white-space: nowrap;
            animation: deleting 1s steps(20, end) forwards;
        }

        @keyframes deleting {
            from { width: 100%; }
            to { width: 0; }
        }


        .hero-subtext {
            font-size: 1.2rem;
            margin: 0.5rem 0;
            line-height: 1.6;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: white;
        }

        .hero-benefits {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
            white-space: nowrap;
            font-size: 0.9rem;
        }

        .benefit-item::first-letter {
            color: #0E5EA4;
            font-weight: 700;
        }

        .urgency-banner {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-align: center;
            margin: 1.5rem 0;
            font-weight: 600;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
        }

        .hero-trust {
            display: flex;
            justify-content: space-evenly;
            align-items: flex-start;
            gap: 0rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }

        .trust-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 0;
        }

        .trust-number {
            display: block;
            font-size: 2.2rem;
            font-weight: 900;
            color: #6AABC7;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .trust-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            line-height: 1.2;
            text-align: center;
            min-height: 2.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Trust Badges */
        .trust-badges-section {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: linear-gradient(135deg, #0E5EA4, #0a4a7d);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(14, 94, 164, 0.3);
        }

        /* Recent Activity */
        .recent-activity {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 4px solid #0E5EA4;
        }

        .recent-activity h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .activity-item {
            margin: 0.75rem 0;
            font-size: 0.9rem;
            color: var(--text-color);
            animation: fadeInLeft 0.6s ease-out;
        }

        .activity-item:nth-child(2) { animation-delay: 0.2s; }
        .activity-item:nth-child(3) { animation-delay: 0.4s; }
        .activity-item:nth-child(4) { animation-delay: 0.6s; }



        /* Lead Capture Form Styles */
        .quote-form-section {
            background: linear-gradient(135deg, var(--secondary-color), rgba(2, 23, 50, 0.9));
            color: white;
            position: relative;
        }

        .quote-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(14, 94, 164, 0.05), transparent);
            pointer-events: none;
        }

        .form-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .form-header h2 {
            color: white;
        }

        .form-header-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #1a73e8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            box-shadow: 0 8px 30px rgba(14, 94, 164, 0.3);
        }

        .form-subtitle {
            font-size: 1.2rem;
            margin: 1rem auto 0 auto;
            opacity: 0.9;
            max-width: 600px;
            text-align: center;
            line-height: 1.6;
        }

        .quote-form-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            color: var(--text-color);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .form-intro {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem; 
            border-bottom: 1px solid #e9ecef;
        }

        .form-intro h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .form-intro p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .form-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .form-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--success-green);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-feature svg {
            flex-shrink: 0;
        }

        .quote-form {
            background: transparent;
            padding: 0;
            box-shadow: none;
            max-width: none;
        }

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

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 0.95rem;
        }

        .form-group label svg {
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .quote-form input,
        .quote-form textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: inherit;
            background: #f8f9fa;
        }

        .quote-form input:focus,
        .quote-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(14, 94, 164, 0.1);
        }

        .quote-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit-btn {
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, #0E5EA4, #0a4a7d);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(14, 94, 164, 0.4);
        }

        .form-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .trust-indicators {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0rem;
            margin-bottom: 0.5rem;
        }

        .trust-item:last-child {
            margin-bottom: 0;
        }

        .trust-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #1a73e8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .trust-content h4 {
            margin: 0 0 0.25rem 0;
            color: white;
            font-size: 1rem;
        }

        .trust-content p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .contact-info h4 {
            margin: 0 0 0.5rem 0;
            color: white;
            font-size: 1.2rem;
        }

        .contact-info p {
            margin: 0 0 1.5rem 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #0E5EA4, #0a4a7d);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .phone-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 94, 164, 0.3);
        }

        .testimonial-mini {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .testimonial-rating {
            margin-bottom: 1rem;
        }

        .testimonial-rating .stars {
            color: #ffd700;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: white;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
            line-height: 1;
        }

        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
            line-height: 1;
        }

        .testimonial-author {
            text-align: right;
        }

        .author-name {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .author-location {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0E5EA4;
            box-shadow: 0 0 0 3px rgba(14, 94, 164, 0.1);
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .form-next {
            margin-top: 2rem;
        }

        .form-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 1rem;
        }

        .guarantee-box,
        .testimonial-mini,
        .urgency-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .guarantee-box h4,
        .testimonial-mini h4,
        .urgency-box h4 {
            color: #0E5EA4;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .guarantee-box ul {
            list-style: none;
            padding: 0;
        }

        .guarantee-box li {
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .testimonial-mini .stars {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .testimonial-mini p {
            font-style: italic;
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .testimonial-mini cite {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .countdown {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
        }

        #countdown {
            font-size: 1.2rem;
            font-weight: 900;
        }

        .btn-pulse {
            animation: pulse 2s infinite;
        }

        .final-guarantee {
            text-align: center;
            margin-top: 2rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
        }

         /* Services Section */
         /* Services Section */
        .services {
            background: var(--light-grey);
            background-image: url('assets/portfolio/kitchen 6.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.8), rgba(248, 249, 250, 0.85));
            pointer-events: none;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

         .services h2 {
             color: var(--dark-grey);
             margin-bottom: 1rem;
         }

         .services-subtitle {
             font-size: 1.2rem;
             color: var(--text-light);
             max-width: 650px;
             margin: 0 auto;
             line-height: 1.6;
         }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        /* Desktop: 4 columns in one row */
        @media (min-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Tablet: 2 columns */
        @media (max-width: 1199px) and (min-width: 769px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile: 1 column */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Services section - minimal horizontal spacing for maximum card width */
        .services .container {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        /* Desktop: minimal spacing for maximum width utilization */
        @media (min-width: 1200px) {
            .services .container {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
            }
        }

        /* Large desktop: almost no spacing for full width utilization */
        @media (min-width: 1400px) {
            .services .container {
                padding-left: 0.125rem;
                padding-right: 0.125rem;
                max-width: 1600px;
            }
        }

         .service-card {
             background: var(--white);
             padding: 1rem;
             border-radius: 15px;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
             border: 1px solid #f0f0f0;
             transition: all 0.3s ease;
             position: relative;
             display: flex;
             flex-direction: column;
             height: 100%;
         }

         .service-card:hover {
             transform: translateY(-8px);
             box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
             border-color: var(--primary-color);
         }

        .service-image-wrapper {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
            position: relative;
            background: #f8f9fa;
        }

         .service-card:hover .service-image-wrapper {
             transform: scale(1.02);
             box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
         }

        .service-image {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            transition: all 0.3s ease;
            display: block !important;
            image-rendering: auto !important;
            -ms-interpolation-mode: bicubic !important;
            backface-visibility: hidden;
            max-width: none !important;
            max-height: none !important;
        }

        .service-card:hover .service-image {
            transform: translateX(0) scale(1.05);
            filter: brightness(1.1);
        }

        /* High-DPI display optimization for service images */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .service-image {
                image-rendering: auto;
            }
        }

         .service-image-overlay {
             position: absolute;
             top: 0;
             left: 0;
             right: 0;
             bottom: 0;
             background: linear-gradient(45deg, rgba(14, 94, 164, 0.8), rgba(14, 94, 164, 0.8));
             opacity: 0;
             transition: all 0.3s ease;
             display: flex;
             align-items: center;
             justify-content: center;
         }


         .service-overlay-text {
             color: white;
             font-weight: 700;
             font-size: 1.1rem;
             text-align: center;
         }

         .service-content {
             text-align: center;
             flex-grow: 1;
             display: flex;
             flex-direction: column;
         }

         .service-card h3 {
             color: var(--secondary-color);
             margin-bottom: 1rem;
             font-size: 1.4rem;
             font-weight: 700;
         }

         .service-card p {
             color: var(--text-light);
             line-height: 1.7;
             margin-bottom: 1.5rem;
             flex-grow: 1;
         }

         .service-features {
             display: flex;
             justify-content: center;
             gap: 0.5rem;
             flex-wrap: wrap;
             margin-top: auto;
         }

         .feature-tag {
             background: rgba(14, 94, 164, 0.1);
             color: #0E5EA4;
             padding: 0.25rem 0.75rem;
             border-radius: 15px;
             font-size: 0.8rem;
             font-weight: 600;
             border: 1px solid rgba(14, 94, 164, 0.2);
         }


        .services-cta {
            text-align: center;
            position: relative;
            z-index: 2;
        }

         .services-cta p {
             font-size: 1.1rem;
             color: var(--text-light);
             margin-bottom: 2rem;
         }

        /* Process Section */
        /* Process Section */
        .process {
            background: var(--white);
            position: relative;
        }

        .process-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process h2 {
            color: var(--dark-grey);
            margin-bottom: 1rem;
        }

        .process-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .process-step {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .step-number {
            background: var(--primary-color);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(14, 94, 164, 0.3);
        }

        .step-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .process-step h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .process-step p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .process-cta {
            text-align: center;
        }

        .process-cta p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

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

        .about-text h2 {
            color: var(--dark-grey);
            margin-bottom: 2rem;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* About Stats */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 2rem;
            background: var(--light-grey);
            border-radius: 15px;
        }

        .about-stats .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .about-stats .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .about-stats .stat-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-color);
        }

        .about-stats .stat-proof {
            font-size: 0.8rem;
            color: var(--text-color);
            margin-top: 0.25rem;
            font-style: italic;
        }

        /* Gallery Marquee Section */
        .gallery-marquee {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .gallery-marquee::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--light-grey), transparent);
            z-index: 1;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .gallery-marquee h2 {
            color: var(--dark-grey);
            margin-bottom: 1rem;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .gallery-marquee-container {
            width: 100vw;
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
            margin-left: calc(-50vw + 50%);
        }

        .gallery-marquee-track {
            display: flex;
            gap: 2rem;
            animation: galleryScroll 355s linear infinite;
            width: max-content;
        }

        .gallery-marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes galleryScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-marquee-track-reverse {
            display: flex;
            gap: 2rem;
            animation: galleryScrollReverse 355s linear infinite;
            width: max-content;
        }

        .gallery-marquee-track-reverse:hover {
            animation-play-state: paused;
        }

        @keyframes galleryScrollReverse {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .gallery-item {
            min-width: 400px;
            max-width: 400px;
            height: 350px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
            background-size: 400% 400%;
            animation: shimmer 2s ease-in-out infinite;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        } */

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            opacity: 0;
        }

        .gallery-item img.loaded {
            opacity: 1;
        }

        .gallery-item.image-loaded {
            animation: none;
            background: transparent;
        }

        /* .gallery-item:hover img {
            transform: scale(1.05);
        } */

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 94, 164, 0.9), rgba(2, 23, 50, 0.9));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 20px;
        }

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

        .gallery-overlay-content {
            text-align: center;
            padding: 1.5rem;
            transform: translateY(20px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* .gallery-item:hover .gallery-overlay-content {
            transform: translateY(0);
        } */

        /* New hover effect with brightness and magnifying glass */
        .gallery-item:hover img {
            filter: brightness(1.2);
            transform: scale(1.02);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 10;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 11;
        }

        .gallery-item:hover::after,
        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item {
            cursor: pointer;
        }

        /* Smaller desktop screens (13-14 inch laptops) */
        @media (max-width: 1440px) and (min-width: 1200px) {
            .service-card p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .feature-tag {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }
            
            /* Testimonial cards font size reduction */
            .testimonial-card-splide .testimonial-text {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .testimonial-card-splide .author-name {
                font-size: 0.9rem;
                white-space: nowrap;
            }
            
            .testimonial-card-splide .author-title {
                font-size: 0.8rem;
            }
            
            .testimonial-card-marquee .testimonial-text {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .testimonial-card-marquee .author-name {
                font-size: 0.9rem;
                white-space: nowrap;
            }
            
            .author-title {
                font-size: 0.8rem;
            }
        }

        .gallery-overlay-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .gallery-overlay-content p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Gallery Modal Styles */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .gallery-modal-content {
            position: relative;
            margin: 2% auto;
            width: 95%;
            max-width: 1200px;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-modal-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .gallery-modal-close {
            position: absolute;
            top: -15px;
            right: 0;
            font-size: 40px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        /* Responsive Design for Gallery */
        @media (max-width: 768px) {
            .gallery-marquee h2 {
                font-size: 2rem;
            }

            .gallery-item {
                min-width: 320px;
                max-width: 320px;
                height: 280px;
            }

            .gallery-marquee-track {
                gap: 1.5rem;
            }

            .gallery-marquee-track-reverse {
                gap: 1.5rem;
            }

            .gallery-overlay-content {
                padding: 1.5rem;
            }

            .gallery-overlay-content h3 {
                font-size: 1.1rem;
            }

            .gallery-overlay-content p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-marquee h2 {
                font-size: 1.75rem;
            }

            .gallery-item {
                min-width: 280px;
                max-width: 280px;
                height: 240px;
            }

            .gallery-marquee-track {
                gap: 1rem;
            }

            .gallery-marquee-track-reverse {
                gap: 1rem;
            }

            .gallery-overlay-content {
                padding: 1rem;
            }

            .gallery-modal-content {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .gallery-modal-close {
                position: static;
                order: 2;
                font-size: 1.2rem;
                width: 120px;
                height: 50px;
                background: rgb(0, 0, 0);
                color: white;
                border: 2px solid white;
                border-radius: 25px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
                z-index: 10003;
                font-weight: bold;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto;
            }

            .gallery-modal-image {
                order: 1;
                max-width: 100%;
                max-height: calc(100vh - 140px);
                object-fit: contain;
            }
        }

        /* Cross-browser compatibility */
        @supports not (backdrop-filter: blur(5px)) {
            .gallery-modal {
                background-color: rgba(0, 0, 0, 0.95);
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .gallery-marquee-track {
                animation-duration: 426s;
            }
            .gallery-marquee-track-reverse {
                animation-duration: 426s;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            margin: 2% auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-info {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 1rem;
            text-align: center;
            max-width: 600px;
        }

        .modal-info h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .modal-info p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgb(0, 0, 0);
            transform: scale(1.1);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .modal-nav:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-prev {
            left: 20px;
        }

        .modal-next {
            right: 20px;
        }



        .overlay-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .overlay-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        .project-details {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .project-type,
        .project-location {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.8;
        }

        .project-type::first-letter,
        .project-location::first-letter {
            color: #0E5EA4;
        }


        /* Testimonials Marquee Section */
        .testimonials-marquee {
            background: #f8f9fa;
            color: var(--text-color);
            overflow: hidden;
            position: relative;
        }



        .testimonials-marquee .container {
            position: relative;
            z-index: 2;
        }

        .testimonials-marquee .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--light-grey);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin-bottom: 2rem;
            border: 1px solid #e0e0e0;
        }

        .star-icon {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .rating-text {
            color: var(--text-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonials-marquee h2 {
            color: var(--dark-grey);
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .marquee-container {
            width: 100vw;
            overflow: hidden;
            position: relative;
            padding: 2rem 0 6rem 0;
            margin-left: calc(-50vw + 50%);
        }

        .marquee-track {
            display: flex;
            gap: 2rem;
            animation: marqueeScroll 60s linear infinite;
            width: max-content;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-card-marquee {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            min-width: 400px;
            max-width: 400px;
            color: var(--text-color);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }


        .testimonial-card-marquee:hover {
            transform: translateY(-4px);
            border-color: #0E5EA4;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary-color);
            font-family: serif;
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .testimonial-card-marquee .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #000000;
            margin-bottom: 2rem;
            font-style: normal;
            position: relative;
            z-index: 2;
        }

        .testimonial-stars {
            color: #FFD700;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 0.5rem;
            display: block;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }


        .author-details {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            font-size: 1rem;
            color: #000000;
            margin: 0 0 0.25rem 0;
        }

        .author-title {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
            opacity: 0.8;
        }

        /* Review Section - Two Column Layout */
        .review-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('marble.webp') center/cover;
            padding: 6rem 0;
            color: var(--text-color);
        }

        .review-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .review-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .review-item {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .review-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-grey);
            margin: 0;
            line-height: 1.3;
        }

        .review-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
        }

        .review-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }

        .review-image img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            object-position: center;
            display: block;
            border-radius: 12px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .review-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 1rem;
            }

            .review-content {
                gap: 2rem;
                order: 2;
            }

            .review-image {
                order: 1;
                height: 400px;
            }

            .review-item h3 {
                font-size: 1.25rem;
            }

            .testimonials-marquee h2 {
                font-size: 2rem;
            }

            .testimonial-card-marquee {
                min-width: 320px;
                max-width: 320px;
                padding: 1.5rem;
            }

            .quote-icon {
                font-size: 3rem;
            }

            .marquee-container {
                width: 100%;
                margin-left: 0;
                padding: 1rem 0;
            }

            .marquee-track {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.5rem;
                animation: none;
                width: 100%;
                transform: none;
            }

            .testimonial-card-marquee {
                min-width: auto;
                max-width: none;
                width: 100%;
            }

            /* Hide testimonials beyond the first 5 on mobile */
            .testimonial-card-marquee:nth-child(n+6) {
                display: none;
            }

            .rating-badge {
                padding: 0.4rem 0.8rem;
            }

            .rating-text {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 390px) {
            /* Mobile Header Fix for 375px and 390px */
            .nav-right .btn {
                padding: 0.3rem 0.6rem;
                font-size: 0.7rem;
            }

            .logo img {
                height: 35px;
            }

            .nav {
                padding: 0.4rem 0.5rem;
                min-height: 50px;
            }
        }

        @media (max-width: 480px) {
            /* Mobile Header Fix for 375px and 390px */
            .header {
                padding: 0;
            }

            .nav {
                padding: 0.5rem 0.75rem;
                min-height: 55px;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                flex-shrink: 0;
                margin-right: 0.5rem;
            }

            .logo img {
                height: 40px;
            }

            .nav-right {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                flex-shrink: 0;
                min-width: 0;
            }

            .nav-right .btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
                white-space: nowrap;
                min-width: auto;
            }

            .mobile-menu-toggle {
                display: block;
                font-size: 1.2rem;
                padding: 0.25rem;
                background: none;
                border: none;
                color: white;
                cursor: pointer;
            }

            .review-container {
                padding: 0 0.75rem;
                gap: 2rem;
            }

            .review-content {
                gap: 1.5rem;
            }

            .review-item h3 {
                font-size: 1.1rem;
            }

            .review-item p {
                font-size: 0.9rem;
            }

            .review-image {
                height: 300px;
            }

            .testimonials-marquee h2 {
                font-size: 1.75rem;
            }

            .marquee-container {
                width: 100%;
                margin-left: 0;
                padding: 1rem 0;
            }

            .marquee-track {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1rem;
                animation: none;
                width: 100%;
                transform: none;
            }

            .testimonial-card-marquee {
                min-width: auto;
                max-width: none;
                width: 100%;
                padding: 1.25rem;
            }

            /* Hide testimonials beyond the first 5 on mobile */
            .testimonial-card-marquee:nth-child(n+6) {
                display: none;
            }

            .testimonial-card-marquee .testimonial-text {
                font-size: 0.9rem;
            }


            .author-name {
                font-size: 0.9rem;
            }

            .author-title {
                font-size: 0.8rem;
            }
        }

        /* Cross-browser compatibility */
        @supports not (backdrop-filter: blur(10px)) {
            .rating-badge {
                background: #f5f5f5;
            }
            
            .testimonial-card-marquee {
                background: var(--white);
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .marquee-track {
                animation-duration: 120s;
            }
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('assets/images/nextlevelkitchens_photo_11.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(14, 94, 164, 0.03), transparent);
            pointer-events: none;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing h2 {
            color: var(--dark-grey);
            text-align: center;
            margin-bottom: 1rem;
        }

        .pricing-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 0;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--light-grey);
            border-radius: 20px;
            padding: 0;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.08);
            box-shadow: 0 20px 50px rgba(14, 94, 164, 0.25);
            animation: featuredPulse 3s ease-in-out infinite;
        }

        @keyframes featuredPulse {
            0%, 100% {
                transform: scale(1.08);
                box-shadow: 0 20px 50px rgba(14, 94, 164, 0.25);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 25px 60px rgba(14, 94, 164, 0.3);
            }
        }

        .pricing-card.featured:hover {
            animation-play-state: paused;
            transform: translateY(-15px) scale(1.12);
            box-shadow: 0 30px 70px rgba(14, 94, 164, 0.35);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-color), #1a73e8);
            color: var(--white);
            padding: 0.5rem 2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(14, 94, 164, 0.3);
            z-index: 10;
            margin-top: 20px;
        }

        .pricing-header-content {
            padding: 1rem 1.5rem 1rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .pricing-icon {
            width: 370px;
            height: 220px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .pricing-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-icon img.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .pricing-card:hover .pricing-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.featured .pricing-icon {
            box-shadow: 0 12px 35px rgba(14, 94, 164, 0.3);
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0E5EA4;
            margin-bottom: 0rem;
            background: linear-gradient(135deg, #0E5EA4, #0a4a7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-description {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.5;
        }

        .pricing-features {
            padding: 1rem 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--dark-grey);
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .feature-check {
            color: var(--success-green);
            flex-shrink: 0;
            background: rgba(40, 167, 69, 0.1);
            border-radius: 50%;
            padding: 2px;
        }

        .pricing-cta {
            padding: 1rem 1.5rem;
            border-top: 1px solid #f0f0f0;
        }

        .pricing-cta .btn {
            width: 100%;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .pricing-bottom {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .pricing-guarantee {
            display: flex;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            align-items: center;
        }



        /* Light Guarantee Section */
        .guarantee-light-section {
            background: #e5e7eb;
            position: relative;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .guarantee-light {
            background: none;
            border-radius: 0;
            padding: 2.5rem 0;
            margin: 0;
            position: relative;
            overflow: visible;
            box-shadow: none;
            border: none;
        }

        .guarantee-light-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .guarantee-light-header {
            margin-bottom: 2rem;
        }

        .guarantee-light-text h4 {
            margin: 0;
            color: var(--dark-grey);
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .guarantee-light-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .guarantee-light-feature {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .guarantee-light-feature:hover {
            background: var(--white);
            transform: translateY(-5px);
            border-color: #0E5EA4;
            box-shadow: 0 10px 30px rgba(14, 94, 164, 0.15);
        }

        .guarantee-light-feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(14, 94, 164, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0E5EA4;
            margin: 0 auto 1rem auto;
            border: 2px solid rgba(14, 94, 164, 0.2);
        }

        .guarantee-light-feature-title {
            color: var(--dark-grey);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .guarantee-light-feature-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        /* Mobile responsiveness for light guarantee section */
        @media (max-width: 768px) {
            .guarantee-light {
                padding: 2rem 0;
            }

            .guarantee-light-content {
                padding: 0 1.5rem;
            }

            .guarantee-light-text h4 {
                font-size: 1.6rem;
                letter-spacing: 0.5px;
            }

            .guarantee-light-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .guarantee-light-feature {
                padding: 1.5rem;
            }

            .guarantee-light-feature-icon {
                width: 50px;
                height: 50px;
            }
        }

        /* FAQ Section */
        .faq {
            background: var(--light-grey);
            position: relative;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(14, 94, 164, 0.02), transparent);
            pointer-events: none;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq h2 {
            color: var(--dark-grey);
            text-align: center;
            margin-bottom: 1rem;
        }

        .faq-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 0;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-content {
            max-width: 1200px;
            margin: 0 auto;
        }


        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid #e9ecef;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-color);
        }

        .faq-question {
            background: var(--white);
            color: var(--secondary-color);
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-item:not(.collapsed) .faq-question {
            background: linear-gradient(135deg, var(--primary-color), #1a73e8);
            color: var(--white);
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            background: var(--light-grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .faq-question:hover .faq-icon {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .faq-item:not(.collapsed) .faq-question:hover .faq-icon {
            background: rgba(255, 255, 255, 0.3);
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            color: var(--text-light);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item:not(.collapsed) .faq-toggle {
            color: var(--white);
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
        }

        .faq-item:not(.collapsed) .faq-answer {
            padding: 2rem;
            max-height: 500px;
        }

        .faq-answer-content {
            color: var(--dark-grey);
            line-height: 1.6;
        }

        .faq-answer-content p {
            margin-bottom: 1rem;
        }

        .faq-answer-content p:last-child {
            margin-bottom: 0;
        }

        .faq-answer-content ul {
            margin: 1rem 0;
            padding-left: 0;
            list-style: none;
        }

        .faq-answer-content li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .faq-answer-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }



        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 2rem 0 1rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-brand h3 {
            color: white;
            margin: 0;
            font-size: 1.5rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a {
            color: var(--success-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Social Media Links */
        .social-links {
            margin-top: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .social-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .social-link:hover .social-icon {
            background: #0E5EA4;
            transform: scale(1.1);
        }

        /* Section Buttons */
        .section-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn-phone {
            background-color: transparent;
            color: #0E5EA4;
            border: 2px solid #0E5EA4;
        }

        .btn-phone:hover {
            transform: translateY(-2px) scale(1.05);
        }

        /* Quote Popup Styles */
        .quote-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .quote-popup.active {
            display: flex;
        }

        .quote-popup-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 23, 50, 0.6);
            backdrop-filter: blur(3px);
        }

        .quote-popup-content {
            position: relative;
            background: var(--white);
            border-radius: 16px;
            padding: 1.5rem;
            max-width: 600px;
            width: 100%;
            max-height: 85vh;
            overflow: visible;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: popupSlideIn 0.3s ease-out;
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .quote-popup-close {
            position: absolute;
            top: -10px;
            right: -10px;
            background: rgb(0, 0, 0);
            border: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            line-height: 1;
            transition: all 0.3s ease;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 10005;
        }

        .quote-popup-close:hover {
            background: rgba(0, 0, 0, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .quote-popup-inner {
            max-height: none;
            overflow-y: visible;
        }

        @media (max-width: 768px) {
            .quote-popup-inner {
                max-height: none;
                overflow-y: visible;
            }
        }

        .quote-popup-header {
            text-align: center;
            margin-bottom: 1.25rem;
        }

        .quote-popup-header h2 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

        .quote-popup-header p {
            color: var(--text-color);
            font-size: 0.9rem;
        }

        .quote-popup .quote-form {
            margin-top: 0;
        }

        .quote-popup .form-group {
            margin-bottom: 1.25rem;
        }

        .quote-popup .form-group:last-of-type {
            margin-bottom: 1rem;
        }

        .quote-popup .form-group label {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .quote-popup .quote-form input,
        .quote-popup .quote-form textarea,
        .quote-popup .quote-form select {
            font-size: 0.85rem;
            padding: 0.7rem 1rem;
        }

        .quote-popup-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .quote-popup-form-row .form-group {
            margin-bottom: 0;
        }

        /* Exit Intent Popup Styles */
        .exit-popup-overlay[aria-hidden="true"] {
            display: none;
        }

        .exit-popup-overlay[aria-hidden="false"] {
            display: flex;
        }

        .exit-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn .3s ease-out;
        }

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

        .exit-popup-container {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow: visible;
            position: relative;
            animation: slideUp .3s ease-out;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

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

        .exit-popup-content {
            padding: 40px 30px 30px;
            max-height: calc(90vh - 40px);
            overflow-y: auto;
        }

        @media (max-width: 768px) {
            .exit-popup-content {
                max-height: none;
                overflow-y: visible;
            }
        }

        .exit-popup-close {
            position: absolute;
            top: -10px;
            right: -10px;
            background: rgb(0, 0, 0);
            border: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            transition: all 0.3s ease;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 10005;
        }

        .exit-popup-close:hover {
            background: rgba(0, 0, 0, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .exit-popup-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .exit-popup-header h2 {
            color: #0E5EA4;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .exit-popup-header h3 {
            color: #0E5EA4;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .exit-popup-header p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }

        .exit-popup-form {
            max-width: 100%;
        }

        .exit-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .exit-popup-form p {
            margin: 0 0 15px 0;
        }

        .exit-popup-form label {
            display: block;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.75rem;
            margin-bottom: 4px;
        }

        .exit-form-control {
            width: 100%;
            padding: 8px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .exit-form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(14, 94, 164, 0.1);
        }

        .exit-popup-btn {
            width: 100%;
            background: var(--success-green);
            color: white;
            border: none;
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .exit-popup-btn:hover {
            background: #0a4a7d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .exit-popup-btn span {
            margin-left: 8px;
            font-size: 1.2em;
        }

        .exit-form-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #666;
            font-size: 0.85rem;
            text-align: center;
        }

        .exit-form-guarantee i {
            color: var(--primary-color);
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Hide hero badge on mobile */
            .hero-badge {
                display: none;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(2, 23, 50, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: left 0.3s ease;
                z-index: 1000;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
                padding: 1rem 2rem;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-menu a:hover {
                background: rgba(40, 167, 69, 0.2);
                transform: translateY(-2px);
            }

            .header-phone {
                display: none;
            }

            /* Mobile Navigation Improvements */
            .header {
                padding: 0;
            }

            .nav {
                padding: 0.5rem 1rem;
                min-height: 60px;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
            }

            .logo img {
                height: 50px;
            }

            .nav-right {
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .nav-right .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
                white-space: nowrap;
            }

            /* Hero section mobile improvements */
            .hero-content {
                padding-top: 18vh;
                padding-left: 1rem;
                padding-right: 1rem;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.1;
                word-wrap: break-word;
                hyphens: auto;
                margin-bottom: 1rem;
                overflow-wrap: break-word;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.4;
                margin-bottom: 1.5rem;
            }

            .typing-container {
                min-width: 140px;
                font-size: 2.2rem;
            }

            .hero-subtext {
                font-size: 1rem;
                line-height: 1.4;
                word-break: keep-all;
                overflow-wrap: break-word;
                hyphens: none;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
                align-items: center;
            }

            .hero-cta .btn {
                width: 100%;
                max-width: 320px;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                text-align: center;
            }

            .hero-benefits {
                display: none;
            }

            .benefit-item {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                text-align: center;
            }

            .hero-trust {
                display: none;
            }

            .trust-item {
                padding: 1rem 0.5rem;
                text-align: center;
            }

            .trust-number {
                font-size: 1.8rem;
            }

            .trust-label {
                font-size: 0.85rem;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
                position: relative;
            }

            .nav-right {
                gap: 0.5rem;
            }

            .btn-small {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .section-padding {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

             .about-content {
                 grid-template-columns: 1fr !important;
                 gap: 2rem !important;
             }
             
             .about-image {
                 order: -1;
                 height: 400px !important;
             }
             
             .about-image img {
                 height: 100% !important;
             }

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

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



             .overlay-content {
                 padding: 1.5rem;
             }

             .overlay-content h3 {
                 font-size: 1.3rem;
             }

             .project-details {
                 gap: 1rem;
             }

             .container-fluid {
                 padding: 0 1.5rem;
             }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .pricing-card.featured {
                transform: scale(1.05);
                animation: featuredPulse 3s ease-in-out infinite;
            }

            .pricing-card.featured:hover {
                animation-play-state: paused;
                transform: translateY(-10px) scale(1.08);
                box-shadow: 0 20px 50px rgba(14, 94, 164, 0.3);
            }

            .pricing-card:hover {
                transform: translateY(-10px) scale(1.02);
            }

            .pricing-header-content {
                padding: 2rem 1.5rem 1.5rem;
            }

            .pricing-features {
                padding: 1.5rem;
            }

            .pricing-cta {
                padding: 1.5rem;
            }

            .pricing-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 1.5rem;
            }

            .pricing-guarantee {
                min-width: auto;
                justify-content: center;
                text-align: center;
                flex-direction: column;
            }

            .guarantee-icon {
                width: 60px;
                height: 60px;
                margin: 0 auto;
                box-shadow: 0 6px 16px rgba(14, 94, 164, 0.4);
            }

            .guarantee-text h4 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
                color: #374151;
                font-weight: 700;
            }

            .guarantee-text p {
                font-size: 1rem;
                line-height: 1.5;
            }

            .guarantee-text li {
                font-size: 1rem;
                margin: 0.75rem 0;
            }

            .faq-question {
                padding: 1rem 1.5rem;
            }

            .faq-answer {
                padding: 0 1.5rem;
            }

            .faq-item:not(.collapsed) .faq-answer {
                padding: 1.5rem;
            }


            .section-padding {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            /* CRO Mobile Optimizations */
            .hero-benefits {
                display: none;
            }
            
            .hero-trust {
                display: none;
            }

            .trust-item {
                min-width: 100px;
            }

            .trust-number {
                font-size: 1.5rem;
            }

            .trust-text {
                font-size: 0.8rem;
            }
            
            .trust-badges-section {
                flex-direction: column;
                align-items: center;
            }
            
            .quote-form-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1%;
                width: 98%;
                margin: 0 auto;
            }

            .form-wrapper {
                order: 1;
                padding: 2rem 1rem;
            }

            .form-sidebar {
                order: 2;
            }

            .form-intro {
                margin-bottom: 2rem;
                padding-bottom: 1.5rem;
            }

            .form-features {
                flex-direction: column;
                gap: 1rem;
            }

            .trust-indicators,
            .contact-info,
            .testimonial-mini {
                padding: 1.5rem;
            }

            .trust-item {
                margin-bottom: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn-large {
                min-width: auto;
                width: 100%;
                max-width: 300px;
            }

            .cta-features {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .guarantee-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }


            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-links {
                justify-content: center;
                gap: 1.5rem;
            }

            /* Additional mobile optimizations */
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .btn-large {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            .section-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }



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

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

            .form-intro h3 {
                font-size: 1.1rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }

            .quote-popup-content {
                padding: 0.75rem 0.75rem;
                margin: 0.25rem;
                max-height: none;
                height: auto;
                max-width: 95%;
            }

            .quote-popup-form-row {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .quote-popup-header {
                margin-bottom: 0.75rem;
            }

            .quote-popup-header h2 {
                font-size: 1.2rem;
            }

            .quote-popup-header p {
                font-size: 0.8rem;
            }

            .quote-popup .form-group {
                margin-bottom: 0.75rem;
            }

            .exit-popup-container {
                max-width: 95%;
                margin: 10px;
            }

            .exit-popup-content {
                padding: 20px 15px 15px;
            }

            .exit-popup-header {
                margin-bottom: 20px;
            }

            .exit-popup-header h2 {
                font-size: 1.4rem;
                margin-bottom: 8px;
            }

            .exit-popup-header h3 {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .exit-form-row {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 12px;
            }

            .exit-form-control {
                font-size: 0.85rem;
                padding: 7px 10px;
            }

            .exit-popup-form-row p {
                margin-bottom: 12px;
            }

            /* Mobile-optimized close buttons - Extra visible and unmistakable */
            .quote-popup-close {
                top: -5px;
                right: -5px;
                font-size: 2.2rem;
                color: white;
                background: rgb(0, 0, 0);
                border: 3px solid white;
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
                z-index: 10005;
                padding: 0;
                min-width: 50px;
                min-height: 50px;
                font-weight: bold;
            }

            .quote-popup-close:hover,
            .quote-popup-close:active {
                background: rgba(0, 0, 0, 1);
                border-color: #f0f0f0;
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
            }

            .exit-popup-close {
                top: -5px;
                right: -5px;
                font-size: 2.2rem;
                color: white;
                background: rgb(0, 0, 0);
                border: 3px solid white;
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
                z-index: 10005;
                padding: 0;
                min-width: 50px;
                min-height: 50px;
                font-weight: bold;
            }

            .exit-popup-close:hover,
            .exit-popup-close:active {
                background: rgba(0, 0, 0, 1);
                border-color: #f0f0f0;
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
            }

            .exit-popup-btn {
                font-size: 0.9rem;
                padding: 10px 18px;
                margin-top: 15px;
            }

            .quote-popup .quote-form input,
            .quote-popup .quote-form textarea,
            .quote-popup .quote-form select {
                padding: 0.6rem 0.85rem;
                font-size: 0.8rem;
            }

            .quote-popup .form-group:last-of-type {
                margin-bottom: 0.75rem;
            }

            .quote-popup .quote-form button[type="submit"],
            .quote-popup .quote-form .btn-primary {
                padding: 0.75rem 1.25rem;
                font-size: 0.9rem;
                margin-top: 0.5rem;
            }
        }

        /* Pricing section optimization for 14-inch MacBook and similar viewports */
        @media (min-width: 1024px) and (max-width: 1440px) and (min-height: 800px) and (max-height: 1024px) {
            .pricing.section-padding {
                padding: 3rem 0;
            }
            
            .pricing-header {
                margin-bottom: 2.5rem;
            }
            
            .pricing-grid {
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }
            
            .pricing-card {
                padding: 1rem;
            }
            
            .pricing-header-content {
                padding: 0.75rem 1rem 0.75rem;
            }
            
            .pricing-icon {
                width: 320px;
                height: 180px;
                margin-bottom: 1rem;
            }
            
            .pricing-features {
                padding: 1rem;
            }
            
            .pricing-cta {
                padding: 1rem;
            }
            
            .pricing-bottom {
                margin-top: 1.5rem;
            }
        }

        /* Contact form optimization for desktop */
        @media (min-width: 1200px) {
            .quote-form-section .container {
                max-width: 1100px;
            }
            
            .quote-form-section.section-padding {
                padding: 4rem 0;
            }
            
            .quote-form-container {
                gap: 3rem;
                max-width: 1000px;
                margin: 0 auto;
            }
            
            .form-wrapper {
                padding: 2.5rem;
            }
            
            .form-intro {
                margin-bottom: 2rem;
                padding-bottom: 1.5rem;
            }
            
            .form-group {
                margin-bottom: 1.5rem;
            }
        }

        /* Contact form optimization for medium desktop */
        @media (min-width: 1024px) and (max-width: 1199px) {
            .quote-form-section .container {
                max-width: 950px;
            }
            
            .quote-form-section.section-padding {
                padding: 3.5rem 0;
            }
            
            .quote-form-container {
                gap: 2.5rem;
                max-width: 900px;
                margin: 0 auto;
            }
            
            .form-wrapper {
                padding: 2rem;
            }
            
            .form-intro {
                margin-bottom: 1.75rem;
                padding-bottom: 1.25rem;
            }
        }

        /* Tablet and small desktop */
        @media (max-width: 1024px) and (min-width: 769px) {
            .header {
                padding: 0;
            }

            .nav {
                padding: 0.75rem 2rem;
                justify-content: space-between;
                flex-wrap: nowrap;
            }

            .container {
                padding: 0 2rem;
            }

            /* Ensure phone number is visible on tablets */
            .header-phone {
                display: flex;
                align-items: center;
                margin-left: 1.5rem;
            }

            .header-phone a {
                font-size: 1rem;
                white-space: nowrap;
            }

            /* Optimize navigation menu for tablets */
            .nav-menu {
                gap: 1.5rem;
                margin: 0 1rem;
            }

            .nav-menu a {
                font-size: 0.9rem;
            }

            /* Ensure Get Quote button is visible */
            .nav-right {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .typing-container {
                min-width: 180px;
            }

            .hero-content {
                padding-top: 6vh;
            }


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

        }

        /* iPad Pro 11 specific optimization */
        @media (max-width: 834px) and (min-width: 769px) {
            .nav {
                padding: 0.5rem 1.5rem;
            }

            .header-phone {
                margin-left: 1rem;
            }

            .header-phone a {
                font-size: 0.95rem;
            }

            .nav-menu {
                gap: 1.2rem;
            }

            .nav-menu a {
                font-size: 0.85rem;
            }

            .btn-small {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        /* Large mobile and small tablet - iPhone 14 Pro Max, etc. */
        @media (max-width: 600px) {
            /* Hide hero badge on mobile */
            .hero-badge {
                display: none;
            }

            .header {
                padding: 0;
            }

            .nav {
                padding: 0.5rem 1rem;
            }
            .hero h1 {
                font-size: 2rem;
                line-height: 1.1;
            }

            .typing-container {
                min-width: 130px;
                font-size: 2rem;
            }

            .hero-content {
                padding-top: 18vh;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.4;
                margin-bottom: 1.5rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .hero-cta .btn {
                width: 100%;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                text-align: center;
            }

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

            .process-grid {
                grid-template-columns: 1fr;
            }

            /* Trust indicators */
            .hero-trust {
                display: none;
            }

            .trust-item {
                padding: 1rem 0.75rem;
            }

            /* Section buttons */
            .section-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .section-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }


        /* iPhone 8 specific viewport - 375x667 */
        @media (max-width: 375px) and (max-height: 667px) {
            .hero-content {
                padding-top: 35vh !important;
            }
        }

        /* iPhone 14 specific viewport - 390x844 */
        @media (max-width: 390px) and (min-height: 800px) {
            .hero-content {
                padding-top: 18vh !important;
            }
        }

        /* iPhone 11 Pro specific viewport - 375x812 and similar tall screens */
        @media (max-width: 414px) and (min-height: 800px) {
            /* Hide hero badge on mobile */
            .hero-badge {
                display: none;
            }

            .header {
                padding: 0;
            }

            .nav {
                padding: 0.5rem 1rem;
                min-height: 70px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
            }

            .logo img {
                height: 45px;
            }

            .header-phone {
                display: flex;
                align-items: center;
                margin-left: auto;
                margin-right: 1rem;
                order: 2;
            }

            .header-phone a {
                font-size: 0.95rem;
                white-space: nowrap;
            }

            .nav-menu {
                display: flex;
                gap: 1.5rem;
                order: 3;
                margin-left: auto;
            }

            .nav-menu li {
                margin: 0;
            }

            .nav-menu a {
                font-size: 0.9rem;
                padding: 0.5rem 0.75rem;
            }

            .nav-right {
                order: 4;
                margin-left: 1rem;
            }

            .nav-right .btn {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .hero-content {
                padding-top: 15vh !important;
            }
        }

        /* Extra small devices - iPhone SE, small Android phones */
        @media (max-width: 360px) {
            /* Hide hero badge on mobile */
            .hero-badge {
                display: none;
            }

            .header {
                padding: 0;
            }

            .nav {
                padding: 0.25rem 1rem;
            }
            .container {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .typing-container {
                min-width: 80px;
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .btn {
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero-cta .btn {
                padding: 1rem 1.2rem;
                font-size: 0.9rem;
            }

            .section-padding {
                padding: 2rem 0;
            }

            .hero-trust {
                display: none;
            }

            .trust-item {
                min-width: auto;
            }

            .trust-number {
                font-size: 1.3rem;
            }

            .trust-text {
                font-size: 0.75rem;
            }
            
            
            
            .urgency-banner {
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }

            .exit-popup-header h2 {
                font-size: 1.4rem;
            }

            .exit-popup-header h3 {
                font-size: 1rem;
            }

            .exit-popup-header p {
                font-size: 0.9rem;
            }
        }

         /* iPhone 8, iPhone 14 and similar mobile devices */
         @media (max-width: 480px) {
             /* Hide hero badge on mobile */
             .hero-badge {
                 display: none;
             }

             .header {
                 padding: 0;
             }

             .nav {
                 padding: 0.5rem 1rem;
             }
            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.1;
                margin-bottom: 1rem;
            }

             .typing-container {
                 min-width: 100px;
                 font-size: 1.8rem;
             }

             .hero-content {
                 padding-top: 15vh;
                 padding-left: 1rem;
                 padding-right: 1rem;
             }

             .hero p {
                 font-size: 0.95rem;
                 line-height: 1.4;
                 margin-bottom: 1.5rem;
             }

             /* Hero CTA Buttons */
             .hero-cta {
                 flex-direction: column;
                 gap: 1rem;
                 margin-bottom: 2rem;
             }

             .hero-cta .btn {
                 width: 100%;
                 padding: 1rem 1.5rem;
                 font-size: 1rem;
                 text-align: center;
                 white-space: nowrap;
             }

             .hero-cta .btn-secondary {
                 font-size: 0.95rem;
             }

             .about-stats {
                 grid-template-columns: 1fr;
                 gap: 1rem;
                 margin-top: 2rem;
             }

             .process-grid {
                 grid-template-columns: 1fr;
                 gap: 1.5rem;
             }

             /* Section Buttons Mobile */
             .section-buttons {
                 flex-direction: column;
                 gap: 1rem;
                 margin-top: 2rem;
             }

             .section-buttons .btn {
                 width: 100%;
                 padding: 1rem 1.5rem;
                 font-size: 1rem;
                 text-align: center;
             }

             /* Trust indicators mobile */
             .hero-trust {
                 display: none;
             }

             .trust-item {
                 text-align: center;
                 padding: 1rem 0.5rem;
             }

             .trust-number {
                 font-size: 1.5rem;
             }

             .trust-label {
                 font-size: 0.8rem;
             }


             .overlay-content {
                 padding: 1rem;
             }

             .overlay-content h3 {
                 font-size: 1.1rem;
             }

             .project-details {
                 flex-direction: column;
                 gap: 0.5rem;
             }

             .container-fluid {
                 padding: 0 1rem;
             }

             /* Mobile specific padding adjustments */
             .section-padding {
                 padding: 3rem 0;
             }

             .container {
                 padding-left: 1rem;
                 padding-right: 1rem;
             }

             /* Typography adjustments */
             h2 {
                 font-size: 1.8rem;
                 line-height: 1.2;
                 margin-bottom: 1rem;
             }

             h3 {
                 font-size: 1.4rem;
                 line-height: 1.3;
             }

             .btn {
                 display: block;
                 margin: 0.5rem 0;
                 text-align: center;
             }
         }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes glow {
            0% {
                box-shadow: 0 8px 25px rgba(14, 94, 164, 0.3);
            }
            50% {
                box-shadow: 0 8px 35px rgba(14, 94, 164, 0.5);
            }
            100% {
                box-shadow: 0 8px 25px rgba(14, 94, 164, 0.3);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        .fade-in-left {
            animation: fadeInLeft 0.8s ease-out;
        }

        .fade-in-right {
            animation: fadeInRight 0.8s ease-out;
        }

        .scale-in {
            animation: scaleIn 0.6s ease-out;
        }

        .slide-in-top {
            animation: slideInFromTop 0.6s ease-out;
        }

        /* Enhanced Element Animations */
        .hero-content {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .hero-content.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            opacity: 0;
        }

        .service-card.animate {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .process-step {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .process-step:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .process-step:hover .step-number {
            animation: pulse 1.5s ease-in-out infinite;
        }



        .pricing-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .pricing-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .faq-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateX(20px);
        }

        .faq-item.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .faq-item:hover {
            transform: translateX(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Button Enhancements */
        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            animation: glow 2s ease-in-out infinite;
        }

        .btn-secondary:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .btn-phone:hover {
            transform: translateY(-3px) scale(1.05);
        }

        /* Navigation Enhancements */
        .nav-menu a {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--success-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .logo img {
            transition: all 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        /* Header Phone Animation */
        .header-phone a {
            transition: all 0.3s ease;
            position: relative;
        }

        .header-phone a:hover {
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(14, 94, 164, 0.5);
        }

        /* Stats Animation */
        .stat-number {
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-number {
            transform: scale(1.2);
            color: #0E5EA4;
        }

        .stat-item:hover .stat-label {
            color: var(--primary-color);
        }

        /* About Image Enhancement */
        .about-image {
            overflow: hidden;
            position: relative;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(14, 94, 164, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-image:hover::after {
            opacity: 1;
        }

        .about-image:hover img {
            transform: scale(1.08);
            filter: brightness(1.05);
        }

        /* Service Icons Animation */
        .service-icon {
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-card:hover .service-icon {
            transform: scale(1.3) rotate(10deg);
            filter: drop-shadow(0 5px 15px rgba(14, 94, 164, 0.3));
        }

        /* Staggered Animation Delays */
        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }
        .service-card:nth-child(4) { transition-delay: 0.4s; }
        .service-card:nth-child(5) { transition-delay: 0.5s; }
        .service-card:nth-child(6) { transition-delay: 0.6s; }

        .process-step:nth-child(1) { transition-delay: 0.1s; }
        .process-step:nth-child(2) { transition-delay: 0.2s; }
        .process-step:nth-child(3) { transition-delay: 0.3s; }
        .process-step:nth-child(4) { transition-delay: 0.4s; }
        .process-step:nth-child(5) { transition-delay: 0.5s; }



        .pricing-card:nth-child(1) { transition-delay: 0.1s; }
        .pricing-card:nth-child(2) { transition-delay: 0.2s; }
        .pricing-card:nth-child(3) { transition-delay: 0.3s; }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Very small mobile devices */
        @media (max-width: 360px) {
            .hero-content {
                padding-top: 15vh;
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .hero h1 {
                font-size: 1.6rem;
                margin-bottom: 0.75rem;
                line-height: 1.1;
            }

            .typing-container {
                min-width: 80px;
                font-size: 1.6rem;
            }

            .hero-benefits {
                display: none;
            }

            .benefit-item {
                font-size: 0.85rem;
                padding: 0.5rem 0.75rem;
            }
        }

        /* Enhanced FAQ Styling */
        .faq-item-compact {
            background: var(--white) !important;
            border: 1px solid #e5e7eb !important;
            border-radius: 16px !important;
            margin-bottom: 20px !important;
            overflow: hidden !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        }

        .faq-item-compact:hover {
            border-color: var(--accent-orange) !important;
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12) !important;
            transform: translateY(-2px) !important;
        }

        .faq-question-compact {
            width: 100% !important;
            text-align: left !important;
            background: none !important;
            border: none !important;
            padding: 24px !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            color: var(--secondary) !important;
            cursor: pointer !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            font-family: 'Poppins', sans-serif !important;
            transition: all 0.2s ease !important;
        }

        .faq-question-compact:hover {
            color: var(--accent-orange) !important;
        }

        .faq-icon-compact {
            color: #007bff !important;
            font-size: 20px !important;
            font-weight: 700 !important;
            transition: transform 0.3s ease !important;
            width: 24px !important;
            height: 24px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 50% !important;
            background: rgba(0, 123, 255, 0.1) !important;
        }

        .faq-answer-compact {
            max-height: 0;
            overflow: hidden !important;
            transition: max-height 0.4s ease, padding 0.4s ease !important;
            background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%) !important;
            border-top: 1px solid #f1f5f9 !important;
        }

        .faq-answer-compact > div {
            padding: 30px 32px 32px 32px !important;
            color: var(--text-dark) !important;
            font-size: 15px !important;
            line-height: 1.6 !important;
            font-weight: 400 !important;
        }

        .faq-answer-compact ul {
            margin: 0 !important;
            padding-left: 20px !important;
            list-style-position: outside !important;
        }

        .faq-answer-compact li {
            margin-bottom: 8px !important;
            padding-left: 0 !important;
            text-indent: 0 !important;
        }

        /* FAQ Section Responsive */
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
        }

        /* Splide Testimonial Slider Styles */
        .testimonials-splide {
            background: var(--white);
            padding: 4rem 0;
            overflow: hidden;
        }

        .testimonials-splide .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .splide-testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Full width splide container */
        .splide-full-width {
            width: 100vw;
            position: relative;
            margin-left: calc(-50vw + 50%);
        }

        .splide-testimonials-header h2 {
            color: var(--dark-grey);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .splide__slide {
            padding: 0 1rem;
        }

        .testimonial-card-splide {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            height: 100%;
            transition: all 0.3s ease;
        }

        .testimonial-card-splide:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card-splide .testimonial-stars {
            color: #FFD700;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 1rem;
        }

        .testimonial-card-splide .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .testimonial-card-splide .author-name {
            font-weight: 700;
            color: var(--dark-grey);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-card-splide .author-title {
            font-size: 0.9rem;
            color: #666;
        }

        /* Splide drag cursor */
        .splide__track {
            cursor: grab;
        }

        .splide__track:active {
            cursor: grabbing;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .splide-testimonials-header h2 {
                font-size: 2rem;
            }

            .testimonial-card-splide {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .splide-testimonials-header h2 {
                font-size: 1.75rem;
            }
        }
    