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

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

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

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

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

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            }
            50% {
                box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
            }
        }

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

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

        @keyframes shine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

:root{
    --primary: #1e40af;
    --primary-dark: #0f3460;
    --accent-light: #64b5f6;
    --accent: #667eea;
    --header-height: 64px;
    --header-height-stacked: 120px;
    --header-height-mobile: 160px;
    --page-max-width: 1200px;
    --page-padding: 2rem;
    --radius: 10px;
    --fab-size: 60px;
    --fab-gap: 1.5rem;
}

        html {
            scroll-behavior: smooth;
        }

        /* Ensure anchored sections account for fixed header */
        section, [id] {
            scroll-margin-top: calc(var(--header-height) + 12px);
        }

        @media (max-width: 800px) {
            section, [id] {
                scroll-margin-top: calc(var(--header-height-mobile) + 12px);
            }
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #1e40af;
            color: white;
            padding: 8px 16px;
            z-index: 100;
            text-decoration: none;
            border-radius: 0 0 5px 0;
        }

        .skip-link:focus {
            top: 0;
        }

        *:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        button:focus, a:focus, input:focus, textarea:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

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

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 50%, #eef4ff 100%);
            min-height: 100vh;
        }

        header {
            background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0;
            height: var(--header-height);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .header-content {
            max-width: var(--page-max-width);
            margin: 0 auto;
            padding: 0 var(--page-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            height: 100%;
            text-transform: uppercase;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.9;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: flex-end;
            height: 100%;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #64b5f6, #90caf9);
            transition: width 0.4s ease;
        }

        nav a:hover {
            color: #64b5f6;
            text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
        }

        nav a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

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

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

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

        main {
            margin-top: var(--header-height);
        }

        .hero {
            background: linear-gradient(rgba(30, 64, 175, 0.65), rgba(15, 52, 96, 0.7)), url('../images/heroimage.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: calc(100vh - var(--header-height));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            font-weight: 800;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #1e40af;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            margin: 0 0.5rem;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.35), 0 0 30px rgba(100, 181, 246, 0.25);
            background: #f0f0f0;
        }

        .cta-button:active {
            transform: translateY(-1px) scale(0.98);
        }

        #services {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(15, 52, 96, 0.02) 100%);
            border-radius: 15px;
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #1e40af 0%, #0f3460 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInDown 0.8s ease-out;
            position: relative;
            padding-bottom: 1rem;
        }

        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--accent));
            border-radius: 3px;
            box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
            animation: slideInLeft 0.8s ease-out 0.2s backwards;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out backwards;
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #1e40af, #0f3460);
            border-radius: 10px 10px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(30, 64, 175, 0.3), 0 0 30px rgba(100, 181, 246, 0.2);
        }

        .service-card i {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .service-card:hover i {
            transform: translateY(-5px) scale(1.15);
            animation: bounce 0.6s ease-in-out;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            color: #333;
            background: linear-gradient(135deg, #1e40af, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .service-card:hover h3 {
            -webkit-text-fill-color: #1e40af;
            background: linear-gradient(135deg, #0f3460, #1e40af);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        .slideshow-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.15);
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }

        .slide {
            display: none;
            width: 100%;
            height: 500px;
            animation: fadeInUp 0.8s ease-out;
        }

        .slide.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .slide-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e40af 0%, #0f3460 100%);
            color: white;
            font-size: 4rem;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.3s ease;
            border-radius: 3px;
            background-color: rgba(0,0,0,0.5);
            user-select: none;
            z-index: 100;
        }

        .next {
            right: 0;
        }

        .prev {
            left: 0;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
            transform: scale(1.1);
        }

        .slide-counter {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 0.9rem;
            z-index: 100;
        }

        .slide-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 100;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(255,255,255,0.5);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: white;
        }

        .dot:hover {
            background-color: rgba(255,255,255,0.8);
        }

        .stats {
            display: none;
        }

        .portfolio {
            background: #f8f9ff;
            padding: 4rem 2rem;
            display: none;
        }

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

        .portfolio-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
        }

        .portfolio-item-image {
            background: linear-gradient(135deg, #1e40af 0%, #0f3460 100%);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .portfolio-item-content {
            padding: 1.5rem;
        }

        .portfolio-item h3 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .portfolio-item p {
            color: #666;
            font-size: 0.9rem;
        }

        .about {
            text-align: center;
            padding-top: 2rem;
        }

        .about-content {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 10px;
            max-width: 700px;
            margin: 2rem auto;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
        }

        .about-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.9;
        }

        .about-content p.mission {
            font-size: 1.2rem;
            color: #1e40af;
            margin-top: 1.5rem;
        }

        .pricing {
            background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
            padding: 4rem 2rem;
        }

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

        .pricing-box {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
            text-align: center;
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease-out backwards;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .pricing-box:nth-child(1) { animation-delay: 0.1s; }
        .pricing-box:nth-child(2) { animation-delay: 0.2s; }

        .pricing-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(30, 64, 175, 0.3), 0 0 30px rgba(100, 181, 246, 0.15);
        }

        .pricing-box.featured {
            border: 2px solid #1e40af;
            transform: scale(1.05);
        }

        .pricing-box.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }

        .pricing-box h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #1e40af, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.6s ease-out 0.2s backwards;
        }

        .pricing-box .price {
            font-size: 2rem;
            color: #1e40af;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            animation: fadeInUp 0.6s ease-out 0.3s backwards;
        }

        .pricing-box p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 1.5rem 0 0 0;
            padding: 0;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .pricing-features li:before {
            content: "✓ ";
            color: #667eea;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-note {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            max-width: 600px;
            margin: 2rem auto;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .pricing-note h4 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .pricing-note p {
            color: #666;
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }
        .pricing-context {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            max-width: 600px;
            margin: 2rem auto;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-left: 4px solid #1e40af;
        }

        .pricing-context h4 {
            background: linear-gradient(135deg, #1e40af, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .pricing-context p {
            color: #666;
            line-height: 1.8;
        }

        .addons-list {
            list-style: none;
            padding: 0;
        }

        .addons-list li {
            padding: 0.8rem 0;
            color: #666;
            border-bottom: 1px solid #eee;
            line-height: 1.8;
        }

        .addons-list li:last-child {
            border-bottom: none;
        }
        .contact {
            background: linear-gradient(135deg, #1e40af 0%, #0f3460 100%);
            color: white;
            padding: 4rem 2rem 3rem 2rem;
            text-align: center;
            position: relative;
        }

        .contact h2 {
            color: white;
            margin-bottom: 2rem;
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
            background: #f9f9ff;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .form-group input:focus::placeholder,
        .form-group textarea:focus::placeholder {
            color: #999;
        }

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

        .submit-btn {
            background: white;
            color: #1e40af;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
            position: relative;
            overflow: hidden;
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .radio-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 1rem;
            color: white;
            padding: 0.7rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .radio-label:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        .radio-label input[type="radio"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .radio-label span {
            position: relative;
            padding-left: 2rem;
        }

        .radio-label span::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-radius: 50%;
            background: transparent;
            transition: all 0.3s ease;
        }

        .radio-label input[type="radio"]:checked + span::before {
            background: white;
            border-color: white;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .radio-label input[type="radio"]:checked + span::after {
            display: none;
        }

        .radio-label input[type="radio"]:checked ~ span {
            font-weight: 600;
        }

        #contact-other-text {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        #contact-other-text:focus {
            outline: none;
            border-color: var(--accent);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            transition: left 0.5s ease;
        }

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

        .submit-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .submit-btn:active {
            transform: translateY(-1px) scale(0.98);
        }

        .payment-methods {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .payment-methods h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            background: linear-gradient(90deg, #64b5f6, #90caf9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .payment-methods p {
            opacity: 0.95;
        }

        /* Footer (three-column layout). Use modifier for dark variant to preserve original site colors */
        .site-footer {
            background: #f7f3f0;
            color: #5a4f48;
            padding: 2.25rem 1rem;
            border-top: 1px solid rgba(0,0,0,0.04);
        }

        /* Dark footer variant to match original colors */
        .site-footer.site-footer--dark {
            background: linear-gradient(135deg, #0f3460 0%, #1a4d7a 100%);
            color: white;
            border-top: none;
        }

        .site-footer .footer-inner {
            max-width: var(--page-max-width);
            margin: 0 auto;
            padding: 0 var(--page-padding);
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
        }

        .site-footer .footer-col {
            flex: 1 1 0;
        }

        /* Left column should be compact to keep center text centered */
        .site-footer .footer-col--left {
            flex: 0 0 220px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.4rem;
            justify-content: center;
        }

        .site-footer .footer-col--left {
            text-align: left;
        }

        /* center column: keep centered regardless of left/right widths */
        .site-footer .footer-col--center {
            flex: 1 1 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* right column: match left column width to keep center truly centered */
        .site-footer .footer-col--right {
            flex: 0 0 220px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            text-align: right;
        }


        .site-footer .footer-company {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .site-footer .footer-address {
            font-style: normal;
            line-height: 1.8;
            font-size: 0.98rem;
        }

        .site-footer .footer-copy {
            margin: 0;
        }

        .site-footer .footer-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .site-footer .footer-nav a {
            text-decoration: none;
            padding: 0.125rem 0.25rem;
            font-weight: 600;
            color: inherit;
            display: inline-block;
        }

        .site-footer .footer-nav a + a::before {
            content: "•";
            display: inline-block;
            margin: 0 0.5rem;
            color: rgba(255,255,255,0.65);
            vertical-align: middle;
        }

        .site-footer .footer-social {
            margin-top: 0.5rem;
        }

        .site-footer .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            margin-left: 0.5rem;
            border-radius: 999px;
            text-decoration: none;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
            padding: 6px;
        }

        /* Make the icon visually bolder */
        .site-footer .social-link i {
            font-size: 1.25rem;
            line-height: 1;
            transform: translateZ(0);
            font-weight: 700;
        }

        .site-footer .social-link:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 14px 30px rgba(16,24,40,0.09);
        }

        /* Dark-footer specific social style: subtle white background for icons */
        .site-footer.site-footer--dark .social-link {
            background: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.98);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: none;
        }

        .site-footer.site-footer--dark .social-link:hover {
            background: rgba(255,255,255,0.09);
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }

        .site-footer .social-link:focus {
            outline: 3px solid rgba(255,255,255,0.18);
            outline-offset: 3px;
        }

        /* Availability text in footer */
        .footer-availability {
            margin-top: 6px;
            color: rgba(255,255,255,0.92);
            font-size: 0.92rem;
            line-height: 1.35;
            margin: 0;
            font-weight: 600;
            opacity: 0.95;
            letter-spacing: 0.1px;
        }

        .static-link {
            color: inherit;
            text-decoration: underline;
        }

        /* Dark variant overrides for links/text */
        .site-footer.site-footer--dark .static-link { color: white; }
        .site-footer.site-footer--dark .footer-copy { color: rgba(255,255,255,0.95); }
        .site-footer.site-footer--dark .footer-nav a { color: rgba(255,255,255,0.95); }

        .static-link,
        .static-link:visited,
        .static-link:hover,
        .static-link:active,
        .static-link:focus {
            color: inherit;
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: inline-block;
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .social-links a:nth-child(1) { animation-delay: 0.1s; }
        .social-links a:nth-child(2) { animation-delay: 0.2s; }
        .social-links a:nth-child(3) { animation-delay: 0.3s; }
        .social-links a:nth-child(4) { animation-delay: 0.4s; }

        .social-links a:hover {
            color: #667eea;
            transform: translateY(-5px) scale(1.3);
        }

        @media (max-width: 768px) {
            header {
                height: var(--header-height);
            }

            .header-content {
                padding: 0 1rem;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                overflow-y: auto;
            }

            nav.active {
                transform: translateX(0);
            }

            .header-content {
                justify-content: center;
                position: relative;
            }

            .hamburger {
                position: absolute;
                right: var(--page-padding);
            }

            .logo {
                font-size: 1.3rem;
            }

            .logo img {
                margin: 0 auto !important;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 2rem 0;
                justify-content: flex-start;
                height: auto;
            }

            nav li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav a {
                display: block;
                padding: 1.2rem 2rem;
                font-size: 1.1rem;
            }

            nav a::after {
                display: none;
            }

            main {
                margin-top: 0 !important;
            }

            .hero {
                padding: 4rem 1.5rem;
                background-attachment: scroll;
                min-height: auto;
                margin-top: 0 !important;
            }

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

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

            .cta-button {
                display: block;
                margin: 0.8rem auto;
                padding: 0.9rem 1.8rem;
                font-size: 1rem;
            }

            section {
                padding: 0 1.5rem;
                margin: 2.5rem auto;
            }

            section:first-of-type {
                margin-top: 0;
            }

            section:last-of-type {
                margin-bottom: 0;
            }

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

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

            .pricing-box.featured {
                transform: scale(1);
            }

            .contact-form {
                max-width: 100%;
            }

            .form-group input,
            .form-group textarea {
                font-size: 16px;
            }

            .payment-methods {
                margin-top: 2rem;
                padding-top: 1.5rem;
            }

            footer {
                padding: 1.5rem;
            }

            footer p {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }

            .social-links {
                gap: 1rem;
            }

            .slide {
                height: 350px;
            }

            .slide-placeholder {
                font-size: 3rem;
            }

            .prev, .next {
                padding: 14px;
                font-size: 17px;
            }

            .slide-counter {
                font-size: 0.85rem;
                padding: 7px 11px;
            }
        }

        @media (max-width: 480px) {
            header {
                height: var(--header-height);
            }

            main {
                margin-top: 0 !important;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo img {
                width: 180px !important;
            }

            nav a {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }

            .hero {
                padding: 3rem 1rem;
                background-attachment: scroll;
                min-height: 350px;
                margin-top: 0 !important;
            }

            .hero h1 {
                font-size: 1.5rem;
                line-height: 1.3;
            }

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

            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            section {
                padding: 0 1rem;
                margin: 2.5rem auto;
            }

            section:last-of-type {
                margin-bottom: 0;
            }

            section h2 {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-card i {
                font-size: 2rem;
                width: 50px;
                height: 50px;
            }

            .pricing-box h3 {
                font-size: 1.2rem;
            }

            .pricing-box .price {
                font-size: 1.5rem;
            }

            .about-content {
                padding: 1.5rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            .form-group label {
                font-size: 0.95rem;
            }

            .submit-btn {
                width: 100%;
            }

            footer p {
                font-size: 0.9rem;
            }

            .social-links {
                gap: 0.8rem;
            }

            .social-links a {
                font-size: 1.2rem;
            }

            .slide {
                height: 300px;
            }

            .slide-placeholder {
                font-size: 2rem;
            }

            .prev, .next {
                padding: 12px;
                font-size: 16px;
            }

            .slide-counter {
                font-size: 0.8rem;
                padding: 6px 10px;
            }

            .dot {
                height: 10px;
                width: 10px;
                margin: 0 4px;
            }

            main {
                margin-top: var(--header-height) !important;
            }

            .hero {
                margin-top: 0 !important;
            }

            /* Footer mobile stack */
            .site-footer .footer-inner {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }

            /* Make left/right columns auto-width on mobile and center their contents */
            .site-footer .footer-col--right,
            .site-footer .footer-col--left {
                text-align: center;
                flex: none;
                width: auto;
                align-items: center;
                justify-content: center;
            }

            /* Stack nav links and center them */
            .site-footer .footer-nav {
                justify-content: center;
                gap: 0.75rem;
            }

            .site-footer .footer-nav a { margin: 0 0.25rem; }

            /* Increase touch targets for social icons on mobile */
            .site-footer .social-link {
                width: 48px;
                height: 48px;
                padding: 8px;
                margin-left: 0.4rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Interactive Features */

        /* Scroll Animations */
        .service-card,
        .pricing-box,
        .about-content {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .service-card.animate-in,
        .pricing-box.animate-in,
        .about-content.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced CTA Button */
        .cta-button {
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Sticky CTA Button */
        .sticky-cta {
            position: fixed;
            bottom: 2rem;
            right: calc(2rem + var(--fab-size) + var(--fab-gap) + var(--fab-size) + var(--fab-gap));
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            height: 60px;
            padding: 0 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(100px) translateX(-120px);
            pointer-events: none;
            z-index: 999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .sticky-cta.visible {
            opacity: 1;
            transform: translateY(0) translateX(0);
            pointer-events: auto;
        }

        .sticky-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
        }

        /* Active Navigation Link */
        nav a.active {
            color: #64b5f6;
            text-shadow: 0 0 15px rgba(100, 181, 246, 0.4);
        }

        nav a.active::after {
            width: 100%;
            background: #64b5f6;
        }

        /* Form Validation */
        .form-group input,
        .form-group textarea {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: #ef4444;
            background-color: rgba(239, 68, 68, 0.05);
        }

        .error-msg {
            display: block;
            color: #ef4444;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            animation: slideInRight 0.3s ease-out;
        }

        .error-message {
            display: block;
            color: #ef4444;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            min-height: 1.2em;
        }

        .submit-btn {
            transition: all 0.3s ease;
            position: relative;
        }

        .submit-btn.loading {
            color: transparent;
            pointer-events: none;
            background: #e5e7eb;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid #d1d5db;
            border-radius: 50%;
            border-top-color: #1e40af;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Service Card Hover Effect */
        .service-card {
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .service-card i {
            transition: all 0.3s ease;
        }

        .service-card:hover i {
            transform: scale(1.1) rotate(5deg);
            color: #667eea;
        }

        /* Pricing Box Enhanced */
        .pricing-box {
            transition: all 0.3s ease;
        }

        .pricing-box:hover {
            transform: translateY(-5px);
        }

        .pricing-box.featured:hover {
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
        }

        /* Counter Animation */
        .counter {
            font-weight: bold;
            color: #667eea;
        }

        /* AI Chat Bot */
        .chat-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1001;
        }

        .chat-widget.hidden {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        .chat-bubble {
            width: var(--fab-size);
            height: var(--fab-size);
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        .chat-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 500px;
            max-height: calc(100vh - 200px);
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8) translateY(20px);
            transition: all 0.3s ease;
            z-index: 1002;
        }

        .chat-window.open {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
        }

        .chat-header {
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            padding: 1rem 1.25rem;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .chat-header-info i {
            font-size: 1.5rem;
        }

        .chat-header h4 {
            margin: 0;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .chat-status {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.25rem;
            transition: opacity 0.3s ease;
        }

        .chat-close:hover {
            opacity: 0.8;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
            background: #f8f9ff;
        }

        .chat-message {
            margin-bottom: 1rem;
            animation: fadeInUp 0.3s ease-out;
        }

        .chat-message.user {
            display: flex;
            justify-content: flex-end;
        }

        .chat-message.bot {
            display: flex;
            justify-content: flex-start;
        }

        .message-content {
            max-width: 80%;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .chat-message.user .message-content {
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            border-radius: 12px 12px 0 12px;
        }

        .chat-message.bot .message-content {
            background: white;
            color: #333;
            border: 1px solid #e0e7ff;
            border-radius: 12px 12px 12px 0;
        }

        .message-content ul {
            margin: 0.5rem 0;
            padding-left: 1.25rem;
        }

        .message-content li {
            margin: 0.25rem 0;
        }

        .message-content p {
            margin: 0.5rem 0;
        }

        .message-content p:first-child {
            margin-top: 0;
        }

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

        .chat-input-container {
            display: flex;
            padding: 1rem;
            border-top: 1px solid #e0e7ff;
            background: white;
            border-radius: 0 0 15px 15px;
        }

        .chat-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #e0e7ff;
            border-radius: 25px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

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

        .chat-send {
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 0.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        /* Mobile adjustments */
        @media (max-width: 768px) {
            :root {
                --fab-size: 50px;
                --fab-gap: 1rem;
            }

            .sticky-cta {
                top: calc(var(--header-height) + 1rem);
                right: 1rem;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                height: 50px;
                transform: translateY(-100px);
                z-index: 1001;
            }

            .sticky-cta.visible {
                transform: translateY(0);
            }

            .chat-widget {
                bottom: calc(1rem + var(--fab-size) + var(--fab-gap));
                right: 1rem;
            }

            .chat-bubble {
                width: var(--fab-size);
                height: var(--fab-size);
                font-size: 1.25rem;
            }

            .chat-window {
                position: fixed;
                bottom: 0;
                right: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
                transform: translateY(100%);
            }

            .chat-window.open {
                transform: translateY(0);
            }

            .chat-header {
                border-radius: 0;
            }

            .chat-input-container {
                border-radius: 0;
                padding-bottom: calc(1rem + env(safe-area-inset-bottom));
            }
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e40af 0%, #667eea 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
               z-index: 1001;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }

        .loading-logo {
            animation: pulse 1.5s ease-in-out infinite;
            max-width: 400px;
            width: 100%;
            margin-bottom: 1rem;
        }

        .loading-bar {
            width: 100%;
            max-width: 400px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            margin-top: 0.5rem;
            overflow: hidden;
            position: relative;
        }

        .loading-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: white;
            border-radius: 10px;
            animation: loadProgress 2s ease-in-out forwards;
        }

        @keyframes loadProgress {
            to {
                width: 100%;
            }
        }

        /* Mobile optimizations for loading screen */
        @media (max-width: 600px) {
            .loading-logo {
                max-width: 260px;
                margin-bottom: 0.6rem;
                animation-duration: 1s;
            }

            .loading-bar {
                max-width: 300px;
                height: 3px;
            }

            .loading-bar::after {
                animation-duration: 1.5s;
            }
        }

        /* Respect users' preference for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .loading-logo,
            .loading-bar::after {
                animation: none !important;
            }
        }

        /* Website types list styling */
        .website-types-list {
            list-style: none;
            margin: 0 auto;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem 2rem;
            max-width: 900px;
            color: #333;
        }

        .website-types-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            line-height: 1.4;
        }

        .website-types-list li i {
            color: #667eea;
            min-width: 22px;
            text-align: center;
            font-size: 1.05rem;
        }

        @media (max-width: 800px) {
            .website-types-list {
                grid-template-columns: 1fr;
                gap: 0.5rem 1rem;
                padding: 0 1rem;
            }
        }

        /* Enhanced visual style for website-types section */
        .website-types {
            padding: 1.5rem 0.75rem;
            background: linear-gradient(180deg, rgba(250,250,255,1) 0%, rgba(255,255,255,1) 100%);
            border-top: 1px solid rgba(102,126,234,0.04);
        }

        .website-types h3 {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 2.1rem;
            margin-bottom: 0.25rem;
            /* Gradient heading to match site headings */
            background: linear-gradient(135deg, #1e40af 0%, #0f3460 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .website-types h3::after {
            content: '';
            display: block;
            width: 64px;
            height: 4px;
            margin: 8px auto 14px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--accent));
            border-radius: 3px;
            box-shadow: 0 0 12px rgba(100,181,246,0.25);
        }

        .website-types p {
            color: #6b7280;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .website-types-list li {
            background: #ffffff;
            padding: 0.9rem 1rem;
            border-radius: 10px;
            box-shadow: 0 10px 22px rgba(16,24,40,0.06);
            transition: transform 180ms ease, box-shadow 180ms ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.02rem;
            font-weight: 600;
        }

        .website-types-list li:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(16,24,40,0.09);
        }

        .website-types-list li i {
            background: #eef2ff;
            color: #4c51bf;
            padding: 0.5rem;
            border-radius: 999px;
            min-width: 36px;
            min-height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        @media (max-width: 600px) {
            .website-types {
                padding: 0.9rem 0.5rem;
            }

            .website-types-list li {
                padding: 0.6rem 0.7rem;
                border-radius: 8px;
                font-size: 1rem;
            }
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #64b5f6 100%);
            z-index: 9999;
            transition: width 0.1s ease;
            box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 100px;
            left: 50%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            z-index: 10000;
            transform: translate(-50%, -100px);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }

        .toast.show {
            transform: translate(-50%, 0);
            opacity: 1;
            visibility: visible;
        }

        .toast i {
            font-size: 1.5rem;
        }

        /* Dark Mode Toggle */
        .dark-mode-toggle {
            position: fixed;
            bottom: 2rem;
            right: calc(2rem + var(--fab-size) + var(--fab-gap));
            background: linear-gradient(135deg, #667eea 0%, #64b5f6 100%);
            color: white;
            border: none;
            width: var(--fab-size);
            height: var(--fab-size);
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark-mode-toggle:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
            color: #f0f4ff;
        }

        body.dark-mode header {
            background: linear-gradient(140deg, #0f1535 0%, #1a1f3a 100%);
        }

        body.dark-mode .service-card,
        body.dark-mode .about-content {
            background: rgba(30, 40, 70, 0.7);
            color: #f0f4ff;
            border: 1px solid rgba(100, 181, 246, 0.3);
        }

        body.dark-mode .pricing-box {
            background: rgba(30, 100, 200, 0.8);
            color: #ffffff;
            border: 1px solid rgba(100, 181, 246, 0.4);
        }

        body.dark-mode .toast {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.6);
        }

        body.dark-mode .chat-window {
            background: #1a1f3a;
            border: 1px solid rgba(100, 181, 246, 0.3);
        }

        body.dark-mode .chat-messages {
            background: #0f1535;
        }

        body.dark-mode .chat-message.bot .message-content {
            background: rgba(30, 40, 70, 0.7);
            color: #f0f4ff;
            border-color: rgba(100, 181, 246, 0.3);
        }

        body.dark-mode .chat-input-container {
            background: #1a1f3a;
            border-top-color: rgba(100, 181, 246, 0.3);
        }

        body.dark-mode .chat-input {
            background: rgba(30, 40, 70, 0.5);
            color: #f0f4ff;
            border-color: rgba(100, 181, 246, 0.3);
        }

        body.dark-mode .service-card h3 {
            color: #ffffff;
            background: linear-gradient(90deg, #667eea, #64b5f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .pricing-box h3,
        body.dark-mode .about-content strong {
            color: #ffffff;
        }

        body.dark-mode .service-card p,
        body.dark-mode .pricing-box p,
        body.dark-mode .about-content p {
            color: #ffffff;
        }

        body.dark-mode .service-card i {
            color: #64b5f6;
        }

        body.dark-mode .service-card:hover {
            background: rgba(30, 40, 70, 0.9);
            border-color: rgba(100, 181, 246, 0.5);
        }

        body.dark-mode .pricing-box:hover {
            background: rgba(30, 100, 200, 0.95);
            border-color: rgba(100, 181, 246, 0.6);
        }

        body.dark-mode section h2 {
            color: #ffffff;
            background: linear-gradient(90deg, #667eea, #64b5f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .pricing-context p,
        body.dark-mode .pricing-note p,
        body.dark-mode .pricing-note li {
            color: #ffffff;
        }

        body.dark-mode .pricing-context strong,
        body.dark-mode .pricing-note strong {
            color: #ffffff;
        }

        body.dark-mode .pricing-box .price {
            color: #ffffff;
        }

        body.dark-mode .pricing-features li {
            color: #ffffff;
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea {
            background: rgba(30, 40, 70, 0.7);
            border-color: rgba(100, 181, 246, 0.4);
            color: #f0f4ff;
        }

        body.dark-mode .form-group label {
            color: #f0f4ff;
        }

        body.dark-mode .form-group input::placeholder,
        body.dark-mode .form-group textarea::placeholder {
            color: rgba(240, 244, 255, 0.6);
        }

        body.dark-mode .form-group small {
            color: #c0c7df !important;
        }

        body.dark-mode .pricing-context,
        body.dark-mode .pricing-note {
            background: rgba(30, 100, 200, 0.8);
            border-color: rgba(100, 181, 246, 0.4);
        }

        body.dark-mode .pricing-context h4,
        body.dark-mode .pricing-note h4 {
            color: #ffffff;
        }

        body.dark-mode .addons-list li {
            color: #ffffff;
        }

        body.dark-mode .contact h2,
        body.dark-mode .contact p,
        body.dark-mode .contact h4 {
            color: #ffffff;
        }

        body.dark-mode .payment-methods p {
            color: #e0e7ff;
        }

        body.dark-mode .stat-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(100, 181, 246, 0.2) 100%);
            border-color: rgba(100, 181, 246, 0.4);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
        }

        body.dark-mode .stat-card:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(100, 181, 246, 0.25) 100%);
            border-color: rgba(100, 181, 246, 0.6);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        body.dark-mode footer {
            background: linear-gradient(135deg, #0f1535 0%, #1a1f3a 100%);
        }

        body.dark-mode footer p {
            color: #e0e7ff;
        }

        /* Cookie Consent Modal */
        .cookie-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .cookie-modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-modal-card {
            background: linear-gradient(135deg, #1e40af 0%, #667eea 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            max-width: 400px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            text-align: center;
            animation: slideInUp 0.4s ease-out;
        }

        .cookie-modal-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .cookie-modal-header i {
            font-size: 2rem;
        }

        .cookie-modal-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .cookie-modal-text {
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .cookie-modal-btn {
            background: white;
            color: #1e40af;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .cookie-modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .cookie-modal-btn:active {
            transform: translateY(0);
        }

        .cookie-btn.accept:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .cookie-btn.decline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-btn.decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .dark-mode-toggle {
                bottom: 1rem;
                right: calc(1rem + var(--fab-size) + var(--fab-gap));
                width: var(--fab-size);
                height: var(--fab-size);
                font-size: 1rem;
            }

            .toast {
                right: auto;
                left: 50%;
                width: auto;
                font-size: 0.9rem;
                padding: 0.875rem 1.25rem;
                transform: translate(-50%, -100px);
            }

            .toast.show {
                transform: translate(-50%, 0);
            }

            .chat-widget {
                bottom: 1rem;
                right: 1rem;
            }bubble {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .chat-window {
                width: calc(100vw - 2rem);
                max-width: 380px;
                height: 450px;
                max-height: calc(100vh - 120px);
                bottom: 70px;
                right: auto;
                left: 50%;
                transform: translateX(-50%) scale(0.8) translateY(20px);
            }

            .chat-window.open {
                transform: translateX(-50%) scale(1) translateY(0);
            }

            .stats-container {
                max-width: 100%;
            }

            .stat-card {
                min-width: 260px;
                padding: 2rem 2.5rem;
            }

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

            .stat-card i {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }
        }
/* Loading Spinner */
.form-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.form-spinner::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

.contact-form.loading .submit-btn {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.contact-form.loading .form-spinner {
    display: block;
}

