        /* ===== CSS RESET & VARIABLES ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a3a5c;
            --primary-light: #2a5a8c;
            --primary-dark: #0f2440;
            --accent: #c8956c;
            --accent-light: #e0b896;
            --accent-dark: #a87548;
            --white: #ffffff;
            --off-white: #f8f6f3;
            --light-gray: #eee9e2;
            --gray: #999;
            --dark: #1a1a1a;
            --text: #333;
            --text-light: #666;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(26, 58, 92, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-brand {
            display: flex;
            flex-direction: column;
            color: var(--white);
        }

        .navbar-brand .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .navbar-brand .brand-sub {
            font-size: 0.65rem;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.8;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: var(--transition);
            letter-spacing: 0.5px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links li a:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .nav-links li a.active {
            background: var(--accent);
            color: var(--white);
        }

        /* Desktop Dropdown */
        .nav-links li .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: rgba(26, 58, 92, 0.97);
            backdrop-filter: blur(20px);
            border-radius: 10px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
            list-style: none;
            z-index: 100;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(6px);
        }

        .nav-links li .dropdown li a {
            padding: 10px 20px;
            font-size: 0.82rem;
            border-radius: 0;
            color: rgba(255,255,255,0.85);
            transition: all 0.25s ease;
        }

        .nav-links li .dropdown li a:hover {
            background: rgba(200, 149, 108, 0.2);
            color: var(--white);
            padding-left: 24px;
        }

        .nav-social {
            display: flex;
            gap: 12px;
            margin-left: 20px;
        }

        .nav-social a {
            color: var(--white);
            font-size: 1rem;
            opacity: 0.8;
            transition: var(--transition);
        }

        .nav-social a:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== MOBILE NAV (hidden on desktop) ===== */
        .mobile-nav {
            display: none;
        }

        .mobile-overlay {
            display: none;
        }

        /* ===== HERO SLIDER ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.55) 40%,
                rgba(0, 0, 0, 0.45) 100%
            );
        }

        .hero-content {
            position: absolute;
            bottom: 15%;
            left: 0;
            width: 100%;
            z-index: 10;
        }

        .hero-content .slide-label {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .hero-content h1 {
            color: var(--white);
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content h1 span {
            font-weight: 300;
            font-style: italic;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 28px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(200, 149, 108, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }

        .hero-nav {
            position: absolute;
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .hero-nav button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .hero-nav button:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .hero-dots {
            position: absolute;
            bottom: 7%;
            right: 5%;
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hero-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dots .dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* ===== ABOUT / INTRO SECTION ===== */
        .about-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-left .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .about-left h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .about-left h2 span {
            font-style: italic;
            font-weight: 400;
        }

        .about-left .motto {
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 20px;
        }

        .about-right p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-right .signature {
            margin-top: 24px;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
        }

        /* ===== FEATURE ICONS BAR ===== */
        .features-bar {
            padding: 60px 0;
            background: var(--primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .feature-item {
            color: var(--white);
        }

        .feature-item i {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--accent-light);
        }

        .feature-item h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 0.8rem;
            opacity: 0.7;
            line-height: 1.5;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 320px;
            cursor: pointer;
            group: true;
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(15, 36, 64, 0.9) 0%,
                rgba(15, 36, 64, 0.3) 50%,
                transparent 100%
            );
            transition: var(--transition);
        }

        .service-card:hover .card-overlay {
            background: linear-gradient(
                to top,
                rgba(200, 149, 108, 0.9) 0%,
                rgba(200, 149, 108, 0.4) 50%,
                transparent 100%
            );
        }

        .service-card .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            color: var(--white);
        }

        .service-card .card-content h3 {
            font-size: 1.15rem;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .service-card .card-content h3 span {
            font-weight: 300;
            font-style: italic;
        }

        .service-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }

        .service-card .card-link:hover {
            color: var(--white);
            gap: 12px;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 100px 0;
            background: var(--off-white);
            text-align: center;
        }

        .stats-section h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        .stats-section > .container > p {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 0;
        }

        .stat-item .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item .stat-label {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
        }

        /* ===== PROJECTS SECTION ===== */
        .projects-section {
            padding: 100px 0;
            background: var(--white);
        }

        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

        .projects-header h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
        }

        .projects-header a {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .projects-header a:hover {
            gap: 10px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .project-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 400px;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover img {
            transform: scale(1.08);
        }

        .project-card .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(15, 36, 64, 0.85) 0%,
                transparent 60%
            );
        }

        .project-card .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            color: var(--white);
        }

        .project-card .project-info h3 {
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .project-card .project-info .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }

        .project-card .project-info .card-link:hover {
            color: var(--accent-light);
            gap: 12px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 100px 0;
            background: var(--primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: radial-gradient(circle, rgba(200, 149, 108, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-section h2 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
            margin: 0 auto 36px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            padding: 80px 0 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .footer-brand .brand-location {
            font-size: 0.9rem;
            color: var(--accent-light);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-light);
            padding-left: 6px;
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 0.85rem;
        }

        .footer-contact-item i {
            color: var(--accent-light);
            font-size: 0.9rem;
            margin-top: 3px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            text-align: center;
            font-size: 0.8rem;
        }

        /* ===== WHATSAPP BUTTON ===== */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition);
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
            100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== COUNTER ANIMATION ===== */
        .stat-number {
            display: inline-block;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid, .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .about-grid {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-social {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .mobile-nav {
                display: block;
                position: fixed;
                top: 0;
                right: -340px;
                width: 320px;
                max-height: 100vh;
                overflow-y: auto;
                background: linear-gradient(180deg, var(--primary-dark) 0%, #0a1929 100%);
                z-index: 2000;
                padding: 0;
                transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                box-shadow: -8px 0 40px rgba(0,0,0,0.4);
            }

            .mobile-nav.open {
                right: 0;
            }

            /* Mobile Nav Header with Logo */
            .mobile-nav-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 20px 24px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
                background: rgba(0,0,0,0.15);
            }

            .mobile-nav-header .mobile-brand {
                display: flex;
                flex-direction: column;
                color: var(--white);
            }

            .mobile-nav-header .mobile-brand .brand-name {
                font-family: 'Playfair Display', serif;
                font-size: 1.3rem;
                font-weight: 700;
                line-height: 1.1;
            }

            .mobile-nav-header .mobile-brand .brand-sub {
                font-size: 0.6rem;
                font-weight: 300;
                letter-spacing: 3px;
                text-transform: uppercase;
                opacity: 0.7;
                margin-top: 2px;
            }

            .mobile-nav-close {
                background: rgba(255,255,255,0.1);
                border: none;
                color: var(--white);
                font-size: 1.2rem;
                cursor: pointer;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .mobile-nav-close:hover {
                background: rgba(255,255,255,0.2);
                transform: rotate(90deg);
            }

            /* Mobile Nav Menu Links */
            .mobile-nav-menu {
                padding: 16px 0;
            }

            .mobile-nav-menu ul {
                list-style: none;
            }

            .mobile-nav-menu > ul > li {
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .mobile-nav-menu > ul > li > a {
                color: var(--white);
                font-size: 0.95rem;
                font-weight: 500;
                padding: 14px 24px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                transition: all 0.25s ease;
            }

            .mobile-nav-menu > ul > li > a:hover {
                background: rgba(255,255,255,0.05);
                padding-left: 28px;
            }

            .mobile-nav-menu > ul > li > a i.fa-chevron-down {
                font-size: 0.7rem;
                transition: transform 0.3s ease;
                opacity: 0.5;
            }

            .mobile-nav-menu > ul > li.open > a i.fa-chevron-down {
                transform: rotate(180deg);
            }

            /* Mobile Dropdown */
            .mobile-dropdown {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.35s ease;
                background: rgba(0,0,0,0.15);
            }

            .mobile-dropdown.open {
                max-height: 400px;
            }

            .mobile-dropdown li {
                list-style: none;
            }

            .mobile-dropdown li a {
                color: rgba(255,255,255,0.7);
                font-size: 0.85rem;
                padding: 10px 24px 10px 40px;
                display: block;
                transition: all 0.25s ease;
                border-left: 2px solid transparent;
            }

            .mobile-dropdown li a:hover {
                color: var(--accent-light);
                background: rgba(200,149,108,0.08);
                border-left-color: var(--accent);
                padding-left: 44px;
            }

            /* Mobile Nav Contact Section */
            .mobile-nav-divider {
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(200,149,108,0.4), transparent);
                margin: 8px 24px;
            }

            .mobile-nav-contact {
                padding: 16px 24px;
            }

            .mobile-nav-contact h5 {
                color: var(--accent-light);
                font-family: 'Inter', sans-serif;
                font-size: 0.7rem;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 14px;
                opacity: 0.8;
            }

            .mobile-contact-item {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 12px;
                color: rgba(255,255,255,0.75);
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .mobile-contact-item i {
                color: var(--accent-light);
                font-size: 0.85rem;
                margin-top: 3px;
                width: 16px;
                text-align: center;
            }

            .mobile-contact-item a {
                color: rgba(255,255,255,0.75);
                transition: color 0.25s ease;
            }

            .mobile-contact-item a:hover {
                color: var(--accent-light);
            }

            /* Mobile Nav Map */
            .mobile-nav-map {
                padding: 0 24px 20px;
            }

            .mobile-nav-map iframe {
                width: 100%;
                height: 150px;
                border: none;
                border-radius: 10px;
                opacity: 0.9;
            }

            .mobile-overlay {
                display: block;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 1999;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .about-left h2, .section-header h2, .stats-section h2, .projects-header h2, .cta-section h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .services-grid, .projects-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .stat-item .stat-number {
                font-size: 2.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .projects-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
