:root {
            --primary: #0f172a;
            --primary-light: #1e293b;
            --accent: #f97316;
            --accent-hover: #ea580c;
            --accent-light: #fb923c;
            --accent-glow: rgba(249, 115, 22, 0.15);
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-900: #0f172a;
        }

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

        html {
            scroll-behavior: smooth;
        }

        /* Scroll offset for sticky header */
        section[id] {
            scroll-margin-top: 80px;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.7;
        }

        /* ==================== */
        /* TOP BAR */
        /* ==================== */
        .top-bar {
            background: var(--primary);
            color: var(--white);
            padding: 0.6rem 2rem;
            font-size: 0.85rem;
        }

        .top-bar-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 2rem;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-item:hover {
            color: var(--accent);
        }

        .top-bar-item svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        /* ==================== */
        /* HEADER / NAVIGATION */
        /* ==================== */
        header {
            background: var(--white);
            padding: 1rem 2rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

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

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

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

        .nav-cta {
            background: var(--accent);
            color: var(--white) !important;
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            padding: 2rem;
            flex-direction: column;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--primary);
        }

        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu-links a {
            font-size: 1.25rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        /* ==================== */
        /* HERO SECTION */
        /* ==================== */
        .hero {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            min-height: calc(100vh - 120px);
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .hero h1 .highlight {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--accent);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray-500);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        }

        .btn-primary svg {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        /* Hero Visual - Stats Card */
        .hero-visual {
            position: relative;
        }

        .stats-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 25px 80px rgba(0,0,0,0.08), 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-100);
        }

        .stats-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--gray-100);
        }

        .stats-card-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .stats-card-badge {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            padding: 0.35rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

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

        .stat-item {
            text-align: center;
            padding: 1.75rem 1rem;
            background: var(--gray-50);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: var(--accent-glow);
            transform: translateY(-3px);
        }

        .stat-value {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        /* Floating Elements */
        .floating-badge {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.25rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 3s ease-in-out infinite;
        }

        .floating-badge-1 {
            top: -30px;
            right: -10px;
        }

        .floating-badge-2 {
            bottom: -25px;
            left: -50px;
            animation-delay: 1.5s;
        }

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

        .floating-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            line-height: 1;
        }

        .floating-text strong {
            display: block;
            font-size: 0.9rem;
            color: var(--primary);
        }

        .floating-text span {
            font-size: 0.75rem;
            color: var(--gray-400);
        }

        /* ==================== */
        /* TRUST BAR */
        /* ==================== */
        .trust-bar {
            padding: 3rem 0;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .trust-bar-label {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray-400);
            margin-bottom: 2rem;
        }

        .marquee-container {
            overflow: hidden;
            position: relative;
        }

        /* Fade edges */
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, var(--gray-50) 0%, transparent 100%);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, var(--gray-50) 0%, transparent 100%);
        }

        .marquee-track {
            display: flex;
            align-items: flex-start;
            gap: 4rem;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

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

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

        .trust-client {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .trust-logo {
            height: 55px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            flex-shrink: 0;
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: grayscale(30%);
        }

        .trust-client:hover .trust-logo {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .client-name {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--gray-500);
            text-align: center;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .trust-client:hover .client-name {
            color: var(--primary);
        }

        /* ==================== */
        /* WHO WE ARE SECTION */
        /* ==================== */
        .who-we-are {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .who-we-are-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .who-we-are-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .who-we-are-content {
            max-width: 550px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent);
        }

        .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .section-title .highlight {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--accent);
        }

        .who-we-are-content p {
            font-size: 1.1rem;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .who-we-are-content p:last-of-type {
            margin-bottom: 2rem;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            gap: 0.75rem;
        }

        .btn-secondary svg {
            transition: transform 0.3s ease;
        }

        .btn-secondary:hover svg {
            transform: translateX(4px);
        }

        /* Core Values Cards */
        .values-visual {
            position: relative;
        }

        .values-visual::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: var(--accent-glow);
            border-radius: 50%;
            z-index: -1;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }

        .value-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 16px;
            padding: 1.75rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-glow);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .value-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .value-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ==================== */
        /* WHAT WE DO SECTION */
        /* ==================== */
        .what-we-do {
            padding: 6rem 2rem;
            background: var(--gray-50);
        }

        .what-we-do-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header .section-label {
            justify-content: center;
        }

        .section-header .section-label::before {
            display: block;
        }

        .section-header .section-label::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent);
        }

        .section-desc {
            color: var(--gray-500);
            font-size: 1.1rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 2.25rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .service-card.featured {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
        }

        .service-card.featured::before {
            content: 'Flagship Product';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.35rem 1rem;
            border-radius: 50px;
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: var(--accent-glow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: var(--accent);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary);
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--gray-500);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        .service-link.external::after {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-left: 0.25rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f97316' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* ==================== */
        /* ENGAGEMENT SECTION */
        /* ==================== */
        .engagement {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .engagement-container {
            max-width: 1280px;
            margin: 0 auto;
        }

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

        .engagement-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .engagement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

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

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

        .engagement-icon {
            width: 64px;
            height: 64px;
            background: var(--accent-glow);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .engagement-card:hover .engagement-icon {
            background: var(--accent);
            transform: scale(1.05);
        }

        .engagement-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .engagement-card > p {
            font-size: 1rem;
            color: var(--gray-500);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            text-align: center;
        }

        .engagement-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .engagement-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--gray-600);
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-100);
        }

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

        .engagement-features li svg {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--accent);
            margin-top: 2px;
        }

        .engagement-best-for {
            background: var(--gray-50);
            border-radius: 12px;
            padding: 1rem 1.25rem;
        }

        .engagement-best-for strong {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-400);
            margin-bottom: 0.5rem;
        }

        .engagement-best-for span {
            font-size: 0.95rem;
            color: var(--gray-600);
        }

        /* ==================== */
        /* CONTACT SECTION */
        /* ==================== */
        .contact {
            padding: 6rem 2rem;
            background: white;
        }

        .contact-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-content {
            max-width: 500px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
        }

        .contact-info-item .icon {
            width: 52px;
            height: 52px;
            background: var(--accent-glow);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover .icon {
            background: var(--accent);
            transform: scale(1.05);
        }

        .contact-info-item .info {
            padding-top: 0.25rem;
        }

        .contact-info-item .info strong {
            display: block;
            color: var(--primary);
            font-size: 1.05rem;
            margin-bottom: 0.35rem;
        }

        .contact-info-item .info span,
        .contact-info-item .info a {
            color: var(--gray-500);
            font-size: 0.95rem;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-info-item .info a:hover {
            color: var(--accent);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-100);
        }

        .contact-form-wrapper h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .contact-form-wrapper > p {
            font-size: 0.95rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

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

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

        .form-group.full-width {
            grid-column: span 2;
        }

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

        .form-group label .required {
            color: var(--accent);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

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

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-400);
        }

        /* reCAPTCHA placeholder */
        .recaptcha-wrapper {
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: var(--white);
            border-radius: 10px;
            border: 2px dashed var(--gray-300);
        }

        .recaptcha-placeholder {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-600);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .recaptcha-placeholder svg {
            width: 32px;
            height: 32px;
            color: var(--accent);
        }

        .recaptcha-note {
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-top: 0.75rem;
        }

        .btn-primary {
            width: 100%;
            background: var(--accent);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
        }

        .btn-primary svg {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        /* Form Messages */
        .form-message {
            padding: 1rem 1.25rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .form-message.success {
            background: #ecfdf5;
            border: 1px solid #10b981;
            color: #065f46;
        }

        .form-message.error {
            background: #fef2f2;
            border: 1px solid #ef4444;
            color: #991b1b;
        }

        .form-message .icon {
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        /* ==================== */
        /* FOOTER */
        /* ==================== */
        .footer {
            background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
        }

        .footer-logo {
            height: 50px;
            width: auto;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }

        .footer-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            text-decoration: none;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-contact-item span.icon {
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-item.address span:not(.icon) {
            line-height: 1.6;
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            background: var(--accent);
            color: var(--white);
        }

        .social-link:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

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

        .footer-bottom-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

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

        /* ==================== */
        /* RESPONSIVE STYLES */
        /* ==================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-visual {
                max-width: 480px;
                margin: 0 auto;
            }

            .floating-badge-1 {
                top: -25px;
                right: 10px;
            }

            .floating-badge-2 {
                bottom: -20px;
                left: 10px;
            }

            .trust-logo {
                height: 45px;
                max-width: 120px;
            }

            .client-name {
                font-size: 0.75rem;
            }

            .marquee-track {
                gap: 3rem;
            }

            .who-we-are-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .who-we-are-content {
                max-width: 100%;
                text-align: center;
            }

            .who-we-are-content .section-label {
                justify-content: center;
            }

            .values-visual::before {
                display: none;
            }

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

            .engagement-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-content {
                max-width: 100%;
                text-align: center;
            }

            .contact-content .section-label {
                justify-content: center;
            }

            .contact-info-list {
                align-items: center;
            }

            .contact-info-item {
                text-align: left;
            }

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

        @media (max-width: 768px) {
            .top-bar-content {
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 3rem 1.5rem;
            }

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

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

            .floating-badge {
                display: none;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-item {
                padding: 1.25rem 0.75rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .trust-bar {
                padding: 2rem 0;
            }

            .trust-logo {
                height: 40px;
                max-width: 100px;
            }

            .client-name {
                font-size: 0.7rem;
            }

            .trust-client {
                gap: 0.5rem;
            }

            .marquee-track {
                gap: 2.5rem;
            }

            .marquee-container::before,
            .marquee-container::after {
                width: 50px;
            }

            .who-we-are {
                padding: 4rem 1.5rem;
            }

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

            .value-card {
                padding: 1.5rem;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-logo {
                margin: 0 auto 1rem;
            }

            .footer-contact-item {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .top-bar-item span {
                display: none;
            }

            .top-bar-item svg {
                width: 18px;
                height: 18px;
                opacity: 1;
            }

            .hero-tagline {
                font-size: 0.75rem;
            }

            .stats-card {
                padding: 1.5rem;
            }

            .stats-card-header {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }

            .trust-logo {
                height: 35px;
                max-width: 90px;
            }

            .client-name {
                font-size: 0.65rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

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

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }