:root {
    --black: #0a0a0a;
    --white: #f5f2ee;
    --cream: #ede9e1;
    --rust: #C9A84C;
    --rust-dark: #E2C47A;
    --rust-light: #A07830;
    --steel: #2c3e50;
    --steel-mid: #34495e;
    --steel-light: #5d7285;
    --warm-gray: #8c8378;
    --border: rgba(192, 57, 43, 0.18);
    --shadow: 0 8px 40px rgba(10, 10, 10, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 74px;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 0 2rem;
    position: relative;
}

.nav-logo::before,
.nav-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    background: var(--border);
}

.nav-logo::before {
    left: 0;
}

.nav-logo::after {
    right: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--rust);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    position: relative;
    overflow: hidden;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    color: var(--rust);
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--warm-gray);
    transition: color 0.25s;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--rust);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
    height: 300vh;
    position: relative;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(192, 57, 43, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(192, 57, 43, 0.12) 0%, transparent 60%),
        #0a0a0a;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192, 57, 43, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 57, 43, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-section-1,
.hero-section-2,
.hero-section-3 {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    height: 1px;
    width: 50px;
    background: var(--rust);
    opacity: 0.5;
}

.hero-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-heading span {
    color: var(--rust);
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--rust);
    color: white;
    padding: 0.9rem 2.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--rust-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(245, 242, 238, 0.2);
    transition: border-color 0.25s, transform 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--rust);
    transform: translateY(-2px);
}

.hero-image-frame {
    margin-top: 3rem;
    position: relative;
    display: inline-block;
}

.hero-image-frame img {
    width: 100%;
    max-width: 700px;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--rust);
    border-radius: 6px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-indicator span {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ─── SECTION COMMON ────────────────────────────── */
section {
    padding: 7rem 2rem;
}

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--rust);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--rust);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.75;
    font-weight: 300;
    max-width: 620px;
}

/* ─── ABOUT US ────────────────────────────────────── */
#about {
    background: #0d0d0d;
}

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

.about-image-stack {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    border: 4px solid #0d0d0d;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -50%);
    background: var(--rust);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
}

.about-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    color: white;
}

.about-badge-text {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.about-text .section-desc {
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.about-feat-icon {
    width: 36px;
    height: 36px;
    background: rgba(192, 57, 43, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feat-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--rust);
}

.about-feat-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.about-feat-desc {
    font-size: 0.78rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ─── SERVICES MAIN ───────────────────────────────── */
#services {
    background: var(--black);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.service-card {
    background: #0d0d0d;
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--rust);
    transition: width 0.4s ease;
}

.service-card:hover {
    background: #111;
}

.service-card:hover::before {
    width: 100%;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(192, 57, 43, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.service-card:hover .service-card-icon {
    background: rgba(192, 57, 43, 0.2);
}

.service-card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--rust);
}

.service-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ─── STATS ───────────────────────────────────────── */
#stats {
    background: var(--rust);
    padding: 5rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: white;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-top: 0.4rem;
    display: block;
}

/* ─── HOW WE BENEFIT ─────────────────────────────── */
#benefit {
    background: #0d0d0d;
    padding: 7rem 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.benefit-left {
    background: var(--rust);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefit-left::after {
    content: 'WHY US';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    opacity: 0.08;
    color: white;
    line-height: 1;
    letter-spacing: 0.05em;
}

.benefit-left .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.benefit-left .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.benefit-left .section-title {
    color: white;
    margin-bottom: 1rem;
}

.benefit-left .section-title span {
    color: rgba(255, 255, 255, 0.6);
}

.benefit-left .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-right {
    padding: 4rem;
    background: #111;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--rust);
    opacity: 0.4;
    flex-shrink: 0;
    width: 50px;
}

.benefit-text-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.benefit-text-desc {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ─── SERVICE AREA ────────────────────────────────── */
#service-area {
    background: var(--black);
    padding: 7rem 2rem;
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.area-left .section-desc {
    margin-bottom: 2.5rem;
}

.area-image {
    position: relative;
}

.area-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.area-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(192, 57, 43, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

.area-desc {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
    margin: 0 0 1.8rem;
    padding: 0;
}

.area-list li {
    color: #e5dfd3;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    padding-left: 1.1rem;
}

.area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rust);
}

.area-cta {
    margin-top: 2rem;
}

/* ─── ADDITIONAL SERVICES – TIMELINE ──────────────── */
#additional {
    background: #0d0d0d;
    padding: 7rem 2rem;
}

.additional-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom, var(--rust), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.55rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--rust);
    border: 3px solid #0d0d0d;
    box-shadow: 0 0 0 2px var(--rust);
}

.timeline-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.timeline-desc {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

.add-services-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 5rem;
}

.add-card {
    background: #161616;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.add-card:hover {
    border-color: rgba(192, 57, 43, 0.4);
    transform: translateY(-4px);
}

.add-card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.add-card-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.add-card-desc {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.55;
}

/* ─── COMPREHENSIVE SERVICE ─────────────────────────── */
#comprehensive {
    background: var(--black);
    padding: 7rem 2rem;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.comp-image {
    position: relative;
}

.comp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.comp-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--rust);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    max-width: 260px;
}

.comp-overlay-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.4rem;
}

.comp-overlay-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.comp-text .section-desc {
    margin-bottom: 2rem;
}

.comp-long-desc {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.comp-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.comp-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--white);
}

.comp-feature::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(192, 57, 43, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--rust);
    flex-shrink: 0;
    font-weight: 700;
}

/* ─── FAQ ──────────────────────────────────────────── */
#faq {
    background: #0d0d0d;
    padding: 7rem 2rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 1.4rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s;
}

.faq-q:hover {
    color: var(--rust);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s, transform 0.3s, background 0.25s;
}

.faq-arrow svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    border-color: var(--rust);
    background: rgba(192, 57, 43, 0.1);
}

.faq-item.open .faq-q {
    color: var(--rust);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

.faq-cities {
    margin-top: 4rem;
}

.faq-cities-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-cities-title::before {
    content: '';
    height: 1px;
    width: 25px;
    background: var(--rust);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.city-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    color: var(--warm-gray);
    transition: border-color 0.25s, color 0.25s;
}

.city-tag:hover {
    border-color: var(--rust);
    color: var(--white);
}

/* ─── CONTACT ──────────────────────────────────────── */
#contact {
    background: var(--black);
    padding: 7rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.7) invert(0.85) saturate(0.3) hue-rotate(160deg);
    opacity: 0.85;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info .section-title {
    font-size: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 57, 43, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--rust);
}

.contact-detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, background 0.25s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-btn-call {
    background: var(--rust);
    color: white;
}

.contact-btn-call:hover {
    background: var(--rust-dark);
}

.contact-btn-email {
    background: #1a1a1a;
    color: var(--white);
    border: 1px solid var(--border);
}

.contact-btn-dir {
    background: #1a1a1a;
    color: var(--white);
    border: 1px solid var(--border);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
    background: #070707;
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2.5rem;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(192, 57, 43, 0.3);
    color: var(--white);
    transition: border-color 0.25s, background 0.25s;
}

.footer-btn:hover {
    border-color: var(--rust);
    background: rgba(192, 57, 43, 0.08);
}

.footer-btn svg {
    width: 14px;
    height: 14px;
    fill: var(--rust);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(140, 131, 120, 0.5);
    letter-spacing: 0.1em;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .about-grid,
    .services-intro,
    .area-layout,
    .additional-layout,
    .comp-grid,
    .faq-layout,
    .contact-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .about-image-stack {
        height: 320px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .add-services-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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