        /* --- CSS VARIABLES & RESET --- */
        :root {
            /* Apple-Inspired Color Palette */
            --primary: #0071e3;
            /* Apple Blue */
            --primary-dark: #0077ed;
            --primary-light: #147ce5;
            --accent: #0071e3;
            /* Apple Blue Accent */
            --accent-grad: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
            --dark: #1d1d1f;
            --dark-light: #1d1d1f;
            --light: #f5f5f7;
            --white: #ffffff;
            --gray: #86868b;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 24px rgba(0, 113, 227, 0.15);
            --radius: 18px;
            --nav-height: 80px;
            --transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        /* Disable mobile tap highlight on interactive elements */
        a,
        button,
        input,
        select,
        textarea,
        .btn,
        .nav-link,
        .hamburger,
        .dot,
        .social-link,
        .service-card,
        .portfolio-item,
        .faq-item,
        .logo,
        .logo img,
        div,
        span,
        i,
        img {
            -webkit-tap-highlight-color: transparent !important;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
            outline: none !important;
        }

        /* Remove focus outline on touch devices */
        *:focus {
            outline: none !important;
        }

        /* Remove any selection/highlight styles on mobile */
        *::selection {
            background: transparent;
        }

        *::-moz-selection {
            background: transparent;
        }

        /* Specific fix for service cards and interactive elements */
        .service-card,
        .portfolio-item,
        .faq-item,
        .btn,
        .nav-link,
        .social-link,
        .logo {
            outline: none !important;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
            -webkit-focus-ring-color: rgba(0, 0, 0, 0) !important;
            tap-highlight-color: transparent !important;
        }

        .service-card:focus,
        .service-card:active,
        .portfolio-item:focus,
        .portfolio-item:active,
        .btn:focus,
        .btn:active,
        .logo:focus,
        .logo:active,
        .logo img:focus,
        .logo img:active,
        a:focus,
        a:active {
            outline: none !important;
            box-shadow: none !important;
            -webkit-tap-highlight-color: transparent !important;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        /* --- UTILITIES --- */
        .container {
            width: 90%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .text-center {
            text-align: center;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .subtitle {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary);
            color: var(--white);
            border-radius: 980px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--primary-dark);
            z-index: -1;
            transition: var(--transition);
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            color: var(--white);
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background: rgba(29, 29, 31, 0.72);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: #ffffff;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .bar {
            width: 26px;
            height: 3px;
            background: #ffffff;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* --- HERO SLIDER --- */
        #home {
            padding-top: 0;
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.35);
            z-index: 1;
            transform: scale(1.1);
            transition: transform 6s ease;
        }

        .slide.active .slide-bg {
            transform: scale(1);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 20px;
        }

        .slide-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(40px);
            transition: 0.8s ease 0.3s;
        }

        .slide-text {
            font-size: 1.25rem;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            opacity: 0;
            transform: translateY(40px);
            transition: 0.8s ease 0.5s;
        }

        .slide-btn-wrapper {
            opacity: 0;
            transform: translateY(40px);
            transition: 0.8s ease 0.7s;
        }

        .slide.active .slide-title,
        .slide.active .slide-text,
        .slide.active .slide-btn-wrapper {
            opacity: 1;
            transform: translateY(0);
        }

        .slider-controls {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--white);
            transform: scale(1.5);
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: white;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-10px) translateX(-50%);
            }

            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* --- STATS COUNTER --- */
        .stats-section {
            background: var(--white);
            margin-top: -60px;
            position: relative;
            z-index: 20;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 800;
        }

        .stat-item p {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
        }

        /* --- SERVICES --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.5s ease-in-out;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--primary);
            opacity: 0.05;
            border-radius: 50% 0 0 0;
            z-index: -1;
            transition: all 0.5s ease-in-out;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-card:hover::after {
            width: 100%;
            height: 100%;
            border-radius: 0;
            opacity: 1;
            background: linear-gradient(135deg, #000000 0%, #1d1d1f 100%);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 113, 227, 0.1);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--white);
            color: var(--primary);
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: var(--white);
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-desc {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* --- WORK PROCESS --- */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
            counter-reset: step-counter;
        }

        .step-card {
            text-align: center;
            position: relative;
            padding: 20px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--dark);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .step-card h3 {
            margin-bottom: 10px;
            font-weight: 700;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .step-card::before {
            counter-increment: step-counter;
            content: "";
        }

        /* --- PORTFOLIO --- */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 250px;
            cursor: pointer;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: 0.3s;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-info h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .portfolio-info span {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* --- CONTACT --- */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-info {
            background: var(--dark);
            color: var(--white);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-group h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--white);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .info-text p {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .info-text strong {
            font-size: 1.1rem;
        }

        .contact-form {
            padding: 50px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background: var(--light);
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* --- FAQ --- */
        .faq-item {
            background: var(--white);
            border-bottom: 1px solid #eee;
            padding: 20px 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 0;
        }

        .faq-item.active .faq-answer {
            margin-top: 15px;
            max-height: 200px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--accent);
        }

        /* --- FOOTER --- */
        footer {
            background: var(--dark-light);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            display: inline-block;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .newsletter input {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: none;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }

        .newsletter button {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            color: #64748b;
            font-size: 0.9rem;
        }

        /* --- WHATSAPP ANIMATED --- */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            z-index: 999;
            text-decoration: none;
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
            animation: pulse-green 2s infinite, float-up 3s ease-in-out infinite, rotate-slow 6s linear infinite, grow 1.5s ease-in-out infinite;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
            opacity: 1;
            visibility: visible;
        }

        .wa-float.hidden {
            opacity: 0;
            visibility: hidden;
            transform: scale(0) translateY(100px) rotate(180deg);
        }

        .wa-float:hover {
            transform: scale(1.15) rotateZ(5deg);
            animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), float-up 3s ease-in-out infinite, rotate-slow 6s linear infinite, shake 0.5s ease-in-out infinite;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        .wa-float svg {
            width: 35px;
            height: 35px;
            fill: currentColor;
            animation: wiggle 0.5s ease-in-out infinite;
        }

        .wa-float:hover svg {
            animation: spin 0.8s linear infinite, pulse-icon 1s ease-in-out infinite;
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0) scale(1.15) rotateZ(5deg);
            }

            25% {
                transform: translateX(-5px) scale(1.15) rotateZ(3deg);
            }

            75% {
                transform: translateX(5px) scale(1.15) rotateZ(7deg);
            }
        }

        @keyframes pulse-icon {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes float-up {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes rotate-slow {
            0% {
                transform: rotateZ(0deg);
            }

            100% {
                transform: rotateZ(360deg);
            }
        }

        @keyframes bounce-in {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes wiggle {

            0%,
            100% {
                transform: rotateZ(0deg);
            }

            25% {
                transform: rotateZ(-5deg);
            }

            75% {
                transform: rotateZ(5deg);
            }
        }

        @keyframes spin {
            0% {
                transform: rotateZ(0deg);
            }

            100% {
                transform: rotateZ(360deg);
            }
        }

        @keyframes grow {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }
        }

        /* --- WORK / WEBSITES SECTION --- */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .work-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .work-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .work-thumbnail {
            width: 100%;
            height: 240px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            background-color: #e2e8f0;
        }

        .work-link-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
        }

        .work-card:hover .work-link-overlay {
            background: rgba(0, 0, 0, 0.7);
        }

        .work-link-overlay a {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            opacity: 0;
            transform: scale(0.8);
            transition: 0.3s ease;
            text-decoration: none;
        }

        .work-card:hover .work-link-overlay a {
            opacity: 1;
            transform: scale(1);
        }

        .work-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .work-meta {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            align-items: center;
            justify-content: space-between;
        }

        .work-badge {
            background: rgba(0, 113, 227, 0.1);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .work-year {
            color: var(--gray);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .work-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 700;
        }

        .work-card>.work-content>p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .work-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .work-tech span {
            background: #f1f5f9;
            color: #475569;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            border: 1px solid #e2e8f0;
        }

        /* --- STAR RATING WIDGET --- */
        .star-rate {
            color: #cbd5e1;
            transition: color 0.2s, transform 0.2s;
            cursor: pointer;
            user-select: none;
            font-size: 2rem;
        }

        .star-rate:hover {
            transform: scale(1.2);
        }

        .star-rate.active {
            color: #fbbf24 !important;
        }

        /* --- REVIEWS & TESTIMONIALS SECTION --- */
        .reviews-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .reviews-container {
            flex: 1;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .review-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .review-card {
            min-width: 100%;
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .review-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 30px;
            font-size: 80px;
            color: rgba(0, 113, 227, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 113, 227, 0.2);
        }

        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .review-stars .star {
            color: #fbbf24;
            filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
        }

        .review-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 25px;
            font-style: italic;
            max-width: 700px;
        }

        .review-author {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .review-company {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
        }

        .review-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            flex-shrink: 0;
            box-shadow: var(--shadow);
        }

        .review-nav-btn:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: var(--shadow-hover);
        }

        .review-nav-btn:active {
            transform: scale(0.95);
        }

        .review-nav-btn svg {
            width: 24px;
            height: 24px;
        }

        .review-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .review-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .review-dot.active {
            background: var(--primary);
            transform: scale(1.3);
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.2);
        }

        .review-dot:hover {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* --- MOBILE MENU --- */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
            transition: var(--transition);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-link {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hide nav links when mobile menu is active */
        .nav-links.hidden {
            display: none !important;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
            }

            .slide-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .slider-controls {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            /* Tweak contact block for small screens */
            #contact .contact-wrapper {
                grid-template-columns: 1fr;
                border-radius: 12px;
                overflow: hidden;
            }

            #contact .contact-info {
                padding: 20px;
                flex-direction: column;
                gap: 12px;
            }

            #contact .contact-info>div {
                width: 100%;
            }

            #contact .contact-form {
                padding: 20px;
            }

            #contact .form-control {
                padding: 12px;
                font-size: 0.95rem;
                border-radius: 8px;
            }

            #contact textarea.form-control {
                min-height: 120px;
            }

            #contact .btn {
                padding: 12px 18px;
                border-radius: 10px;
            }

            /* ensure footer newsletter inputs are usable on small screens */
            footer .newsletter input {
                padding: 10px;
                font-size: 0.95rem;
            }

            /* slightly reduce large section paddings on small devices to avoid long scrolls */
            .section-padding {
                padding: 60px 0;
            }

            .stats-section {
                flex-direction: column;
                gap: 40px;
            }

            .slide-title {
                font-size: 2.2rem;
            }

            .slide-text {
                font-size: 1rem;
            }

            /* Reviews responsive */
            .reviews-wrapper {
                gap: 8px;
                padding: 0 10px;
            }

            /* Make review track occupy full width per card on small screens */
            .reviews-container {
                overflow: hidden;
                padding: 0;
            }

            .review-track {
                gap: 0;
                /* allow horizontal scrolling on touch if needed */
                -webkit-overflow-scrolling: touch;
            }

            .review-card {
                min-width: 100%;
                flex: 0 0 100%;
                box-sizing: border-box;
                padding: 18px;
                scroll-snap-align: start;
            }

            .review-text {
                max-width: 100%;
                white-space: normal;
                overflow-wrap: break-word;
            }

            .review-nav-btn {
                width: 36px;
                height: 36px;
                border-width: 1.5px;
            }

            .review-nav-btn svg {
                width: 18px;
                height: 18px;
            }

            .review-card {
                padding: 25px 18px;
                border-radius: 16px;
            }

            .review-card::before {
                font-size: 50px;
                left: 12px;
                top: 8px;
            }

            .review-avatar {
                width: 60px;
                height: 60px;
                border-width: 3px;
                margin-bottom: 15px;
            }

            .review-stars {
                font-size: 1.2rem;
                gap: 3px;
                margin-bottom: 12px;
            }

            .review-text {
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 20px;
                max-width: 100%;
            }

            .review-author {
                font-size: 1rem;
                margin-bottom: 4px;
            }

            .review-company {
                font-size: 0.85rem;
            }

            .review-dots {
                margin-top: 20px;
                gap: 8px;
            }

            .review-dot {
                width: 10px;
                height: 10px;
            }

            .review-dot.active {
                transform: scale(1.2);
            }
        }

        /* Extra small devices (phones in portrait, less than 480px) */
        @media (max-width: 480px) {
            .reviews-wrapper {
                gap: 5px;
                padding: 0 5px;
            }

            .review-nav-btn {
                width: 32px;
                height: 32px;
            }

            .review-nav-btn svg {
                width: 16px;
                height: 16px;
            }

            .review-card {
                padding: 20px 15px;
                border-radius: 14px;
            }

            .review-card::before {
                font-size: 40px;
                left: 10px;
                top: 5px;
            }

            .review-avatar {
                width: 55px;
                height: 55px;
                border-width: 2px;
                margin-bottom: 12px;
            }

            .review-stars {
                font-size: 1.1rem;
                gap: 2px;
                margin-bottom: 10px;
            }

            .review-text {
                font-size: 0.95rem;
                line-height: 1.65;
                margin-bottom: 15px;
                max-width: 100%;

                /* Ensure single-card layout on very small screens */
                .review-track {
                    gap: 0;
                }

                .review-card {
                    min-width: 100%;
                    flex: 0 0 100%;
                    box-sizing: border-box;
                    padding: 14px 12px;
                    scroll-snap-align: start;
                }
            }

            .review-author {
                font-size: 0.95rem;
                margin-bottom: 3px;
            }

            .review-company {
                font-size: 0.8rem;
            }

            .review-dots {
                margin-top: 15px;
                gap: 6px;
            }

            .review-dot {
                width: 8px;
                height: 8px;
                border-width: 1px;
            }

            .review-dot.active {
                transform: scale(1.15);
            }
        }

        /* --- CHECKOUT MODAL --- */
        .checkout-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
            backdrop-filter: blur(4px);
        }

        .checkout-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .checkout-box {
            background: var(--white);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .checkout-header {
            padding: 24px 28px;
            border-bottom: 2px solid var(--light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 20px 20px 0 0;
        }

        .checkout-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .checkout-close {
            cursor: pointer;
            font-size: 28px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
            color: var(--white);
        }

        .checkout-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .checkout-body {
            padding: 32px 28px;
        }

        .service-info {
            background: var(--light);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }

        .service-info h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
        }

        .checkout-footer {
            padding: 20px 28px;
            border-top: 2px solid var(--light);
            display: flex;
            gap: 12px;
        }

        .btn-checkout {
            flex: 1;
            padding: 14px;
            font-size: 1rem;
            font-weight: 700;
        }

        .btn-cancel {
            background: #e2e8f0;
            color: var(--dark);
            padding: 14px 24px;
        }

        .btn-cancel:hover {
            background: #cbd5e1;
            color: var(--dark);
        }

        /* --- CONTACT MESSAGE MODAL --- */
        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
            backdrop-filter: blur(4px);
        }

        .contact-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .contact-modal-box {
            background: var(--white);
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        .contact-modal-header {
            padding: 24px 28px;
            border-bottom: 2px solid var(--light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 20px 20px 0 0;
        }

        .contact-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .contact-modal-close {
            cursor: pointer;
            font-size: 28px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
            color: var(--white);
        }

        .contact-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .contact-modal-body {
            padding: 32px 28px;
        }

        .contact-modal-form .form-group {
            margin-bottom: 20px;
        }

        .contact-modal-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .contact-modal-form input,
        .contact-modal-form select,
        .contact-modal-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
            background: var(--white);
        }

        .contact-modal-form input:focus,
        .contact-modal-form select:focus,
        .contact-modal-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
        }

        .contact-modal-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-modal-footer {
            padding: 20px 28px;
            border-top: 2px solid var(--light);
            display: flex;
            gap: 12px;
        }

        .btn-send-message {
            flex: 1;
            padding: 14px;
            font-size: 1rem;
            font-weight: 700;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        /* Toast Notification */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .toast {
            background: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 300px;
            max-width: 400px;
            animation: slideInRight 0.3s ease-out;
            border-left: 4px solid #10b981;
        }

        .toast.error {
            border-left-color: #ef4444;
        }

        .toast.warning {
            border-left-color: #f59e0b;
        }

        .toast-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .toast-icon.success {
            color: #10b981;
        }

        .toast-icon.error {
            color: #ef4444;
        }

        .toast-icon.warning {
            color: #f59e0b;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .toast-message {
            color: #64748b;
            font-size: 13px;
            line-height: 1.4;
        }

        .toast-close {
            cursor: pointer;
            color: #94a3b8;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: color 0.2s;
        }

        .toast-close:hover {
            color: #64748b;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        .toast.removing {
            animation: slideOutRight 0.3s ease-out forwards;
        }

        @media (max-width: 768px) {
            .toast-container {
                left: 20px;
                right: 20px;
            }

            .toast {
                min-width: auto;
                max-width: none;
            }
        }