/* ============================================================
           CORE & RESET
        ============================================================ */:root {
            --ink: #0d0f13;
            --paper: #ffffff;
            --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
            --font-nav: 'Inter', system-ui, sans-serif;
            --nav-height: 80px;
        }/* ============================================================
           1:1 REPLICA LAYOUT
        ============================================================ */main {
            margin-top: var(--nav-height);
        }.replica-hero {
            position: relative;
            width: 100%;
            height: 55vh;
            min-height: 400px;
            background-color: #2a2a2a;
            background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Steep tilt */
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
        }.replica-hero-title {
            color: #ffffff;
            font-family: var(--font-nav);
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }.replica-split-section {
            display: flex;
            width: 100%;
            min-height: 500px;
            /* Match steep tilt */
            clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
            /* Pulled up tightly to leave only a thin, precise 1.5vw parallel gap */
            margin-top: -6.5vw;
        }.replica-split-left {
            flex: 1;
            background-color: #464849; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 10vw;
            padding-right: 60px;
            color: #ffffff;
        }.replica-welcome-title {
            font-family: var(--font-body);
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 400;
            margin: 0 0 40px 0;
            color: #ffffff;
        }.replica-company-name {
            font-family: var(--font-nav);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 0 12px 0;
            letter-spacing: 0.5px;
        }.replica-address-text {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 400;
            line-height: 1.8;
            color: #e0e0e0;
            margin: 0;
        }.replica-split-right {
            flex: 1;
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-color: #e0e0e0;
        }/* ============================================================
           QUICK LINKS SECTION
        ============================================================ */.replica-quick-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 80px 10vw;
            background: #ffffff;
        }.replica-quick-card {
            flex: 1;
            background-color: #f8f8f8;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }.replica-quick-title {
            font-family: var(--font-body);
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 15px 0;
            color: #222222;
        }.replica-quick-text {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: #666666;
            line-height: 1.6;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }.replica-quick-link {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: #ff6b35;
            text-decoration: none;
        }/* ============================================================
           LOCATIONS SECTION
        ============================================================ */.replica-locations {
            background-color: #5c5e5f;
            padding: 80px 10vw 100px 10vw;
            color: #ffffff;
        }.replica-loc-header-container {
            text-align: center;
            margin-bottom: 60px;
        }.replica-loc-overline {
            font-family: var(--font-nav);
            font-size: 0.75rem;
            font-weight: 700;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 10px 0;
            display: block;
        }.replica-loc-maintitle {
            font-family: var(--font-nav);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin: 0 0 15px 0;
            letter-spacing: 0.5px;
        }.replica-loc-desc {
            font-family: var(--font-body);
            font-size: 0.85rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
            color: #e0e0e0;
        }.replica-locations-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
        }.replica-loc-card {
            flex: 1;
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }.replica-loc-card.dark { background-color: #1a1a1a; }.replica-loc-card.light { background-color: #464849; }.replica-loc-card-title {
            font-family: var(--font-nav);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 0 20px 0;
            letter-spacing: 0.5px;
        }.replica-loc-card-text {
            font-family: var(--font-body);
            font-size: 0.8rem;
            line-height: 1.6;
            color: #d1d1d1;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }.replica-loc-btn {
            background-color: #ff6b35;
            color: #ffffff;
            font-family: var(--font-nav);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 10px 24px;
            text-decoration: none;
            display: inline-block;
        }/* ============================================================
           MAP SECTION
        ============================================================ */.replica-map-section {
            position: relative;
            width: 100%;
            height: 450px; 
            background-color: #e5e3df; 
        }.replica-map-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }.replica-map-button {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #ffffff;
            color: #000000;
            font-family: var(--font-nav);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            border-radius: 2px;
            z-index: 10; 
        }.replica-map-button-icon {
            width: 18px;
            height: 18px;
            fill: #1a73e8; 
        }/* ============================================================
           FORM SECTION
        ============================================================ */.replica-form-section {
            background-color: #4b4b4d;
            padding: 100px 10vw;
            color: #ffffff;
        }.replica-form-heading {
            font-family: var(--font-nav);
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            margin: 0 0 60px 0;
            letter-spacing: 0.5px;
        }.replica-form {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 50px; 
        }.form-row {
            display: flex;
            gap: 40px;
            width: 100%;
        }.form-col-group {
            flex: 1;
            display: flex;
            gap: 40px;
        }.form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }.form-group label {
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: #a0a0a0;
            margin-bottom: 5px;
        }.form-group input, 
        .form-group select {
            background: transparent;
            border: none;
            border-bottom: 1px solid #ffffff;
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 1rem;
            padding: 8px 0;
            outline: none;
            width: 100%;
            border-radius: 0;
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
        }.select-wrapper::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 15px;
            width: 10px;
            height: 10px;
            border-bottom: 1px solid #888;
            border-right: 1px solid #888;
            transform: rotate(45deg);
            pointer-events: none;
        }.form-group select option {
            background-color: #4b4b4d;
            color: #ffffff;
        }.replica-checkbox-container {
            display: flex;
            align-items: flex-start;
            position: relative;
            cursor: pointer;
            user-select: none;
            gap: 15px;
            margin-top: 20px;
        }.replica-checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }.replica-checkmark {
            height: 18px;
            width: 18px;
            background-color: #ffffff;
            border-radius: 2px;
            flex-shrink: 0;
            position: relative;
            margin-top: 2px;
        }.replica-checkbox-container input:checked ~ .replica-checkmark:after {
            content: "";
            position: absolute;
            display: block;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }.replica-checkbox-text {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: #ffffff;
            line-height: 1.5;
        }.replica-checkbox-subtext {
            display: block;
            font-size: 0.8rem;
            color: #888888;
            margin-top: 2px;
        }.replica-checkbox-subtext a {
            color: #ff6b35; 
            text-decoration: none;
        }.replica-submit-btn {
            background-color: #ff6b35;
            color: #ffffff;
            font-family: var(--font-nav);
            font-size: 0.9rem;
            font-weight: 700;
            padding: 14px 40px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            align-self: flex-start;
            margin-top: 20px;
        }/* ============================================================
           NEW: NEWSLETTER SECTION (1:1 Replica)
        ============================================================ */.replica-newsletter-section {
            background-color: #ffffff;
            padding: 100px 20px 80px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }.replica-newsletter-subheading {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: #888888;
            margin: 0 0 30px 0;
            font-weight: 500;
        }.replica-newsletter-input-wrapper {
            position: relative;
            flex: 1;
        }.replica-newsletter-input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            stroke: #aaaaaa;
            fill: none;
            stroke-width: 2;
        }.replica-newsletter-input {
            width: 100%;
            padding: 12px 15px 12px 42px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: #333333;
            outline: none;
        }.replica-newsletter-input::placeholder {
            color: #aaaaaa;
        }.replica-newsletter-btn {
            background-color: #e87b58; /* Matching the pastel orange from the image */
            color: #ffffff;
            border: none;
            border-radius: 6px;
            padding: 0 25px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
        }/* ============================================================
           RESPONSIVE
        ============================================================ */@media (max-width: 900px) {
.replica-split-section { flex-direction: column; clip-path: none; margin-top: 0; }.replica-hero { clip-path: none; height: 40vh; }.replica-split-left { padding: 60px 30px; }.replica-split-right { min-height: 400px; }.replica-quick-links, .replica-locations-grid { flex-direction: column; }.replica-quick-links, .replica-locations { padding: 60px 30px; }.replica-map-section { height: 350px; }.replica-form-section { padding: 60px 30px; }.form-row, .form-col-group { flex-direction: column; gap: 40px; }.form-group { width: 100%; }
}