﻿:root {
            --orange: #E04A0A;
            --orange-light: #FF5C1A;
            --orange-glow: rgba(224, 74, 10, 0.15);
            --black: #111111;
            --dark: #1A1A1A;
            --charcoal: #222222;
            --white: #FFFFFF;
            --off-white: #F5F0EB;
            --gray: #888888;
            --border: rgba(224, 74, 10, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Barlow', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }
body.intro-active {
            overflow: hidden;
        }

        .intro-loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: #fdfdfd;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease;
        }

        .intro-loader.dismiss {
            transform: translateY(-100%);
            opacity: 0;
        }

        /* Subtle grid pattern behind the logo */
        .intro-loader::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0, 0, 0, 0.02) 80px, rgba(0, 0, 0, 0.02) 81px),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(0, 0, 0, 0.02) 80px, rgba(0, 0, 0, 0.02) 81px);
            pointer-events: none;
        }

        /* Glowing ring around logo */
        .intro-logo-ring {
            position: relative;
            width: 180px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .intro-logo-ring::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--orange);
            border-right-color: var(--orange);
            animation: introRingSpin 1.2s linear infinite;
            opacity: 0;
            animation-delay: 0.4s;
            animation-fill-mode: forwards;
        }

        .intro-logo-ring::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224, 74, 10, 0.05) 0%, transparent 70%);
            animation: introGlowPulse 2s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .intro-logo-img {
            width: 120px;
            height: auto;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: scale(0.5);
            animation: introLogoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
            filter: drop-shadow(0 0 30px rgba(224, 74, 10, 0.3));
        }

        .intro-tagline {
            font-family: 'Barlow', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(10px);
            animation: introFadeUp 0.6s ease 0.9s forwards;
        }

        /* Progress bar */
        .intro-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(0, 0, 0, 0.03);
        }

        .intro-progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            box-shadow: 0 0 15px rgba(224, 74, 10, 0.5);
            animation: introProgressFill 2.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        /* Corner accents */
        .intro-corner {
            position: absolute;
            width: 40px;
            height: 40px;
            opacity: 0;
            animation: introFadeIn 0.4s ease forwards;
        }

        .intro-corner--tl {
            top: 30px;
            left: 30px;
            border-top: 2px solid var(--orange);
            border-left: 2px solid var(--orange);
            animation-delay: 0.6s;
        }

        .intro-corner--tr {
            top: 30px;
            right: 30px;
            border-top: 2px solid var(--orange);
            border-right: 2px solid var(--orange);
            animation-delay: 0.7s;
        }

        .intro-corner--bl {
            bottom: 30px;
            left: 30px;
            border-bottom: 2px solid var(--orange);
            border-left: 2px solid var(--orange);
            animation-delay: 0.8s;
        }

        .intro-corner--br {
            bottom: 30px;
            right: 30px;
            border-bottom: 2px solid var(--orange);
            border-right: 2px solid var(--orange);
            animation-delay: 0.9s;
        }

        @keyframes introLogoReveal {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes introRingSpin {
            0% {
                opacity: 0;
                transform: rotate(0deg);
            }

            10% {
                opacity: 1;
            }

            100% {
                opacity: 1;
                transform: rotate(360deg);
            }
        }

        @keyframes introGlowPulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }

        @keyframes introFadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes introFadeIn {
            to {
                opacity: 0.4;
            }
        }

        @keyframes introProgressFill {
            to {
                width: 100%;
            }
        }
nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 100px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 75px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-cta {
            background: var(--orange);
            color: var(--white) !important;
            padding: 0.5rem 1.2rem;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            transition: background 0.3s !important;
        }

        .nav-cta:hover {
            background: var(--orange-light) !important;
            color: var(--white) !important;
        }
#hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 150px 5% 80px;
            position: relative;
            overflow: hidden;
            background: #111;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%),
                url('../images/luxury_villa_hero.png');
            background-size: cover;
            background-position: center;
            animation: heroZoom 20s infinite alternate linear;
            z-index: 1;
        }

        @keyframes heroZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        .hero-diag {
            display: none;
        }

        .hero-diag::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(-45deg, transparent, transparent 20px,
                    rgba(224, 74, 10, 0.04) 20px, rgba(224, 74, 10, 0.04) 21px);
        }

        /* Buildings silhouette in hero */
        .hero-buildings {
            position: absolute;
            right: 5%;
            bottom: 0;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            opacity: 0.12;
        }

        .bldg {
            background: var(--orange);
            width: var(--w);
            height: var(--h);
            position: relative;
        }

        .bldg::before {
            content: '';
            position: absolute;
            top: 15%;
            left: 20%;
            right: 20%;
            height: 50%;
            background: rgba(255, 255, 255, 0.15);
            background: repeating-linear-gradient(0deg,
                    rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 8px,
                    transparent 8px, transparent 16px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange-glow);
            border: 1px solid var(--orange);
            padding: 6px 16px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--orange);
            clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
            margin-bottom: 2rem;
            animation: fadeUp 0.6s ease both;
        }

        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.5rem, 8vw, 7rem);
            line-height: 0.9;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            animation: fadeUp 0.6s 0.1s ease both;
        }

        .hero-title .accent {
            color: var(--orange);
        }

        .hero-title .stroke {
            -webkit-text-stroke: 2px var(--orange);
            color: transparent;
        }

        .hero-sub {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.65);
            max-width: 440px;
            margin-bottom: 2.5rem;
            animation: fadeUp 0.6s 0.2s ease both;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeUp 0.6s 0.3s ease both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--orange);
            color: var(--white);
            padding: 1rem 2rem;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s;
        }

        .btn-primary:hover::after {
            transform: translateX(0);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: var(--white);
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            transition: all 0.3s;
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .hero-stats {
            position: absolute;
            bottom: 60px;
            left: 5%;
            display: flex;
            gap: 3rem;
            z-index: 2;
            animation: fadeUp 0.6s 0.4s ease both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--orange);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
        }

        .hero-form-card {
            background: #ffffff;
            padding: 2.2rem;
            border-radius: 16px;
            width: 100%;
            max-width: 420px;
            z-index: 5;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            animation: fadeUp 0.6s 0.4s ease both;
            position: relative;
            overflow: hidden;
            min-height: 520px;
            display: flex;
            flex-direction: column;
        }

        /* Step Indicators */
        .form-steps-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .step-dot {
            width: 35px;
            height: 35px;
            border: 2px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #a0aec0;
            background: #fff;
            z-index: 2;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .step-dot.active {
            border-color: #111;
            color: #111;
            box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
        }

        .step-dot.completed {
            background: #111;
            border-color: #111;
            color: #fff;
        }

        .step-line {
            position: absolute;
            height: 2px;
            background: #e2e8f0;
            width: 60px;
            z-index: 1;
        }

        .step-line-fill {
            position: absolute;
            height: 100%;
            background: #111;
            width: 0%;
            transition: width 0.3s;
        }

        /* Form Content */
        .form-content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .form-step {
            display: none;
            animation: formFadeIn 0.4s ease forwards;
        }

        .form-step.active {
            display: block;
        }

        @keyframes formFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-form-card .form-title {
            color: #111;
            font-size: 1.4rem;
            text-align: center;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .hero-form-card .form-subtitle {
            color: #666;
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-form-group {
            margin-bottom: 1.2rem;
            position: relative;
        }

        .hero-form-control, .hero-form-select {
            width: 100%;
            padding: 14px 18px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            color: #1a1a1a;
            transition: all 0.3s;
        }

        .hero-form-control:focus, .hero-form-select:focus {
            outline: none;
            border-color: #111;
            box-shadow: 0 0 0 4px rgba(0,0,0,0.03);
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .phone-prefix-box {
            width: 80px;
            flex-shrink: 0;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.95rem;
            color: #1a1a1a;
        }

        /* Button Styling */
        .form-nav-btns {
            display: flex;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1rem;
        }

        .btn-step-next, .btn-step-submit {
            flex: 1;
            background: #111;
            color: #fff;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-step-back {
            flex: 1;
            background: #fff;
            color: #111;
            border: 2px solid #111;
            padding: 14px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-step-next:hover, .btn-step-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Success screen */
        .form-success-state {
            display: none;
            text-align: center;
            padding: 2rem 1rem;
            animation: formFadeIn 0.5s ease both;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .success-icon-circle {
            width: 80px;
            height: 80px;
            background: #0d9488;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
        }

        .success-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 1rem;
        }

        .success-text {
            color: #666;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* Custom Dropdown grouping */
        optgroup {
            font-weight: 700;
            color: #111;
            padding: 10px 0;
            background: #f8f9fa;
        }

        option {
            padding: 10px;
            font-weight: 400;
        }
section {
            padding: 100px 5%;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1rem;
        }

        .section-tag::before {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--orange);
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title .accent {
            color: var(--orange);
        }

        .muted-title {
            color: rgba(255, 255, 255, 0.4);
        }

        .section-tag--center {
            justify-content: center;
        }

        .hero-badge-icon {
            display: inline-block;
            vertical-align: middle;
        }

        .hero-title--home {
            font-size: clamp(2.2rem, 5vw, 4.5rem);
        }

        .locations-section {
            background: var(--dark);
            border-top: 1px solid var(--border);
        }

        .locations-copy {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1.1rem;
            max-width: 800px;
            line-height: 1.8;
        }

        .locations-copy strong {
            color: var(--white);
        }

        .footer-map {
            margin-top: 3rem;
            padding: 2rem 5% 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
        }

        .footer-map iframe {
            border: 0;
            border-radius: 8px;
        }
#why {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        #why::before {
            content: 'WHY PCC';
            position: absolute;
            right: -2%;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18vw;
            color: rgba(255, 255, 255, 0.02);
            white-space: nowrap;
            pointer-events: none;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            margin-top: 4rem;
            border: 1px solid var(--border);
        }

        .why-card {
            background: var(--dark);
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--orange);
            transition: height 0.4s ease;
        }

        .why-card:hover {
            background: rgba(224, 74, 10, 0.06);
        }

        .why-card:hover::before {
            height: 100%;
        }

        .why-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 1rem;
            display: block;
            color: var(--orange);
        }

        .why-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }

        .why-card p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }
#packages {
            background: var(--black);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 4rem;
            position: relative;
        }

        .pkg-card {
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, border-color 0.3s;
            cursor: default;
        }

        .pkg-card:hover {
            transform: translateY(-8px);
            border-color: var(--orange);
        }

        .pkg-card.featured {
            background: var(--orange);
            border-color: var(--orange);
            z-index: 2;
            transform: translateY(-16px) scale(1.02);
        }

        .pkg-card.featured:hover {
            transform: translateY(-20px) scale(1.02);
        }

        .pkg-card.featured * {
            color: var(--white) !important;
        }

        .pkg-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            padding: 4px 10px;
            margin-bottom: 1.5rem;
        }

        .pkg-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 2px;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .pkg-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--orange);
            line-height: 1;
        }

        .pkg-card.featured .pkg-price {
            color: var(--white);
        }

        .pkg-unit {
            font-size: 0.75rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .pkg-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pkg-features li {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.65);
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pkg-features li::before {
            content: '>';
            color: var(--orange);
            font-size: 0.7rem;
        }

        .pkg-card.featured .pkg-features li {
            color: rgba(255, 255, 255, 0.85);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .pkg-card.featured .pkg-features li::before {
            color: var(--white);
        }

        .pkg-btn {
            display: block;
            text-align: center;
            padding: 0.8rem;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            transition: all 0.3s;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        }

        .pkg-card.featured .pkg-btn {
            background: var(--white);
            color: var(--orange) !important;
            border-color: var(--white);
        }

        .pkg-btn:hover {
            border-color: var(--orange);
            background: var(--orange);
        }
#services {
            background: var(--charcoal);
            position: relative;
        }

        .services-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }

        .services-left .section-title {
            margin-bottom: 1.5rem;
        }

        .services-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .svc-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            cursor: default;
            transition: padding-left 0.3s;
        }

        .svc-item:hover {
            padding-left: 10px;
        }

        .svc-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: rgba(224, 74, 10, 0.2);
            min-width: 50px;
            line-height: 1;
            transition: color 0.3s;
        }

        .svc-item:hover .svc-num {
            color: var(--orange);
        }

        .svc-info h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .svc-info p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .services-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
        }

        .svc-box {
            background: var(--dark);
            padding: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .svc-box:hover {
            background: rgba(224, 74, 10, 0.08);
        }

        .svc-box-img {
            margin-bottom: 1.2rem;
            aspect-ratio: 4/3;
            width: 100%;
            border-radius: 6px;
            overflow: hidden;
        }

        .svc-box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
            transition: transform 0.5s;
        }

        .svc-box:hover .svc-box-img img {
            transform: scale(1.05);
        }

        .svc-box h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--orange);
        }
