/* ========================================
           RESET & BASE
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #4A4A5A;
            background-color: #FAFAF7;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        h1, h2, h3, h4, h5, h6 {
            color: #1A1A2E;
            line-height: 1.2;
            font-weight: 700;
        }

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

        .section-padding {
            padding: 100px 0;
        }

        .section-alt {
            background-color: #F2F0EB;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #C4652A;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 16px;
            color: #1A1A2E;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #4A4A5A;
            max-width: 600px;
            line-height: 1.7;
        }

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

        .section-header .section-subtitle {
            margin: 0 auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            gap: 8px;
        }

        .btn-primary {
            background-color: #C4652A;
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #D4783A;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 101, 42, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: #1A1A2E;
            border: 2px solid #1A1A2E;
        }

        .btn-secondary:hover {
            background-color: #1A1A2E;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-white {
            background-color: #fff;
            color: #C4652A;
        }

        .btn-white:hover {
            background-color: #FAFAF7;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-nav {
            padding: 10px 24px;
            font-size: 0.875rem;
        }

        /* ========================================
           ANIMATION CLASSES
           ======================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

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

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

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* ========================================
           NAVIGATION
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(250, 250, 247, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

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

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #1A1A2E;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
            background: transparent;
            mix-blend-mode: multiply;
        }
        .navbar.scrolled .nav-logo img {
            mix-blend-mode: multiply;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: #4A4A5A;
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #C4652A;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #C4652A;
        }

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

        .nav-cta {
            margin-left: 8px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 4px;
            z-index: 1001;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background-color: #1A1A2E;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(250, 250, 247, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

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

        .mobile-menu a {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1A1A2E;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #C4652A;
        }

        /* ========================================
           HERO
           ======================================== */
        .hero {
            padding-top: 72px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, #FAFAF7 0%, #F2F0EB 50%, #EDE8E0 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 101, 42, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(31, 56, 100, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image:
                radial-gradient(circle at 20% 50%, #C4652A 1px, transparent 1px),
                radial-gradient(circle at 80% 20%, #1F3864 1px, transparent 1px),
                radial-gradient(circle at 50% 80%, #C4652A 1px, transparent 1px);
            background-size: 80px 80px, 120px 120px, 100px 100px;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(196, 101, 42, 0.08);
            border: 1px solid rgba(196, 101, 42, 0.15);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #C4652A;
            margin-bottom: 28px;
            letter-spacing: 0.5px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #C4652A;
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(2.25rem, 5.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #1A1A2E;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            color: #C4652A;
        }

        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #4A4A5A;
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stat-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-top: 64px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1A1A2E;
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: #6B6B7B;
            font-weight: 500;
            margin-top: 2px;
        }

        /* ========================================
           TRUST BAR
           ======================================== */
        .trust-bar {
            background-color: #1F3864;
            padding: 20px 0;
        }

        .trust-bar .container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .trust-item .icon {
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
        }
        .trust-item .icon svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: rgba(255,255,255,0.85);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .trust-divider {
            width: 1px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* ========================================
           ABOUT / TEAM
           ======================================== */
        .about-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .about-intro p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4A4A5A;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .team-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .team-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 24px;
            border: 4px solid #F2F0EB;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .team-card h3 {
            font-size: 1.25rem;
            margin-bottom: 4px;
        }

        .team-card .role {
            font-size: 0.85rem;
            font-weight: 600;
            color: #C4652A;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .team-card p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #5A5A6A;
        }

        /* ========================================
           SERVICES
           ======================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: #fff;
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(196, 101, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 20px;
        }

        .service-card h3 {
            font-size: 1.05rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .service-card p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: #5A5A6A;
        }

        /* ========================================
           PRICING
           ======================================== */
        .pricing-card {
            max-width: 560px;
            margin: 0 auto;
            background: #fff;
            border-radius: 20px;
            padding: 48px 40px;
            text-align: center;
            box-shadow: 0 8px 50px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #C4652A, #D4783A, #C4652A);
        }

        .pricing-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(196, 101, 42, 0.08);
            color: #C4652A;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1A1A2E;
            line-height: 1;
            margin-bottom: 4px;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 500;
            color: #6B6B7B;
        }

        .pricing-period {
            font-size: 0.9rem;
            color: #6B6B7B;
            margin-bottom: 32px;
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 36px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.92rem;
            color: #4A4A5A;
            border-bottom: 1px solid #F2F0EB;
        }

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

        .pricing-features li .check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(196, 101, 42, 0.1);
            color: #C4652A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
            font-weight: 700;
        }

        .pricing-note {
            margin-top: 24px;
            padding: 16px 20px;
            background: #F9F8F5;
            border-radius: 10px;
            font-size: 0.8rem;
            line-height: 1.6;
            color: #6B6B7B;
        }

        .pricing-note strong {
            color: #4A4A5A;
        }

        /* ========================================
           TESTIMONIALS
           ======================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 16px;
            padding: 36px 28px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .testimonial-stars {
            color: #C4652A;
            font-size: 0.9rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-card blockquote {
            font-size: 0.92rem;
            line-height: 1.7;
            color: #4A4A5A;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #C4652A, #D4783A);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: #1A1A2E;
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: #6B6B7B;
        }

        /* ========================================
           RENOVATIONS
           ======================================== */
        .reno-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 800px;
            margin: 0 auto;
        }

        .reno-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 24px;
            text-align: center;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .reno-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .reno-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .reno-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .reno-card p {
            font-size: 0.85rem;
            color: #6B6B7B;
            line-height: 1.6;
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .cta-section {
            background: linear-gradient(135deg, #1F3864 0%, #2A4A7A 50%, #1F3864 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 101, 42, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

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

        .cta-text h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-text p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .cta-contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .cta-contact-item .icon {
            font-size: 1.1rem;
        }

        .cta-form {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .cta-form h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: #1A1A2E;
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #E5E3DE;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #1A1A2E;
            background-color: #FAFAF7;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #C4652A;
            box-shadow: 0 0 0 3px rgba(196, 101, 42, 0.1);
            background-color: #fff;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #A0A0A8;
        }

        .form-group input.invalid,
        .form-group textarea.invalid {
            border-color: #e74c3c;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            margin-top: 8px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .form-success .check-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(196, 101, 42, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.75rem;
        }

        .form-success h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .form-success p {
            font-size: 0.9rem;
            color: #6B6B7B;
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            background-color: #1A1A2E;
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 16px;
            max-width: 300px;
        }

        .footer-brand .nav-logo {
            color: #fff;
        }

        .footer h4 {
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

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

        .footer ul li a {
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: #C4652A;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: 0.8rem;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #C4652A;
            color: #fff;
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }

            .nav-links {
                display: none;
            }

            .nav-cta-desktop {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                padding: 40px 0;
            }

            .hero h1 {
                font-size: clamp(1.75rem, 7vw, 2.5rem);
            }

            .hero-stat-strip {
                gap: 24px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
            }

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

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

            .reno-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
            }

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

            .cta-form {
                padding: 28px 20px;
            }

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

            .trust-bar .container {
                gap: 8px;
            }

            .trust-item {
                font-size: 0.75rem;
            }

            .trust-divider {
                display: none;
            }

            .trust-item {
                padding: 4px 10px;
                background: rgba(255, 255, 255, 0.06);
                border-radius: 50px;
            }

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

            .footer-brand p {
                margin: 16px auto 0;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }

            .pricing-card {
                padding: 36px 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-stat-strip {
                flex-direction: column;
                gap: 16px;
            }
        }