/* ============================================
   F&T POWER WASHING — DESIGN SYSTEM
   Colors: Orange #FD7B00 / Navy #004a99 / Dark #0a1628
   Fonts: Outfit (headings) / Inter (body)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --orange: #FD7B00;
    --orange-light: #ff9a33;
    --orange-dark: #e06900;
    --orange-glow: rgba(253, 123, 0, 0.3);
    --navy: #004a99;
    --navy-light: #1a6bc4;
    --navy-dark: #003366;
    --dark: #0a1628;
    --dark-surface: #0f1f38;
    --dark-card: #132744;
    --dark-border: rgba(255, 255, 255, 0.08);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e2e5ea;
    --gray-300: #c8cdd5;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 120px);
    --container-max: 1200px;
    --container-pad: clamp(20px, 4vw, 40px);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 30px var(--orange-glow);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top var(--duration) var(--ease);
}

.skip-link:focus {
    top: 10px;
}

ul,
ol {
    list-style: none;
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s var(--ease);
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px var(--orange-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--orange-glow);
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.section-header__title span {
    color: var(--orange);
}

.section-header__desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Light variant */
.section-header__label--light {
    color: var(--orange-light);
}

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

.section-header__desc--light {
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease);
    background: transparent;
}

.nav--scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav__logo-icon {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    line-height: 1;
}

.nav__logo-icon span {
    color: var(--navy);
    font-size: 1rem;
}

.nav__logo-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.nav__logo-subtitle {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
    transition: color var(--duration) var(--ease);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--duration) var(--ease);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--duration) var(--ease);
}

.nav__phone:hover {
    color: var(--orange);
}

.nav__cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: all var(--duration) var(--ease);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

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

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

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

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-original.jpeg') center/cover no-repeat;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 22, 40, 0.7) 0%,
            rgba(10, 22, 40, 0.5) 50%,
            rgba(10, 22, 40, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px var(--container-pad) 80px;
    max-width: 900px;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__highlight {
    color: var(--orange);
    position: relative;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--orange);
    opacity: 0.3;
    border-radius: 3px;
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
}

/* ==================== PROMO ==================== */
.promo {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    padding: 20px 0;
    border-bottom: 3px solid var(--orange);
}

.promo__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.promo__badge {
    background: var(--orange);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
}

.promo__badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.promo__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.promo__highlight {
    color: var(--orange-light);
    font-weight: 600;
}

.promo__cta {
    padding: 8px 20px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

.promo__cta:hover {
    background: var(--orange);
    color: var(--white);
}

/* ==================== ABOUT ==================== */
.about {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

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

.about__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--duration) var(--ease);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
}

.about__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about__card:hover::before {
    transform: scaleX(1);
}

.about__card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 123, 0, 0.1), rgba(253, 123, 0, 0.05));
    border-radius: 50%;
    color: var(--orange);
}

.about__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.about__card-divider {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.about__card-text {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== SERVICES ==================== */
.services {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 100%);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 123, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(253, 123, 0, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all var(--duration) var(--ease);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.service-card__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== STATS ==================== */
.stats {
    background: var(--orange);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--orange) 100%);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stats__item {
    text-align: center;
    color: var(--white);
}

.stats__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    display: inline;
}

.stats__plus {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.stats__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== REVIEWS ==================== */
.reviews {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.reviews__bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/section-bg.jpg') center/cover no-repeat fixed;
}

.reviews__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.88);
}

.reviews__container {
    position: relative;
    z-index: 2;
}

.reviews__badge {
    max-width: 380px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__badge-company {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.reviews__badge-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews__badge-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.reviews__badge-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews__badge-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Carousel */
.reviews__carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.review-card {
    min-width: 100%;
    padding: 48px 44px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 32px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--orange);
    opacity: 0.25;
}

.review-card__stars {
    color: #FBBC05;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-card__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.review-card__name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.review-card__date {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews__nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all var(--duration) var(--ease);
}

.reviews__nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.reviews__dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

/* ==================== SERVICE AREAS ==================== */
.areas {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.area-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.area-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.area-card__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.areas__cta {
    text-align: center;
}

.areas__cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* ==================== GALLERY ==================== */
.gallery {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 100%);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

/* ==================== CONTACT ==================== */
.contact {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

/* Form */
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--white);
    transition: all var(--duration) var(--ease);
    outline: none;
}

.form-group__input::placeholder {
    color: var(--gray-300);
}

.form-group__input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-glow);
}

.form-group__input.error {
    border-color: #ef4444;
}

.form-group__error {
    display: none;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
}

.form-group__input.error+.form-group__error {
    display: block;
}

.form-group__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.contact__form>.form-group {
    margin-bottom: 20px;
}

.contact__form>.btn {
    margin-top: 8px;
}

.contact__form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    margin-top: 16px;
    color: #16a34a;
}

.contact__form-success.show {
    display: flex;
}

/* Info Card */
.contact__info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: var(--white);
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__info-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color var(--duration) var(--ease);
}

.contact__info-item:hover {
    color: var(--orange);
}

.contact__info-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

.contact__social {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration) var(--ease);
}

.contact__social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: 4px solid var(--orange);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: all var(--duration) var(--ease);
}

.footer__link:hover {
    color: var(--orange);
    transform: translateX(4px);
}

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

.footer__credit {
    font-style: italic;
}

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

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

@media (max-width: 768px) {

    .nav__links,
    .nav__actions {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__links.active {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1000;
    }

    .nav__links.active .nav__link {
        font-size: 1.4rem;
        color: var(--white);
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .about__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

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

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

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

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

    .promo__inner {
        text-align: center;
    }
}

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

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

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

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .review-card {
        padding: 24px;
    }

    .review-card__text {
        font-size: 1rem;
    }
}