/* PROJECTS */
        #projects {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        #projects::before {
            content: 'PROJECTS';
            position: absolute;
            right: -2%;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18vw;
            color: rgba(255, 255, 255, 0.025);
            white-space: nowrap;
            pointer-events: none;
        }

        .projects-intro {
            color: rgba(255, 255, 255, 0.62);
            font-size: 1rem;
            line-height: 1.8;
            max-width: 760px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background: var(--dark);
            min-height: 420px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            isolation: isolate;
            color: var(--white);
            text-decoration: none;
        }

        .project-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            z-index: -2;
        }

        .project-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0.35) 45%, rgba(17, 17, 17, 0.9) 100%);
            z-index: -1;
        }

        .project-card:hover img {
            transform: scale(1.05);
        }

        .project-info {
            padding: 2rem;
            width: 100%;
        }

        .project-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange);
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 12px;
            margin-bottom: 1rem;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        }

        .project-info h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .project-info p {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        #process {
            background: var(--black);
        }

        .process-track {
            display: flex;
            gap: 0;
            margin-top: 4rem;
            position: relative;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--orange) 0px, var(--orange) 20px, transparent 20px, transparent 30px);
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 0 1rem;
            position: relative;
        }

        .step-circle {
            width: 100px;
            height: 100px;
            border: 2px solid var(--border);
            background: var(--dark);
            border-radius: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
            clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
            transition: all 0.3s;
        }

        .step:hover .step-circle {
            background: var(--orange);
            border-color: var(--orange);
            transform: scale(1.08);
        }

        .step-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--orange);
            line-height: 1;
        }

        .step:hover .step-num {
            color: var(--white);
        }

        .step-icon {
            width: 20px;
            height: 20px;
            display: block;
            color: var(--orange);
        }

        .step:hover .step-icon {
            color: var(--white);
        }

        .step h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .step p {
            font-size: 0.75rem;
            color: var(--gray);
            line-height: 1.5;
        }
