﻿:root {
    --charcoal: #1a1a1a;
    --charcoal-mid: #2c2c2c;
    --charcoal-light: #3d3d3d;
    --stone: #8a8a8a;
    --stone-light: #c8c4bc;
    --stone-pale: #f2f0ed;
    --red: #c0392b;
    --red-dark: #96281b;
    --white: #ffffff;
    --off-white: #f8f7f5;
}

/* -- ANIMATIONS -- */
@keyframes fadeOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll-reveal base */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-28px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(0.93);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

[data-delay="1"] {
    transition-delay: 0.1s;
}

[data-delay="2"] {
    transition-delay: 0.2s;
}

[data-delay="3"] {
    transition-delay: 0.3s;
}

[data-delay="4"] {
    transition-delay: 0.4s;
}

[data-delay="5"] {
    transition-delay: 0.5s;
}

/* hero entrance */
.hero-badge {
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 {
    animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-sub {
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-btns {
    animation: fadeInUp 0.7s ease 0.55s both;
}

.hero-stats {
    animation: fadeInUp 0.7s ease 0.7s both;
}

/* nav scroll-shrink */
nav.scrolled {
    height: 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

nav.scrolled .nav-logo img {
    height: 40px;
}

/* FA icon inside why-icon */
.why-icon i {
    font-size: 1.3rem;
}

/* trust bar icons */
.trust-icon i {
    font-size: 0.9rem;
}

/* contact detail icons */
.contact-detail-icon i {
    font-size: 1.1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* -- NAV -- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(5%, calc(50% - 680px));
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--stone-light);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 300;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, width 0.3s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -- MOBILE MENU OVERLAY -- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 199;
    backdrop-filter: blur(4px);
    animation: fadeOverlay 0.3s ease;
}

.nav-overlay.open {
    display: block;
}

/* -- MOBILE MENU PANEL -- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: min(380px, 88vw);
    height: 100vh;
    background: var(--charcoal);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--red);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--charcoal-light);
    min-height: 72px;
}

.mobile-menu-logo {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-logo span {
    color: var(--red);
}

.mobile-close {
    background: none;
    border: 1px solid var(--charcoal-light);
    color: var(--stone-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.mobile-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.mobile-menu-nav {
    flex: 1;
    padding: 12px 0;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--stone-light);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.mobile-menu-nav a i {
    width: 20px;
    text-align: center;
    color: var(--red);
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.mobile-menu-nav a:hover {
    color: var(--white);
    background: rgba(192, 57, 43, 0.08);
    padding-left: 30px;
}

.mobile-menu-nav a:hover i {
    transform: scale(1.2);
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid var(--charcoal-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-footer .btn-primary {
    text-align: center;
    font-size: 0.9rem;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu-footer .btn-primary i {
    font-size: 0.85rem;
}

.mobile-menu-footer .mobile-contact-link {
    text-align: center;
    color: var(--stone);
    font-size: 0.82rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
    transition: color 0.2s;
}

.mobile-menu-footer .mobile-contact-link:hover {
    color: var(--red);
}

/* -- HERO -- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.75) 60%, rgba(192, 57, 43, 0.3) 100%),
        url('/Images/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid var(--red);
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--red);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--stone-light);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--stone-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* -- TRUST BAR -- */
.trust-bar {
    background: var(--charcoal);
    border-bottom: 1px solid var(--charcoal-light);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-right: 1px solid var(--charcoal-light);
    color: var(--stone-light);
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    color: var(--red);
    font-size: 1.1rem;
}

/* -- SECTIONS -- */
section {
    padding: 100px max(5%, calc(50% - 640px));
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-sub {
    font-size: 1rem;
    color: #666;
    max-width: 560px;
    line-height: 1.7;
}

.section-sub.light {
    color: var(--stone-light);
}

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

.text-center .section-sub {
    margin: 0 auto;
}

/* -- WHY CHOOSE -- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--stone-pale);
}

.why-card {
    background: var(--white);
    padding: 40px 32px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.why-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--red);
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 2px;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* -- SERVICES -- */
.services-bg {
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--charcoal-light);
}

.service-card {
    background: var(--charcoal-mid);
    padding: 20px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform 0.2s;
}

.service-card:hover {
    background: var(--charcoal-light);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.6;
}

.service-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

/* -- EXPERIENCE BANNER -- */
.exp-banner {
    background: var(--red);
    padding: 60px max(5%, calc(50% - 640px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.exp-banner .big-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.9;
}

.exp-banner .big-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.exp-divider {
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
}

.exp-text {
    max-width: 420px;
    text-align: left;
}

.exp-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
}

.exp-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* -- TESTIMONIALS / CAROUSEL -- */
.testimonials-bg {
    background: var(--off-white);
}

/* Carousel wrapper */
.carousel-outer {
    position: relative;
    margin-top: 56px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* Review card */
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: var(--white);
    padding: 36px 32px;
    border-left: 4px solid var(--red);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.review-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #f59e0b;
}

.review-quote {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.review-meta {
    border-top: 1px solid var(--stone-pale);
    padding-top: 16px;
}

.review-author {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.review-location {
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-location i {
    color: var(--red);
    font-size: 0.7rem;
}

/* Arrow buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.carousel-btn:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: translateY(-50%) scale(1);
}

.carousel-btn-prev {
    left: -22px;
}

.carousel-btn-next {
    right: -22px;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--stone-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 28px;
    background: var(--red);
}

/* Google review CTA */
.google-review-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--charcoal-light);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-google-review:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-google-review .g-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* -- PROJECTS -- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 60px;
}

.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--charcoal-mid);
}

.project-card.featured {
    grid-column: span 2;
    aspect-ratio: unset;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* -- SERVICE AREAS -- */
.areas-bg {
    background: var(--charcoal);
}

.areas-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.areas-cities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-top: 0;
    background: var(--charcoal-light);
}

.area-item {
    background: var(--charcoal-mid);
    padding: 16px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Connecticut map */
#ct-map {
    height: 480px;
    border-radius: 8px;
    border: 2px solid var(--charcoal-light);
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
    background: var(--charcoal);
    color: var(--white);
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.leaflet-popup-tip {
    background: var(--charcoal);
}

.leaflet-popup-close-button {
    color: var(--stone) !important;
}

/* Contact map tooltip */
.leaflet-tooltip-custom {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.leaflet-tooltip-custom::before {
    display: none;
}

/* Footer socials */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--charcoal-light);
    border-radius: 50%;
    color: var(--stone-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    border: 1px solid var(--charcoal-mid);
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link.fb:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.footer-social-link.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-color: transparent;
}

.footer-social-link.gg:hover {
    background: #fff;
    color: #4285F4;
    border-color: #ddd;
}

/* -- FINAL CTA -- */
.final-cta {
    background:
        linear-gradient(rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.78)),
        url('Images/exp-banner-bg.webp') center/cover fixed;
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--stone-light);
    margin-bottom: 40px;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--stone-light);
    font-size: 0.9rem;
}

.cta-contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.cta-contact-item a:hover {
    color: var(--red);
}

/* -- ABOUT PAGE -- */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('Images/about-hero-bg.webp') center/cover;
    padding: 160px 5% 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-block {
    position: relative;
}

.about-img-block img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 20px 20px 0 var(--red);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    text-align: center;
    padding: 20px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-float small {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

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

.value-card {
    background: #fff;
    padding: 36px 32px;
    border-top: 3px solid var(--red);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.value-card .value-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* -- SERVICES PAGE -- */
.services-page-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('Images/services-hero-bg.webp') center/cover;
    padding: 160px 5% 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

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

.service-detail:nth-child(even) .service-text {
    order: 2;
}

.service-detail:nth-child(even) .service-img {
    order: 1;
}

.service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.service-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.service-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}

.service-benefits li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -- GALLERY PAGE -- */
.gallery-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('Images/gallery-hero-bg.webp') center/cover;
    padding: 160px 5% 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 40px 0 32px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--stone-light);
    color: var(--charcoal);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--stone-pale);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px 16px 14px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-item-label {
    transform: translateY(0);
}

