 * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #0a1f3d;
            --secondary: #c0392b;
            --accent: #e74c3c;
            --blue: #1a5276;
            --light-blue: #2980b9;
            --gold: #f39c12;
            --white: #ffffff;
            --light: #f4f6f9;
            --gray: #6b7280;
            --dark: #0d1117;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* ===== LOADER ===== */
        #loader {
            position: fixed;
            inset: 0;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        #loader.hidden { opacity: 0; visibility: hidden; }

        .loader-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        .loader-logo span { color: #C82C33; }

        .loader-bar {
            width: 200px;
            height: 3px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            overflow: hidden;
        }

        .loader-fill {
            height: 100%;
            background: #C82C33;
            border-radius: 3px;
            animation: load 1.8s ease-in-out forwards;
        }

        @keyframes load {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        

        /* ===== PAGES ===== */
        .page { display: none; }
        .page.active { display: block; }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(10,31,61,0.92) 0%, rgba(26,82,118,0.85) 50%, rgba(192,57,43,0.4) 100%),
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&q=80') center/cover no-repeat;
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            animation: drift linear infinite;
        }

        @keyframes drift {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 120px 8% 80px;
            max-width: 750px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(231,76,60,0.2);
            border: 1px solid rgba(231,76,60,0.5);
            color: #ff8a80;
            padding: 7px 18px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 28px;
            text-transform: uppercase;
            animation: fadeInUp 0.8s ease both;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 22px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero h1 span { color: #C82C33; }

        .hero p {
            color: rgba(255,255,255,0.78);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 580px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .btn-red {
            background: #C82C33;
            color: white;
            padding: 15px 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.3px;
        }

        .btn-red:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(231,76,60,0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 15px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 2px solid rgba(255,255,255,0.45);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10,31,61,0.9);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            gap: 0;
            z-index: 2;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .hero-stat {
            padding: 22px 45px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.1);
            flex: 1;
            max-width: 220px;
        }

        .hero-stat:last-child { border-right: none; }

        .hero-stat .num {
            font-size: 2rem;
            font-weight: 900;
            color: #C82C33;
            display: block;
        }

        .hero-stat .lbl {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== SECTIONS ===== */
        .section { padding: 90px 8%; }
        .section-alt { background: var(--light); }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .tag {
            display: inline-block;
            background: rgba(192,57,43,0.1);
            color: #C82C33;
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .divider {
            width: 55px;
            height: 3px;
            background: #C82C33;
            margin: 14px auto;
            border-radius: 2px;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1rem;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== ABOUT STRIP ===== */
        .about-strip {
            background: var(--primary);
            padding: 25px 8%;
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .strip-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
        }

        .strip-icon {
            width: 40px;
            height: 40px;
            background: #C82C33;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .strip-item p { font-size: 0.88rem; opacity: 0.85; }
        .strip-item strong { display: block; font-size: 0.92rem; }

        /* ===== ABOUT ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-main-img {
            width: 100%;
            height: 480px;
            background: linear-gradient(135deg, var(--primary), var(--blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9rem;
            overflow: hidden;
            position: relative;
        }

        .about-main-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,31,61,0.7) 0%, transparent 60%);
        }

        .about-badge-circle {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 130px;
            height: 130px;
            background: #C82C33;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            box-shadow: 0 10px 35px rgba(231,76,60,0.4);
            z-index: 2;
            text-align: center;
        }

        .about-badge-circle .yr { font-size: 2.5rem; line-height: 1; }
        .about-badge-circle .yr-txt { font-size: 0.7rem; opacity: 0.9; }

        .about-content h2 {
            font-size: 2rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 8px;
        }

        .about-content .company-name {
            color: #C82C33;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .about-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.97rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 28px;
        }

        .about-feat {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--light);
            padding: 14px 16px;
            border-radius: 10px;
            border-left: 3px solid #C82C33;
        }

        .about-feat span:first-child { font-size: 1.3rem; }
        .about-feat strong { font-size: 0.88rem; color: var(--primary); }

        /* ===== SERVICES ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 25px rgba(0,0,0,0.07);
            transition: all 0.35s;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .service-card-top {
            background: linear-gradient(135deg, var(--primary), var(--blue));
            padding: 35px 28px;
            position: relative;
            overflow: hidden;
        }

        .service-card-top::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .service-card-top .s-icon {
            font-size: 2.8rem;
            margin-bottom: 14px;
            display: block;
        }

        .service-card-top h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .service-card-top p {
            color: rgba(255,255,255,0.7);
            font-size: 0.82rem;
            margin-top: 5px;
        }

        .service-card-body {
            padding: 25px 28px;
        }

        .service-card-body ul {
            list-style: none;
        }

        .service-card-body ul li {
            padding: 9px 0;
            border-bottom: 1px solid #f0f0f0;
            color: var(--gray);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .service-card-body ul li:last-child { border-bottom: none; }

        .service-card-body ul li::before {
            content: '✓';
            color: #C82C33;
            font-weight: 800;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #C82C33;
            font-weight: 700;
            font-size: 0.88rem;
            margin-top: 18px;
            cursor: pointer;
            transition: gap 0.2s;
            border: none;
            background: none;
            padding: 0;
        }

        .service-link:hover { gap: 10px; }

        /* ===== STATS ===== */
        .stats-section {
            background: linear-gradient(135deg, var(--primary), var(--blue));
            padding: 80px 8%;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '🌍';
            position: absolute;
            font-size: 20rem;
            opacity: 0.04;
            right: -5%;
            top: -30%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            color: white;
            padding: 35px 20px;
            background: rgba(255,255,255,0.07);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s;
        }

        .stat-item:hover { transform: translateY(-5px); }

        .stat-emoji { font-size: 2.5rem; margin-bottom: 15px; display: block; }
        .stat-num { font-size: 3rem; font-weight: 900; color: #C82C33; display: block; line-height: 1; }
        .stat-label { font-size: 0.82rem; opacity: 0.75; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

        /* ===== WHY US ===== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .why-card {
            background: white;
            border-radius: 16px;
            padding: 35px 28px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #C82C33;
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .why-card:hover::before { transform: scaleX(1); }

        .why-icon {
            width: 60px;
            height: 60px;
            background: rgba(192,57,43,0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .why-card p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ===== PRICING ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .pricing-card:hover { transform: translateY(-5px); }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary), var(--blue));
            border-color: #C82C33;
            transform: scale(1.04);
        }

        .pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }

        .featured-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #C82C33;
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .pricing-name {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .pricing-card:not(.featured) .pricing-name { color: var(--gray); }
        .pricing-card.featured .pricing-name { color: rgba(255,255,255,0.7); }

        .pricing-price {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .pricing-card:not(.featured) .pricing-price { color: var(--primary); }
        .pricing-card.featured .pricing-price { color: #C82C33; }

        .pricing-period {
            font-size: 0.82rem;
            margin-bottom: 28px;
        }

        .pricing-card:not(.featured) .pricing-period { color: var(--gray); }
        .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 9px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
        .pricing-card:not(.featured) .pricing-features li { color: var(--gray); }

        .pricing-features li::before {
            content: '✓';
            font-weight: 800;
            color: #C82C33;
            flex-shrink: 0;
        }

        /* ===== TESTIMONIALS ===== */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .testi-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            position: relative;
        }

        .testi-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            right: 22px;
            font-size: 5rem;
            color: #C82C33;
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; }

        .testi-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.92rem;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .testi-author h5 { font-size: 0.95rem; color: var(--primary); font-weight: 700; }
        .testi-author p { font-size: 0.78rem; color: var(--gray); margin: 0; font-style: normal; }

        /* ===== TEAM ===== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 25px;
        }

        .team-card {
            background: white;
            border-radius: 16px;
            padding: 35px 22px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            transition: transform 0.3s;
        }

        .team-card:hover { transform: translateY(-5px); }

        .team-avatar {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--blue));
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            border: 3px solid #C82C33;
        }

        .team-card h4 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 5px; }
        .team-card .role { color: #C82C33; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
        .team-card p { color: var(--gray); font-size: 0.83rem; line-height: 1.6; }

        /* ===== FAQ ===== */
        .faq-list { max-width: 800px; margin: 0 auto; }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
            overflow: hidden;
        }

        .faq-q {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.97rem;
            transition: background 0.2s;
        }

        .faq-q:hover { background: var(--light); }
        .faq-q.open { background: var(--primary); color: white; }

        .faq-icon {
            width: 28px;
            height: 28px;
            background: rgba(231,76,60,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
            transition: transform 0.3s;
            color: #C82C33;
        }

        .faq-q.open .faq-icon { transform: rotate(45deg); background: rgba(255,255,255,0.2); color: white; }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            padding: 0 25px;
            color: var(--gray);
            font-size: 0.92rem;
            line-height: 1.75;
        }

        .faq-a.open { max-height: 300px; padding: 18px 25px; }

        /* ===== CONTACT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-box h3 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 28px;
        }

        .c-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .c-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .c-item h4 { font-size: 0.78rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
        .c-item p { color: var(--primary); font-weight: 600; font-size: 0.95rem; line-height: 1.5; }

        .social-row {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .social-btn {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-btn:hover { background: #C82C33; transform: translateY(-2px); }

        .contact-form-box {
            background: white;
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .contact-form-box h3 {
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 28px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .form-group { margin-bottom: 20px; }

        .form-group label {
            display: block;
            font-size: 0.83rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 7px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 0.93rem;
            font-family: inherit;
            transition: border-color 0.3s;
            outline: none;
            color: #333;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #C82C33;
            background: white;
        }

        .form-group textarea { height: 120px; resize: vertical; }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #C82C33, #c0392b);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(231,76,60,0.35);
        }

        .success-msg {
            display: none;
            background: #d1fae5;
            border: 1px solid #6ee7b7;
            color: #065f46;
            padding: 14px 18px;
            border-radius: 10px;
            margin-top: 14px;
            font-weight: 600;
            text-align: center;
            font-size: 0.92rem;
        }

        /* ===== PAGE HEADERS ===== */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
            padding: 130px 8% 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1494412519316-ed3f82b4f8a4?w=1400&q=80') center/cover;
            opacity: 0.08;
        }

        .page-header h1 {
            position: relative;
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .page-header p {
            position: relative;
            color: rgba(255,255,255,0.75);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto;
        }

        .breadcrumb {
            position: relative;
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 18px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.55);
        }

        .breadcrumb span { color: #C82C33; }

        /* ===== SERVICES PAGE ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-circle {
            width: 70px;
            height: 70px;
            background: #C82C33;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 18px;
        }

        .process-step h4 { font-size: 0.97rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
        .process-step p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

        /* ===== MAP ===== */
        .map-box {
            background: linear-gradient(135deg, var(--primary), var(--blue));
            border-radius: 16px;
            height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: white;
        }

        .map-box .map-icon { font-size: 3.5rem; }
        .map-box h4 { font-size: 1.2rem; font-weight: 700; }
        .map-box p { opacity: 0.7; font-size: 0.9rem; }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 8% 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.5);
            font-size: 0.88rem;
            line-height: 1.7;
            margin: 16px 0 24px;
        }

        .footer-col h4 {
            font-size: 0.92rem;
            font-weight: 700;
            color: #C82C33;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-col ul { list-style: none; }

        .footer-col ul li {
            margin-bottom: 11px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-col ul li a:hover { color: white; }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-top: 5px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 11px 14px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            background: rgba(255,255,255,0.07);
            color: white;
            font-size: 0.85rem;
            outline: none;
        }

        .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

        .newsletter-form button {
            background: #C82C33;
            color: white;
            border: none;
            padding: 11px 18px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.82rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .newsletter-form button:hover { background: #c0392b; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

        /* ===== SCROLL TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 48px;
            height: 48px;
            background: #C82C33;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(231,76,60,0.4);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
        }

        .scroll-top.visible { opacity: 1; pointer-events: all; }
        .scroll-top:hover { transform: translateY(-3px); }

        /* ===== CTA BAND ===== */
        .cta-band {
            background: linear-gradient(135deg, #C82C33, #922b21);
            padding: 70px 8%;
            text-align: center;
        }

        .cta-band h2 { color: white; font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
        .cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; }

        .btn-white {
            background: white;
            color: #C82C33;
            padding: 15px 35px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            margin: 5px;
        }

        .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

        .btn-white-outline {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            border: 2px solid rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s;
            margin: 5px;
        }

        .btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .hero-stats { position: relative; flex-wrap: wrap; }
            .hero-stat { flex: 1; min-width: 120px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .form-row { grid-template-columns: 1fr; }
        }

        @media (max-width: 640px) {
            .nav-links { display: none; position: fixed; top: 65px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 20px; gap: 5px; }
            .nav-links.open { display: flex; }
            .hamburger { display: flex; }
            .section { padding: 60px 5%; }
            .footer-grid { grid-template-columns: 1fr; }
            .contact-form-box { padding: 25px; }
            .hero-stats { flex-direction: column; }
            .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
        }