#achievements {
            background: var(--orange);
        }

        #achievements .section-tag {
            color: rgba(255, 255, 255, 0.7);
        }

        #achievements .section-tag::before {
            background: rgba(255, 255, 255, 0.5);
        }

        #achievements .section-title {
            color: var(--white);
        }

        .ach-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.15);
            margin-top: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .ach-card {
            background: var(--orange);
            padding: 3rem 2rem;
            text-align: center;
            transition: background 0.3s;
        }

        .ach-card:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .ach-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--white);
            line-height: 1;
        }

        .ach-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 0.5rem;
        }
#cta {
            background: var(--dark);
            text-align: center;
            padding: 120px 5%;
            position: relative;
            overflow: hidden;
        }

        #cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(224, 74, 10, 0.1) 0%, transparent 70%);
        }

        #cta .section-title {
            font-size: clamp(3rem, 7vw, 6rem);
            margin-bottom: 1rem;
        }

        #cta p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.55);
            max-width: 500px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .cta-phone {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            color: var(--orange);
            letter-spacing: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 2rem;
            text-decoration: none;
        }

        .cta-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
footer {
            background: #0D0D0D;
            border-top: 1px solid var(--border);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 3rem;
            padding: 70px 5% 50px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .footer-brand .footer-logo img {
            height: 55px;
            width: auto;
            object-fit: contain;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.95);
            padding: 5px;
        }

        .footer-brand p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            max-width: 260px;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.6rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.95rem;
            color: var(--gray);
            transition: all 0.3s;
            clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
        }

        .footer-social a:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1.4rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: var(--orange);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-col ul li a {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--orange);
            padding-left: 6px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .footer-contact-icon {
            width: 18px;
            height: 18px;
            color: var(--orange);
            min-width: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-contact-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact-text a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 20px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-bottom p {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--orange);
        }

        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 50px 5% 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
@keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
@media (max-width: 1024px) {
            .nav-links {
                gap: 1.2rem;
            }

            .nav-links a {
                font-size: 0.72rem;
                letter-spacing: 1.5px;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pkg-card.featured {
                transform: none;
            }

            .ach-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .process-track {
                flex-wrap: wrap;
            }

            .process-track::before {
                display: none;
            }

            .step {
                flex: 0 0 calc(33.33% - 1rem);
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-diag {
                display: none;
            }

            .hero-stats {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 3rem;
                justify-content: center;
            }

            .services-layout {
                grid-template-columns: 1fr;
            }

            .services-right {
                display: grid;
                margin-top: 2rem;
            }

            .why-grid,
            .packages-grid,
            .projects-grid,
            .ach-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex: 0 0 calc(50% - 1rem);
            }
        }