/* -- CONTACT PAGE -- */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('Images/contact-hero-bg.webp') center/cover;
    padding: 160px 5% 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.contact-detail-text a,
.contact-detail-text span {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: var(--red);
}

.contact-form-card {
    background: var(--off-white);
    padding: 48px 40px;
    border-top: 4px solid var(--red);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--stone-light);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

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

.form-note {
    font-size: 0.78rem;
    color: #888;
    margin-top: -10px;
    margin-bottom: 12px;
}

/* -- FOOTER -- */
footer {
    background: #111;
    padding: 60px max(5%, calc(50% - 640px)) 30px;
    border-top: 3px solid var(--red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e85d4a;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--stone);
    font-size: 0.78rem;
}

/* active nav link */
.nav-links a.active {
    color: var(--red);
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .project-card.featured {
        grid-column: span 2;
    }

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

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

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

    #ct-map {
        height: 350px;
    }

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

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

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

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

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

    .service-detail:nth-child(even) .service-text {
        order: 0;
    }

    .service-detail:nth-child(even) .service-img {
        order: 0;
    }

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

    .exp-divider {
        display: none;
    }

    .exp-text {
        text-align: center;
    }

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

    .contact-form-card {
        padding: 32px 24px;
    }
}

/* carousel responsive */
@media (max-width: 960px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }

    .carousel-btn-prev {
        left: -12px;
    }

    .carousel-btn-next {
        right: -12px;
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }

    .service-card {
        padding: 15px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .carousel-btn-prev {
        left: 4px;
    }

    .carousel-btn-next {
        right: 4px;
    }
}

