:root {
            /* Brand Colors */
            --blue-deep: #0F172A;
            --blue-dark: #1E293B;
            --blue-medium: #3B82F6;
            --blue-institutional: #2563EB;
            --blue-light: #60A5FA;
            --gray-dark: #475569;
            --gray-medium: #64748B;
            --gray-light: #94A3B8;
            --gray-lighter: #CBD5E1;
            --gray-lightest: #F1F5F9;
            --white: #FFFFFF;
            --background: #F8FAFC;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
            --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
            --gradient-subtle: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--blue-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            transition: all var(--transition-base);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(148, 163, 184, 0.1);
            padding: 1rem 5%;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--blue-light);
        }

        .navbar.scrolled .logo {
            filter: invert(1);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--gray-dark);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue-medium);
            transition: width var(--transition-base);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--blue-light);
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--blue-medium);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: var(--gradient-blue);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--white);
            color: var(--blue-deep);
        }

        .btn-white:hover {
            background: var(--gray-lightest);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--blue-medium);
            border: 2px solid var(--blue-medium);
        }

        .btn-outline:hover {
            background: var(--blue-medium);
            color: var(--white);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
        }

        .navbar.scrolled .mobile-menu-toggle {
            color: var(--blue-deep);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient-primary);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 8rem 5% 5rem;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--blue-light);
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .hero-title span {
            color: var(--blue-light);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 540px;
            font-weight: 400;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--blue-light);
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-2xl);
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .hero-card-title {
            color: var(--white);
            font-size: 1.125rem;
            font-weight: 600;
        }

        .hero-card-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--blue-light);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10B981;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .metric-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metric-value {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .metric-change {
            font-size: 0.875rem;
            color: #10B981;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .hero-chart {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 0.75rem;
            height: 120px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, var(--blue-medium), var(--blue-light));
            border-radius: 6px 6px 0 0;
            opacity: 0.8;
            transition: all var(--transition-base);
        }

        .chart-bar:hover {
            opacity: 1;
            transform: scaleY(1.05);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-xl);
            animation: float 6s ease-in-out infinite;
        }

        .float-card-1 {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }

        .float-card-2 {
            bottom: 20%;
            left: -30px;
            animation-delay: 2s;
        }

        .float-card-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 0.5rem;
        }

        .float-card-text {
            font-size: 0.75rem;
            color: var(--gray-medium);
            font-weight: 500;
        }

        .float-card-value {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--blue-deep);
            font-size: 1.125rem;
        }

        /* Section Styles */
        section {
            padding: 7rem 5%;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            display: inline-block;
            background: var(--blue-lightest);
            color: var(--blue-medium);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--blue-deep);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-medium);
            line-height: 1.7;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content {
            position: relative;
        }

        .about-text {
            font-size: 1.125rem;
            color: var(--gray-dark);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-lightest);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-medium);
            flex-shrink: 0;
        }

        .about-feature-text h4 {
            font-size: 1rem;
            color: var(--blue-deep);
            margin-bottom: 0.25rem;
        }

        .about-feature-text p {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .about-visual {
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
        }

        .about-image {
            width: 500px;
            height: 600px;
            background: var(--gradient-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .about-stats-overlay {
            position: absolute;
            bottom: 2rem;
            left: -2rem;
            right: -2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .about-stat h3 {
            font-size: 2.5rem;
            color: var(--blue-medium);
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .about-stat p {
            font-size: 0.875rem;
            color: var(--gray-medium);
            font-weight: 500;
        }

        /* Services Section */
        .services {
            background: var(--background);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(148, 163, 184, 0.2);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-blue);
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--blue-lightest);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--blue-medium);
            margin-bottom: 1.5rem;
            transition: all var(--transition-base);
        }

        .service-card:hover .service-icon {
            background: var(--gradient-blue);
            color: var(--white);
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.375rem;
            color: var(--blue-deep);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-description {
            color: var(--gray-medium);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-list li {
            padding: 0.5rem 0;
            color: var(--gray-dark);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .service-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 600;
            color: var(--blue-medium);
            font-size: 0.875rem;
        }

        .service-link {
            color: var(--blue-medium);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap var(--transition-fast);
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        /* Differentials Section */
        .differentials {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .differentials .section-tag {
            background: rgba(255, 255, 255, 0.1);
            color: var(--blue-light);
        }

        .differentials .section-title {
            color: var(--white);
        }

        .differentials .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .differentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .differential-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all var(--transition-base);
        }

        .differential-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .differential-icon {
            width: 56px;
            height: 56px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--blue-light);
            margin-bottom: 1.5rem;
        }

        .differential-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .differential-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Process Section */
        .process {
            background: var(--white);
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(to right, var(--blue-lightest), var(--blue-medium), var(--blue-lightest));
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 3px solid var(--blue-medium);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--blue-medium);
            margin: 0 auto 1.5rem;
            transition: all var(--transition-base);
        }

        .process-step:hover .process-number {
            background: var(--gradient-blue);
            color: var(--white);
            transform: scale(1.1);
        }

        .process-title {
            font-size: 1.125rem;
            color: var(--blue-deep);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .process-text {
            color: var(--gray-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Location Section */
        .location {
            background: var(--background);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        .location-card {
            background: var(--white);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-icon {
            width: 64px;
            height: 64px;
            background: var(--blue-lightest);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--blue-medium);
            margin-bottom: 1.5rem;
        }

        .location-title {
            font-size: 1.75rem;
            color: var(--blue-deep);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .location-address {
            font-size: 1.125rem;
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .location-detail {
            color: var(--gray-medium);
            margin-bottom: 2rem;
        }

        .location-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .location-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-dark);
        }

        .location-feature i {
            color: var(--blue-medium);
        }

        .map-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 100%;
            min-height: 400px;
            background: var(--gray-lightest);
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%) contrast(1.1);
        }

        /* CTA Section */
        .cta {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            text-align: center;
            padding: 8rem 5%;
        }

        .cta-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .cta-title span {
            color: var(--blue-light);
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: #25D366;
            color: var(--white);
            padding: 1.25rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.125rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: all var(--transition-base);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .cta-button i {
            font-size: 1.5rem;
        }

        /* Footer */
        .footer {
            background: var(--blue-deep);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-base);
        }

        .footer-social a:hover {
            background: var(--blue-medium);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--blue-light);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-contact-item i {
            color: var(--blue-light);
            margin-top: 0.25rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        .txt-port{
            color:white;
            text-decoration: none;
            transition: color .5s ease;
        }

        .txt-port:hover{
            color: #E53342;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-grid,
            .location-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                order: -1;
            }

            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-stats-overlay {
                position: relative;
                bottom: 0;
                left: 0;
                right: 0;
                margin-top: 2rem;
            }

            .about-image{
                width: 100%;
            }

            .about-image div img{
                width: 100%;
                object-fit: cover;
                object-position: 20%;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                gap: 1.5rem;
                transition: right var(--transition-base);
                box-shadow: var(--shadow-2xl);
            }

            .nav-menu.active {
                right: 0;
            }

            .navbar.scrolled .nav-link {
                color: var(--gray-dark);
            }

            .nav-link {
                color: var(--gray-dark);
                font-size: 1.125rem;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-stats-overlay {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        @media (max-width:450px){
            .hero-visual{
                display: none;
            }
        }

        /* Utility Classes */
        .text-gradient {
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }