@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-navy: #1B2A4A;
    --brand-blue: #1A7AE6;
    --light-blue: #3B9AE6;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-text: #333333;
    --medium-gray: #666666;
    --border-gray: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 46px;
    width: auto;
}

.nav-logo img[src*="white"] {
    filter: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu > li > a:hover {
    color: var(--brand-blue);
}

.nav-menu > li > a .fa-chevron-down {
    font-size: 0.6rem;
    transition: var(--transition);
}

.nav-menu > li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem;
    color: var(--dark-text);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown a:hover {
    background: var(--light-gray);
    color: var(--brand-blue);
}

.nav-cta {
    margin-left: 12px;
    flex-shrink: 0;
}

.nav-cta .btn-primary {
    background: var(--brand-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta .btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 122, 230, 0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Nav */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 122, 230, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.btn-outline-dark:hover {
    background: var(--brand-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ========== HERO SECTIONS ========== */
.hero {
    position: relative;
    height: calc(100vh - 72px);
    margin-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 80px;
    z-index: 3;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    display: block;
}

.slider-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.slider-dot:hover {
    border-color: var(--white);
}

/* Page Hero (smaller) */
.page-hero {
    height: auto;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
}

.page-hero .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 800px;
    padding: 0 24px;
}

.page-hero .hero-content h1 {
    font-size: 2.8rem;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--brand-blue);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.section-alt {
    background: var(--light-gray);
}

/* ========== TRUSTED PARTNERS TICKER ========== */
.partners-track {
    animation: partners-scroll 25s linear infinite;
}

.partners-ticker:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SCOPE / SERVICES (mobile) ========== */
@media (max-width: 768px) {
    .scope-section { padding: 40px 4%; }
    .scope-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .scope-header-right { font-size: 24px; }
    .scope-item { flex-direction: column; gap: 8px; padding: 24px 12px; }
    .scope-name { min-width: auto; font-size: 18px; }
    .scope-desc { margin-left: 0; font-size: 14px; }
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--primary-navy);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue);
}

.service-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 122, 230, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .card-icon i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .card-link {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 42, 74, 0.9) 0%, rgba(27, 42, 74, 0.2) 60%);
}

.product-card .card-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    color: var(--white);
}

.product-card .card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card .card-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-card .card-content a {
    color: var(--brand-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-card .card-content a:hover {
    color: var(--light-blue);
    gap: 12px;
}

/* ========== COLOR SWATCHES ========== */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.color-swatch {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.color-swatch:hover {
    transform: translateY(-4px);
}

.color-swatch .swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
    transition: var(--transition);
}

.color-swatch:hover .swatch {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.color-swatch .color-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--medium-gray);
}

/* ========== WHY CHOOSE US ========== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-us-benefits {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(26, 122, 230, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item .benefit-icon i {
    font-size: 1.2rem;
    color: var(--brand-blue);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== SERVICE AREA ========== */
.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.state-list h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    margin-top: 20px;
}

.state-list h3:first-child {
    margin-top: 0;
}

.state-list p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding-left: 16px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--brand-blue);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card .author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.testimonial-card .author-info p {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--primary-navy);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .footer-logo {
    height: 44px;
    margin-bottom: 20px;
    mix-blend-mode: lighten;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-blue);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--brand-blue);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--brand-blue);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 122, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .feature-icon i {
    font-size: 1.6rem;
    color: var(--brand-blue);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== SPECS TABLE ========== */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specs-table th,
.specs-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.specs-table th {
    background: var(--primary-navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.specs-table tr:nth-child(even) {
    background: var(--light-gray);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-navy);
}

/* ========== PORTFOLIO ========== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-gray);
    border-radius: 30px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(26, 122, 230, 0.05);
}

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

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 74, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    padding: 0 20px;
}

.portfolio-overlay .tag {
    background: var(--brand-blue);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.portfolio-overlay .location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.portfolio-item .portfolio-info {
    padding: 20px;
    background: var(--white);
}

.portfolio-item .portfolio-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.portfolio-item .portfolio-info .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.portfolio-item .portfolio-info .meta .tag {
    background: rgba(26, 122, 230, 0.1);
    color: var(--brand-blue);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* ========== PROJECT DETAIL MODAL ========== */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 40px;
    overflow-y: auto;
}

.project-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    padding: 48px;
    position: relative;
    margin: 40px auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.modal-content .modal-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.modal-content .modal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 24px;
    margin-bottom: 8px;
}

.modal-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== PROCESS STEPS ========== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--border-gray);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.download-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
    text-align: center;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue);
}