@media (max-width: 560px) {
    section {
        padding: 64px max(20px, 5%);
    }

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

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

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

    .area-item {
        padding: 12px 14px;
        font-size: 0.78rem;
    }

    #ct-map {
        height: 280px;
    }

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

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

    .project-card.featured {
        grid-column: span 1;
    }

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

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

    footer p,
    .footer-col {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .hero-stats {
        gap: 28px;
    }

    .trust-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-item {
        padding: 14px 12px;
        font-size: 0.74rem;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid var(--charcoal-light);
        letter-spacing: 0.05em;
    }

    .trust-item:last-child {
        grid-column: span 2;
        border-bottom: none;
    }
}

/* -- LIGHTBOX -- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 3001;
}

.lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.lightbox-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 92vw;
    max-height: 82vh;
}

.lightbox-img-wrap img {
    max-width: min(88vw, 1000px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    user-select: none;
}

.lightbox-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    margin: 0 16px;
}

.lightbox-btn:hover {
    background: rgba(192, 57, 43, 0.7);
    border-color: var(--red);
}

.lightbox-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

.lightbox-info {
    margin-top: 18px;
    text-align: center;
}

.lightbox-label {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-counter {
    color: var(--stone);
    font-size: 0.78rem;
    margin-top: 5px;
    letter-spacing: 0.06em;
}

/* -- GALLERY ITEM CURSOR -- */
.gallery-item {
    cursor: pointer;
}

/* -- CONTACT SOCIALS -- */
.contact-socials-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px max(5%, calc(50% - 640px));
    background: var(--off-white);
    border-bottom: 1px solid #e0e0e0;
}

.contact-social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 18px 28px;
    border-top: 3px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    color: var(--charcoal);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-width: 190px;
}

.contact-social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.contact-social-card.fb {
    border-color: #1877f2;
}

.contact-social-card.ig {
    border-color: #e1306c;
}

.contact-social-card.gg {
    border-color: #ea4335;
}

.contact-social-card i {
    font-size: 1.4rem;
    width: 36px;
    text-align: center;
}

.contact-social-card.fb i {
    color: #1877f2;
}

.contact-social-card.ig i {
    color: #e1306c;
}

.contact-social-card.gg i {
    color: #ea4335;
}

.contact-social-card strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-social-card span {
    font-size: 0.75rem;
    color: #888;
}

/* -- CONTACT MAP -- */
.contact-map-section {
    padding: 72px max(5%, calc(50% - 640px)) 80px;
    background: var(--off-white);
    border-top: 1px solid #e0e0e0;
}

.contact-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}

.contact-map-header-text {
    flex: 1;
}

.contact-map-stats {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: var(--white);
    border-right: 1px solid #ddd;
}

.map-stat:last-child {
    border-right: none;
}

.map-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.map-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-top: 6px;
    white-space: nowrap;
}

#contact-map {
    height: 420px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
    .lightbox-btn {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        margin: 0;
        font-size: 0.95rem;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 3002;
    }

    .lightbox-btn:first-child {
        left: 10px;
    }

    .lightbox-btn:last-of-type {
        right: 10px;
    }

    .lightbox-img-wrap {
        max-width: 100vw;
    }

    .lightbox-img-wrap img {
        max-width: 100vw;
        max-height: 70vh;
    }

    .contact-social-card {
        min-width: 140px;
        padding: 14px 18px;
    }

    .contact-map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .contact-map-stats {
        width: 100%;
    }

    .map-stat {
        flex: 1;
        padding: 16px 12px;
    }

    #contact-map {
        height: 280px;
    }
}
