:root {
            --navy: #151F29;
            --navy-light: #1C2B3A;
            --slate: #3d5a73;
            --primary: #92734E;
            --blue-bright: #3b9eff;
            --gold: #D4AF37;
            --light-bg: #f5f5f5;
            --light-blue: #dbe4ec;
            --text-dark: #151F29;
            --text-light: #6B6B6B;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 60px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            height: 60px;
            background: rgba(21,31,41,0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            transition: box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        }

        .header .logo {
            font-size: 1.15rem;
            font-weight: 800;
            color: white;
        }

        .header .logo span {
            color: var(--blue-bright);
        }

        .header nav {
            display: flex;
            gap: 32px;
        }

        .header nav a {
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
        }

        .header nav a:hover,
        .header nav a.active {
            color: var(--blue-bright);
        }

        .header .phone-btn {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .header .phone-btn:hover {
            background: var(--blue-bright);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-nav {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: rgba(21,31,41,0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav a {
            display: block;
            padding: 16px 24px;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 80px 0;
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in {
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

        /* Hero */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(21,31,41,0.75), rgba(21,31,41,0.8)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1400&h=900&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 300;
            font-style: italic;
            color: white;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroEntry 1s ease 0.3s forwards;
        }

        .hero-text h1 span {
            color: var(--gold);
        }

        .hero-text p {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroEntry 1s ease 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroEntry 1s ease 0.9s forwards;
        }

        .btn-primary {
            background: var(--navy);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
            color: white;
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.25s ease;
            display: inline-block;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.08);
        }

        .hero-form {
            background: rgba(60,85,110,0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 36px 32px;
            transform: perspective(1000px) rotateY(0deg);
        }

        .hero-form h3 {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

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

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            background: var(--blue-bright);
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 150px;
            height: 150px;
            background: var(--gold);
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

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

        @keyframes heroEntry {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--navy);
            padding: 40px 0;
        }

        .trust-items {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

        .trust-item .check {
            color: var(--blue-bright);
            font-size: 16px;
            font-weight: bold;
        }

        .count-up {
            font-size: 18px;
            font-weight: 800;
            color: var(--gold);
        }

        /* Services */
        .services {
            background: var(--light-bg);
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .eyebrow {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--blue-bright);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: white;
            padding: 32px;
            border-radius: 0;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .service-card:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .service-card .icon {
            width: 48px;
            height: 48px;
            background: rgba(59, 158, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.35s ease;
        }

        .service-card:hover .icon {
            background: rgba(59, 158, 255, 0.2);
        }

        .service-card .icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--blue-bright);
            stroke-width: 2;
            fill: none;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .service-card p {
            font-size: 14px;
            opacity: 0.8;
        }

        .services-image {
            text-align: center;
            margin-top: 60px;
        }

        .services-image img {
            width: 100%;
            max-width: 600px;
            border-radius: 10px;
            box-shadow: 8px 8px 0px var(--primary);
        }

        /* Why Choose Us */
        .why-choose {
            background: var(--navy);
        }

        .why-choose .section-title {
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .why-card {
            background: rgba(28,43,58,0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.35s ease;
        }

        .why-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.2);
        }

        .why-card .icon {
            width: 60px;
            height: 60px;
            background: rgba(59, 158, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .why-card .icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--blue-bright);
            stroke-width: 2;
            fill: none;
        }

        .why-card h3 {
            color: white;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .why-card p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        /* Service Areas */
        .service-areas {
            background: var(--light-blue);
        }

        .areas-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .area-pill {
            background: var(--navy);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
        }

        /* About */
        .about {
            background: var(--light-bg);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text ul {
            list-style: none;
            margin: 24px 0;
        }

        .about-text li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .about-text li::before {
            content: "✓";
            color: var(--blue-bright);
            font-weight: bold;
            font-size: 16px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 8px 8px 0px var(--primary);
            clip-path: inset(100% 0 0 0);
            transition: clip-path 0.8s ease;
        }

        .about-image img.visible {
            clip-path: inset(0);
        }

        /* FAQ */
        .faq {
            background: var(--light-bg);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            margin-bottom: 0;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 24px 0;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-toggle {
            font-size: 20px;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 0 24px 0;
        }

        .faq-answer p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(rgba(21,31,41,0.8), rgba(21,31,41,0.85)), url('https://images.unsplash.com/photo-1592150621744-aca64f48394a?w=1400&h=900&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .final-cta .container {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .final-cta .eyebrow {
            color: var(--blue-bright);
        }

        .final-cta h2 {
            color: white;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .final-cta h2 span {
            color: var(--gold);
        }

        .final-cta p {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-glow {
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 15px rgba(146,115,78,0.3); }
            50% { box-shadow: 0 0 30px rgba(146,115,78,0.5); }
        }

        .phone-cta {
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .phone-cta:hover {
            background: var(--blue-bright);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #1a2530;
            color: rgba(255,255,255,0.6);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            color: white;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-brand h3 span {
            color: var(--blue-bright);
        }

        .footer-brand p {
            margin-bottom: 24px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 30px;
            height: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
        }

        .footer-links h4 {
            color: white;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .footer-links ul li {
            margin-bottom: 8px;
        }

        .footer-links ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .header nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .trust-items {
                flex-direction: column;
                gap: 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 580px) {
            .header {
                padding: 0 20px;
            }

            .container {
                padding: 0 16px;
            }

            .hero-text h1 {
                font-size: 32px;
            }

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

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

            .areas-grid {
                justify-content: flex-start;
            }

            .section {
                padding: 60px 0;
            }
        }