.download-card .download-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 122, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.download-card .download-icon i {
    font-size: 1.6rem;
    color: var(--brand-blue);
}

.download-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.download-card p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-card .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ========== CONTACT / FORMS ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--primary-navy);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-list li i {
    color: var(--brand-blue);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-info-list li span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-info-list li a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-list li a:hover {
    color: var(--brand-blue);
}

.contact-map {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Styles */
.form-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(26, 122, 230, 0.1);
}

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

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

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-blue);
}

.checkbox-item label {
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    margin-top: 32px;
}

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

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--medium-gray);
}

/* Honeypot */
.ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

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

.application-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.application-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.application-card .app-content {
    padding: 24px;
}

.application-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.application-card p {
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== VALUES GRID ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 122, 230, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card .value-icon i {
    font-size: 2rem;
    color: var(--brand-blue);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.content-two-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========== HARDIE COLORS ========== */
.hardie-colors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hardie-swatch {
    text-align: center;
}

.hardie-swatch .swatch-rect {
    width: 100%;
    height: 60px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hardie-swatch .swatch-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--medium-gray);
}

/* ========== STYLES SECTION ========== */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.style-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.style-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.style-card .style-content {
    padding: 28px;
}

.style-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.style-card p {
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hover-glow:hover {
  box-shadow: 0 0 25px rgba(26, 122, 230, 0.6);
  transform: scale(1.03);
}

.service-area-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-area-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PREMIUM CLADDING MATERIALS SECTION ========== */
.products-section {
    background: linear-gradient(135deg, #f0f2f5 0%, #e8edf2 100%);
    padding: 80px 0;
}

/* Header */
.pcm-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.products-section.visible .pcm-header { opacity: 1; transform: translateY(0); }
.pcm-label {
    display: block;
    color: #1A7AE6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.pcm-line {
    display: block;
    width: 50px;
    height: 3px;
    background: #1A7AE6;
    margin: 0 auto 20px;
}
.pcm-title {
    color: #0a1628;
    font-size: 52px;
    font-weight: 900;
    margin: 0 0 15px;
    line-height: 1.1;
}
.pcm-subtitle {
    color: #666;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

/* Cards container */
.pcm-cards {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 50px auto 0;
    padding: 0 40px;
    position: relative;
}

/* Card */
.pcm-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 650px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    background: #fff;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.pcm-card-left { transform: translateX(-50px); }
.pcm-card-right { transform: translateX(50px); }
.products-section.visible .pcm-card {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
.pcm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transition-delay: 0s;
}

/* Card top zone */
.pcm-card-top {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    flex: 1 1 auto;
}
.pcm-icon {
    width: 45px;
    height: 45px;
    background: rgba(26, 122, 230, 0.1);
    color: #1A7AE6;
    border-radius: 12px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pcm-card-title {
    font-size: 30px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 25px;
}
.pcm-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pcm-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.pcm-checklist li i {
    color: #1A7AE6;
    font-size: 20px;
    flex-shrink: 0;
}
.pcm-checklist li span {
    font-size: 18px;
    color: #333;
}

/* Card bottom zone */
.pcm-card-bottom {
    position: relative;
    min-height: 285px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.pcm-bottom-acm { background-image: url('../images/hero6.jpg'); }
.pcm-bottom-fc { background-image: url('../images/hero7.png'); }
.pcm-card-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}
.pcm-bottom-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 25px;
}

/* Left card color name labels */
.pcm-color-names {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.pcm-color-names span {
    font-size: 11px;
    color: #fff;
    text-align: center;
    padding: 4px 2px;
}

/* Right card swatches */
.pcm-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.pcm-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.pcm-chip {
    width: 55px;
    height: 70px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pcm-chip:hover {
    transform: scale(1.15);
    border-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.pcm-chip-name {
    font-size: 11px;
    color: #fff;
    text-align: center;
}

/* Badge */
.pcm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 13px;
}

/* Center circle */
.pcm-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #1A7AE6;
    box-shadow: 0 10px 40px rgba(26, 122, 230, 0.2);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pcmPulse 2s ease-in-out infinite;
}
.products-section.visible .pcm-circle {
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.6s;
}
.pcm-circle i {
    color: #1A7AE6;
    font-size: 26px;
    margin-bottom: 5px;
}
.pcm-circle-num {
    font-size: 40px;
    font-weight: 900;
    color: #0a1628;
    line-height: 1;
}
.pcm-circle-label {
    font-size: 11px;
    color: #1A7AE6;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 4px;
}
.pcm-circle-sub {
    font-size: 9px;
    color: #999;
    letter-spacing: 1px;
}
@keyframes pcmPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 122, 230, 0.2), 0 10px 40px rgba(26, 122, 230, 0.2); }
    50% { box-shadow: 0 0 25px 8px rgba(26, 122, 230, 0.5), 0 10px 40px rgba(26, 122, 230, 0.2); }
}

/* Features bar */
.pcm-features {
    background: #0a1628;
    padding: 35px 40px;
    display: flex;
    justify-content: space-around;
    max-width: 1300px;
    margin: 50px auto 0;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.products-section.visible .pcm-features {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.pcm-feature {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.pcm-feature:hover {
    background: rgba(255, 255, 255, 0.08);
}
.pcm-feature i {
    font-size: 30px;
    color: #1A7AE6;
    margin-bottom: 10px;
}
.pcm-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
}
.pcm-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* CTA buttons */
.pcm-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.products-section.visible .pcm-cta {
    opacity: 1;
    transition-delay: 0.7s;
}
.pcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pcm-btn-primary {
    background: #1A7AE6;
    color: #fff;
}
.pcm-btn-primary:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 122, 230, 0.4);
}
.pcm-btn-outline {
    background: #fff;
    color: #0a1628;
    border: 2px solid #0a1628;
}
.pcm-btn-outline:hover {
    background: #0a1628;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .pcm-title { font-size: 38px; }
    .pcm-subtitle { font-size: 18px; }
    .pcm-cards {
        flex-direction: column;
        padding: 0 20px;
    }
    .pcm-card-left,
    .pcm-card-right { transform: translateY(40px); }
    .products-section.visible .pcm-card { transform: translateY(0); }
    .pcm-circle {
        position: relative;
        top: auto;
        left: auto;
        margin: -25px auto;
        transform: scale(0);
    }
    .products-section.visible .pcm-circle { transform: scale(1); }
    .pcm-features {
        flex-wrap: wrap;
        gap: 10px;
    }
    .pcm-feature { flex: 1 1 40%; }
    .pcm-cta { flex-direction: column; align-items: center; }
}

/* ========== SERVICE AREA SECTION (Mid-Atlantic) ========== */
.service-area-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.sa-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 700px;
    position: relative;
}

/* ===== MAP (LEFT) ===== */
.sa-map {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
    background-image: url('../images/hero8.jpg');
    background-size: cover;
    background-position: center;
}
.sa-map-grid {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Ellipse overlay */
.sa-ellipse {
    position: absolute;
    top: -5%;
    left: 2.5%;
    width: 95%;
    height: 110%;
    border: 2.5px solid rgba(26, 122, 230, 0.35);
    background: rgba(26, 122, 230, 0.04);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transform: rotate(-12deg) scale(0.8);
    transition: opacity 0.9s ease, transform 0.9s ease;
    pointer-events: none;
}
.service-area-section.visible .sa-ellipse {
    opacity: 1;
    transform: rotate(-12deg) scale(1);
    transition-delay: 0.2s;
}

/* Markers */
.sa-marker {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: var(--d, 0s);
    cursor: pointer;
    line-height: 1;
}
.service-area-section.visible .sa-marker {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.sa-marker i {
    color: #1A7AE6;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}
.sa-marker:hover {
    z-index: 5;
}
.sa-marker:hover i {
    animation: saPinPulse 0.9s ease-in-out infinite;
}
.service-area-section.visible .sa-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
}
.sa-pin-name {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1B2A4A;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Main / HQ markers */
.sa-pin {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1A7AE6;
    border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(26, 122, 230, 0.55);
    display: block;
}
.sa-pin-main { animation: saMainPulse 2s ease-in-out infinite; }
.sa-pin-badge {
    margin-top: 6px;
    background: #1A7AE6;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(26, 122, 230, 0.3);
    white-space: nowrap;
}
.sa-marker-main .sa-pin-name,
.sa-marker-hq .sa-pin-name {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
}

.sa-marker-mid i { font-size: 26px; }

@keyframes saPinPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes saMainPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 122, 230, 0.55), 0 4px 14px rgba(26, 122, 230, 0.55); }
    50% { box-shadow: 0 0 0 12px rgba(26, 122, 230, 0), 0 4px 14px rgba(26, 122, 230, 0.55); }
}

/* ===== CONTENT (RIGHT) ===== */
.sa-content {
    flex: 0 0 45%;
    padding: 80px 50px 60px 30px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.service-area-section.visible .sa-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}
.sa-deco {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.12;
    z-index: -1;
}

.sa-label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1A7AE6;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.sa-label-line {
    display: block;
    width: 50px;
    height: 4px;
    background: #1A7AE6;
    margin: 15px 0 25px;
}
.sa-title {
    font-size: 46px;
    font-weight: 900;
    color: #0a1628;
    line-height: 1.1;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sa-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sa-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sa-cta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-area-section.visible .sa-title { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.service-area-section.visible .sa-desc { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.service-area-section.visible .sa-cities { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.service-area-section.visible .sa-cta { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

.sa-city {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.sa-city-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}
.sa-city-icon i {
    color: #1A7AE6;
    font-size: 14px;
    transition: color 0.3s ease;
}
.sa-city:hover .sa-city-icon { background: #1A7AE6; }
.sa-city:hover .sa-city-icon i { color: #fff; }

/* Buttons */
.sa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.sa-btn-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.sa-btn-ico-navy {
    background: #1B2A4A;
    color: #fff;
}
.sa-btn-arrow {
    margin-left: 4px;
    transition: transform 0.3s ease;
}
.sa-btn:hover .sa-btn-arrow { transform: translateX(4px); }
.sa-btn-primary {
    background: #1A7AE6;
    color: #fff;
}
.sa-btn-primary:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 122, 230, 0.4);
}
.sa-btn-outline {
    background: #fff;
    color: #1B2A4A;
    border: 2px solid #1B2A4A;
}
.sa-btn-outline:hover {
    background: #1B2A4A;
    color: #fff;
    transform: translateY(-3px);
}
.sa-btn-outline:hover .sa-btn-ico-navy {
    background: #fff;
    color: #1B2A4A;
}

/* ===== FEATURES BAR ===== */
.sa-features {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 35px 40px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.service-area-section.visible .sa-features {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.sa-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: background 0.3s ease;
    flex: 1;
}
.sa-feature:hover { background: #f0f5ff; }
.sa-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sa-feature-icon i {
    font-size: 24px;
    color: #1A7AE6;
}
.sa-feature-text { display: flex; flex-direction: column; }
.sa-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 4px;
}
.sa-feature-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .sa-main {
        flex-direction: column;
        min-height: 0;
    }
    .sa-map {
        flex: 0 0 auto;
        height: 400px;
        padding: 30px 20px;
    }
    .sa-content {
        flex: 0 0 auto;
        padding: 50px 24px;
    }
    .sa-deco { display: none; }
    .sa-title { font-size: 34px; }
    .sa-cities { grid-template-columns: repeat(2, 1fr); }
    .sa-cta { flex-direction: column; }
    .sa-btn { width: 100%; justify-content: flex-start; }
    .sa-features {
        flex-wrap: wrap;
        padding: 24px;
    }
    .sa-feature { flex: 1 1 calc(50% - 20px); }
}

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

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

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

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

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

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

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

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

    .colors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .process-steps::before {
        display: none;
    }

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

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

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

    .hardie-colors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 0.85rem;
        color: var(--white);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 0 0 0 16px;
        display: none;
    }

    .dropdown a {
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--brand-blue);
    }

    .nav-menu > li.dropdown-open .dropdown {
        display: block;
    }

    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }

    .nav-cta .btn-primary {
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-overlay.active {
        pointer-events: all;
    }

    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .hero-content {
        bottom: 60px;
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        white-space: normal;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .page-hero {
        margin-top: 60px;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 70px 0;
    }

    .colors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .color-swatch .swatch {
        width: 60px;
        height: 60px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

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

    .hardie-colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-content {
        padding: 32px 24px;
        margin: 20px;
    }

    .project-modal {
        padding: 20px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .color-swatch .swatch {
        width: 50px;
        height: 50px;
    }

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

/* ========== SCOPE SECTION OVERRIDE (end of file for highest priority) ========== */
.scope-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.scope-header { display: flex; justify-content: space-between; align-items: flex-end; }
.scope-header-left { font-size: 28px; color: #bbb; font-style: italic; }
.scope-header-right { font-size: 42px; font-weight: 700; color: #1B2A4A; }
.scope-divider { height: 3px; background: #1A7AE6; margin: 20px 0; }
.scope-item { display: flex; align-items: flex-start; padding: 40px 20px; border-bottom: 1px solid #e0e0e0; transition: background-color 0.3s ease; }
.scope-item:hover { background-color: #f0f5ff; }
.scope-number { font-size: 34px; color: #ccc; font-weight: 300; min-width: 80px; flex-shrink: 0; }
.scope-name { font-size: 28px; font-weight: 700; color: #1B2A4A; min-width: 280px; max-width: 280px; flex-shrink: 0; }
.scope-desc { font-size: 18px; color: #666; line-height: 1.6; margin-left: 40px; }
