        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --teal: #4FB3A3;
            --teal-light: #7FC9BD;
            --teal-dark: #3A8A7D;
            --orange: #F5A623;
            --orange-light: #F7B954;
            --orange-dark: #D98F1C;
            --dark: #1F1F2E;
            --light: #FAFAFA;
            --white: #FFFFFF;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
            --success: #10B981;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        /* Animated Background Elements */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
            background: var(--white);
            color: var(--dark);
            line-height: 1.6;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            box-shadow: var(--shadow-md);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
            z-index: 1002;
        }
        
        .logo img {
            height: 50px;
            width: auto;
            display: block;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1002;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--dark);
            margin: 5px auto;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Desktop Menu */
        .nav-menu {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            background: rgba(79, 179, 163, 0.1);
        }
        
        .nav-arrow {
            font-size: 0.7rem;
            transition: transform 0.2s ease;
            opacity: 0.6;
        }
        
        .nav-item:hover .nav-arrow {
            transform: rotate(180deg);
        }
        
        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border-radius: 16px;
            padding: 0;
            min-width: 850px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--gray-light);
            overflow: hidden;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .mega-menu-header {
            background: var(--teal);
            color: white;
            padding: 1.25rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .mega-menu-content {
            padding: 2rem;
        }
        
        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }
        
        .mega-menu-grid.four-columns {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .mega-menu-column h3 {
            color: var(--teal-dark);
            margin-bottom: 1rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--orange);
        }
        
        .mega-menu-column a {
            display: block;
            color: var(--dark);
            text-decoration: none;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            position: relative;
            padding-left: 1rem;
        }
        
        .mega-menu-column a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.2s ease;
        }
        
        .mega-menu-column a:hover {
            color: var(--teal-dark);
            padding-left: 1.5rem;
        }
        
        .mega-menu-column a:hover::before {
            opacity: 1;
        }
        
        /* States Mega Menu Special */
        .states-mega-menu .mega-menu-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .state-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .state-abbr {
            width: 32px;
            height: 32px;
            background: rgba(79, 179, 163, 0.15);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.75rem;
            color: var(--teal-dark);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 1001;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-content {
            padding: 80px 20px 40px;
        }
        
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-light);
        }
        
        .mobile-nav-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .mobile-nav-arrow {
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-item.active .mobile-nav-arrow {
            transform: rotate(90deg);
        }
        
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-nav-item.active .mobile-submenu {
            max-height: 1000px;
        }
        
        .mobile-submenu-item {
            padding: 0.75rem 0 0.75rem 1.5rem;
            color: var(--gray);
            text-decoration: none;
            display: block;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }
        
        .mobile-submenu-item:hover {
            color: var(--teal-dark);
        }
        
        .mobile-cta {
            margin-top: 2rem;
            padding: 0 20px;
        }
        
        .mobile-cta .btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: 77px;
            background: linear-gradient(to bottom, #f8fffe 0%, #ffffff 100%);
            overflow: hidden;
        }
        
        /* Animated Energy Elements */
        .energy-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .energy-particle {
            position: absolute;
            background: var(--teal);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }
        
        .energy-particle:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .energy-particle:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 70%;
            left: 20%;
            animation-delay: 2s;
            background: var(--orange);
        }
        
        .energy-particle:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 15%;
            animation-delay: 4s;
        }
        
        .energy-particle:nth-child(4) {
            width: 50px;
            height: 50px;
            bottom: 20%;
            right: 30%;
            animation-delay: 6s;
            background: var(--orange);
        }
        
        .windmill-icon {
            position: absolute;
            width: 120px;
            height: 120px;
            opacity: 0.05;
            animation: spin-slow 20s linear infinite;
        }
        
        .windmill-icon:nth-child(5) {
            top: 15%;
            right: 10%;
            animation-duration: 25s;
        }
        
        .windmill-icon:nth-child(6) {
            bottom: 25%;
            left: 8%;
            animation-duration: 30s;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero-text h1 .highlight {
            color: var(--teal);
            position: relative;
            display: inline-block;
        }
        
        .hero-text h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--orange);
            animation: pulse-glow 2s infinite;
        }
        
        .hero-text .subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 400;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding: 2rem 0;
            border-top: 1px solid var(--gray-light);
            border-bottom: 1px solid var(--gray-light);
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--teal);
            display: block;
            margin-bottom: 0.25rem;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1.1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--teal);
            color: white;
            box-shadow: 0 4px 20px rgba(79, 179, 163, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(79, 179, 163, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--teal-dark);
            border: 2px solid var(--teal);
        }
        
        .btn-secondary:hover {
            background: var(--teal);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Image */
        .hero-visual {
            position: relative;
            height: 600px;
        }
        
        .hero-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay-card {
            position: absolute;
            bottom: 30px;
            right: -30px;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            min-width: 280px;
            z-index: 3;
            animation: float 6s infinite ease-in-out;
        }
        
        .overlay-card-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .overlay-card-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--teal);
            margin-bottom: 0.5rem;
        }
        
        .overlay-card-text {
            font-size: 0.95rem;
            color: var(--dark);
            font-weight: 500;
        }
        
        .hero-badge {
            position: absolute;
            top: 30px;
            left: -30px;
            background: var(--orange);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
            z-index: 3;
            animation: pulse-glow 3s infinite;
        }
        
        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: white;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .section-label {
            display: inline-block;
            background: rgba(79, 179, 163, 0.1);
            color: var(--teal-dark);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-title .highlight {
            color: var(--teal);
        }
        
        .section-description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--gray);
            line-height: 1.8;
        }
        
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border: 1px solid var(--gray-light);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--teal);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(79, 179, 163, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: var(--teal);
            transform: scale(1.1);
        }
        
        .service-card:hover .service-icon::after {
            filter: brightness(0) invert(1);
        }
        
        /* Industries Section */
        .industries {
            padding: 5rem 2rem;
            background: var(--light);
        }
        
        .industries-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2.5rem;
        }
        
        .industry-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }
        
        .industry-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .industry-card:hover .industry-image img {
            transform: scale(1.05);
        }
        
        .industry-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .industry-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .industry-content > p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .industry-list {
            list-style: none;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        
        .industry-list li {
            padding: 0.5rem 0;
            color: var(--dark);
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }
        
        .industry-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700;
        }
        
        /* Detailed Services Section */
        .services-detailed {
            padding: 5rem 2rem;
            background: white;
        }
        
        .services-detailed-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .services-categories {
            display: grid;
            gap: 4rem;
        }
        
        .service-category {
            border-left: 4px solid var(--teal);
            padding-left: 2rem;
        }
        
        .category-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .category-title::before {
            content: '';
            position: absolute;
            left: -2.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: var(--teal);
            border-radius: 50%;
        }
        
        .service-items {
            display: grid;
            gap: 2rem;
        }
        
        .service-item {
            padding: 1.5rem;
            background: rgba(79, 179, 163, 0.02);
            border-radius: 12px;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            background: rgba(79, 179, 163, 0.05);
            border-color: var(--teal);
            transform: translateX(8px);
        }
        
        .service-item h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }
        
        .service-item p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* Clients Carousel Section */
        .clients-section {
            padding: 5rem 2rem;
            background: linear-gradient(to bottom, var(--light) 0%, white 100%);
            overflow: hidden;
        }
        
        .clients-carousel-wrapper {
            max-width: 100%;
            margin: 3rem auto 0;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(
                to right,
                transparent,
                black 10%,
                black 90%,
                transparent
            );
            mask-image: linear-gradient(
                to right,
                transparent,
                black 10%,
                black 90%,
                transparent
            );
        }
        
        .clients-carousel {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .clients-track {
            display: flex;
            gap: 3rem;
            align-items: center;
            width: fit-content;
        }
        
        .clients-track[data-direction="right"] {
            animation: scroll-right 40s linear infinite;
        }
        
        .clients-track[data-direction="left"] {
            animation: scroll-left 40s linear infinite;
        }
        
        .clients-track:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll-right {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @keyframes scroll-left {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }
        
        .client-logo {
            flex-shrink: 0;
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-light);
        }
        
        .client-logo:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-color: var(--teal);
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: filter 0.3s ease;
        }
        
        .client-logo:hover img {
            filter: grayscale(0%) opacity(1);
        }
        
        .service-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--teal-dark);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            transition: gap 0.2s ease;
        }
        
        .service-link:hover {
            gap: 0.75rem;
        }
        
        /* Process Section */
        .process {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
        }
        
        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 2rem 0;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--teal);
            z-index: 1;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
        }
        
        .process-step-number {
            width: 60px;
            height: 60px;
            background: white;
            border: 3px solid;
            border-color: var(--teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--teal-dark);
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-step-number {
            background: var(--teal);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
        }
        
        .process-step h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .process-step p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Markets Section */
        .markets {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--dark) 0%, #2D2D3F 100%);
            color: white;
        }
        
        .markets-map {
            max-width: 1400px;
            margin: 3rem auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }
        
        .markets-list {
            display: grid;
            gap: 0.75rem;
        }
        
        .market-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .market-item:hover {
            background: rgba(79, 179, 163, 0.1);
            border-color: var(--teal);
            transform: translateX(8px);
        }
        
        .market-name {
            font-weight: 600;
            font-size: 1rem;
        }
        
        .market-status {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(16, 185, 129, 0.2);
            color: #10B981;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .markets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }
        
        .market-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .market-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: var(--teal);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
        }
        
        .market-card:hover {
            transform: translateY(-4px);
            border-color: var(--teal);
        }
        
        .market-card:hover::before {
            opacity: 0.1;
            transform: translate(-50%, -50%) scale(2);
        }
        
        .market-abbr {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
        
        .market-full {
            font-size: 0.85rem;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }
        
        /* Results Section */
        .results {
            padding: 5rem 2rem;
            background: white;
        }
        
        .results-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .result-card {
            text-align: center;
            padding: 2rem;
            border-radius: 16px;
            background: rgba(79, 179, 163, 0.03);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .result-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal);
        }
        
        .result-number {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--teal);
            margin-bottom: 0.5rem;
        }
        
        .result-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .result-description {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--teal);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .cta-buttons-center {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background: white;
            color: var(--teal-dark);
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0;
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-logo img {
            height: 50px;
            width: auto;
            background: white;
            padding: 0.5rem;
            border-radius: 8px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .footer-certifications {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .footer-cert {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-column h4 {
            margin-bottom: 1.5rem;
            color: var(--orange);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            padding: 0.5rem 0;
            transition: all 0.2s ease;
            font-size: 0.95rem;
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(4px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Mobile Responsive */
        @media (max-width: 968px) {
            .mega-menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .states-mega-menu .mega-menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            /* Navigation */
            .nav-container {
                padding: 1rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                display: block;
            }
            
            /* Hero */
            .hero {
                margin-top: 70px;
                min-height: auto;
                padding: 2rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 2rem 1rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            
            .hero-stat-number {
                font-size: 1.75rem;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .hero-badge {
                position: static;
                margin-bottom: 1rem;
                display: inline-block;
            }
            
            .hero-overlay-card {
                position: static;
                margin-top: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            /* Services */
            .services {
                padding: 3rem 1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            /* Industries */
            .industries {
                padding: 3rem 1rem;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .industry-card {
                max-width: 100%;
            }
            
            .industry-image {
                height: 200px;
            }
            
            .industry-content {
                padding: 1.5rem;
            }
            
            /* Detailed Services */
            .services-detailed {
                padding: 3rem 1rem;
            }
            
            .service-category {
                padding-left: 1.5rem;
                border-left-width: 3px;
            }
            
            .category-title {
                font-size: 1.35rem;
            }
            
            .category-title::before {
                left: -1.75rem;
                width: 10px;
                height: 10px;
            }
            
            .service-items {
                gap: 1.5rem;
            }
            
            .service-item {
                padding: 1.25rem;
            }
            
            .service-item h4 {
                font-size: 1.1rem;
            }
            
            /* Clients Carousel */
            .clients-section {
                padding: 3rem 1rem;
            }
            
            .clients-carousel {
                gap: 1.5rem;
            }
            
            .clients-track {
                gap: 2rem;
            }
            
            .client-logo {
                width: 140px;
                height: 80px;
                padding: 1rem;
            }
            
            /* Process */
            .process {
                padding: 3rem 1rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .process-line {
                display: none;
            }
            
            .process-step-number {
                margin: 0 auto 1rem;
            }
            
            /* Markets */
            .markets {
                padding: 3rem 1rem;
            }
            
            .markets-map {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .markets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* Results */
            .results {
                padding: 3rem 1rem;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* CTA */
            .cta-section {
                padding: 3rem 1rem;
            }
            
            /* Footer */
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-logo img {
                height: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .markets-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 1.75rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
        }

/* ============================================
   FOOTER SOCIAL LINKS - Add to assets/css/style.css
   ============================================ */

/* Footer Logo Background (for dark footer) */
.footer-logo-bg {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin: 1.5rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange, #F5A623);
    transform: translateY(-3px);
}

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

/* Responsive - stack social icons on mobile */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

/* ============================================
   ENHANCED FOOTER STYLES
   Add these to your main style.css file
   ============================================ */

/* Footer Solutions Section - Internal Linking */
.footer-solutions {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 5%;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-solutions h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-solutions-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-solutions-label {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-solutions-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    padding: 0.25rem 0;
}

.footer-solutions-column a:hover {
    color: var(--teal-light);
    padding-left: 0.5rem;
}

/* Footer Secondary Links Section */
.footer-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-secondary-links h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}

.footer-secondary-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-secondary-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.6;
}

.footer-secondary-links a:hover {
    color: var(--teal-light);
}

/* Enhanced Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0.3rem 0;
}

.footer-tagline {
    color: var(--teal) !important;
    font-weight: 500;
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--teal-light);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-solutions {
        padding: 2rem 4%;
    }
    
    .footer-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 4%;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-solutions-column {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-solutions-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}