:root {
    --crimson: #8B1A2E;
    --crimson-dark: #6B1222;
    --crimson-light: #B02040;
    --cream: #FDF8F4;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --gray: #666666;
    --light-gray: #F0EBE6;
    --border: #E0D5CE;
    --gold: #C9963A;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text .brand {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-logo-text .tagline {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0 22px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: var(--border);
}

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

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

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

.nav-cta::after {
    display: none !important;
}

/* ============ HERO – FLOATING FRAME WITHIN FRAME ============ */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--crimson);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-outer-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    pointer-events: none;
}

.hero-outer-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

/* Decorative corner marks */
.hero-outer-frame .corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(255, 255, 255, 0.5);
    border-style: solid;
}

.hero-outer-frame .corner.tl {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.hero-outer-frame .corner.tr {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
}

.hero-outer-frame .corner.bl {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 2px 2px;
}

.hero-outer-frame .corner.br {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 26, 46, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.hero-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 20vw, 280px);
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.02em;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    padding: 80px 60px;
}

.hero-inner-frame {
    grid-column: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 56px 52px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    position: relative;
}

.hero-inner-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #E8A030;
    border-radius: 50%;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--crimson);
    padding: 14px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}

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

.hero-right {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px;
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    display: block;
}

.hero-phone-bar {
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-phone-bar svg {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.hero-phone-bar a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* ============ SERVICES NUMBERED ============ */
.services-section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ ABOUT ============ */
.about-section {
    padding: 110px 60px 90px;
    background: var(--cream);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.about-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.85;
    max-width: 560px;
    margin-top: 10px;
}

.about-points {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.about-point {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    align-items: start;
}

.about-point .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    background: var(--crimson);
    box-shadow: 0 0 0 6px rgba(139, 26, 46, 0.12);
}

.about-point-text {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.7;
}

.about-point-text strong {
    color: var(--crimson);
    font-weight: 700;
}

.about-ctas {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--charcoal);
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(26, 26, 26, 0.18);
}

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

.about-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 46, 0.18) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.0) 100%);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(253, 248, 244, 0.92);
    border: 1px solid rgba(224, 213, 206, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.about-badge-top {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

.about-badge-bottom {
    margin-top: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--crimson);
    font-weight: 700;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--crimson);
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}

.service-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    transition: background 0.2s;
    overflow: hidden;
}

.service-item:nth-child(even) {
    border-right: none;
}

.service-item:nth-child(9),
.service-item:nth-child(10) {
    border-bottom: none;
}

.service-item:hover {
    background: var(--light-gray);
}

.service-num-col {
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.service-num-col::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 36px 32px;
}

.service-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-icon {
    width: 36px;
    height: 36px;
    background: rgba(139, 26, 46, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
    flex-shrink: 0;
}

.service-name {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.service-desc {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ FEATURED SERVICES DASHBOARD ============ */
.featured-section {
    background: var(--charcoal);
    padding: 100px 60px;
}

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

.featured-section .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.featured-section .section-label::before {
    background: rgba(255, 255, 255, 0.3);
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    margin-top: 56px;
}

.dash-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: pointer;
}

.dash-card:hover {
    background: #2c2c2c;
}

.dash-card.large {
    grid-row: 1 / 3;
    padding: 52px 48px;
    background: var(--crimson);
    border-color: var(--crimson-light);
}

.dash-card.large:hover {
    background: var(--crimson-light);
}

.dash-card.large .dash-num {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.12);
}

.dash-card.large .dash-title {
    font-size: 26px;
    color: var(--white);
}

.dash-card.large .dash-desc {
    color: rgba(255, 255, 255, 0.7);
}

.dash-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.dash-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.dash-card.large .dash-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
}

.dash-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.dash-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.dash-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

/* ============ SERVICE AREA ============ */
.area-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.area-right .section-label {
    justify-content: flex-end;
}

.area-right .section-label::before {
    display: none;
}

.area-right .section-label::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--crimson);
    display: block;
}

.area-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    transition: all 0.2s;
}

.city-tag::before {
    content: '◆';
    color: var(--crimson);
    font-size: 7px;
}

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

.area-service-list {
    border: 1px solid var(--border);
}

.area-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
}

.area-service-item:last-child {
    border-bottom: none;
}

.area-service-item:hover {
    background: var(--light-gray);
}

.area-service-item .check {
    width: 22px;
    height: 22px;
    background: var(--crimson);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ============ FAQ ============ */
.faq-section {
    background: var(--light-gray);
    padding: 100px 60px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 56px;
}

.faq-item {
    background: var(--white);
    padding: 32px 36px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--crimson);
    opacity: 0;
    transition: opacity 0.2s;
}

.faq-item:hover::before,
.faq-item.open::before {
    opacity: 1;
}

.faq-item.open {
    background: var(--crimson);
}

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

.faq-item.open .faq-a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.faq-item.open .faq-city {
    color: rgba(255, 255, 255, 0.5);
}

.faq-item.open .faq-toggle {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.faq-q {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--charcoal);
    line-height: 1.35;
}

.faq-toggle {
    font-size: 22px;
    color: var(--crimson);
    flex-shrink: 0;
    transition: transform 0.3s;
    margin-top: -2px;
    line-height: 1;
}

.faq-a {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.75;
    margin-top: 16px;
    display: none;
}

.faq-city {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

/* ============ CONTACT ============ */
.contact-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 56px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.contact-card:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text .label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text .value {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
}

.contact-text .value:hover {
    color: var(--crimson);
}

.map-wrapper {
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.map-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--crimson);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 10;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--crimson);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'NICO';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.04);
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text .eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    max-width: 560px;
}

.cta-text h2 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.cta-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* ============ FOOTER ============ */
.footer {
    background: #111111;
    padding: 72px 60px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 52px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 260px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 20px;
    font-size: 12px;
}

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

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

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .navbar {
        padding: 0 24px;
    }

    .nav-links a {
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 32px;
    }

    .hero-right {
        padding-left: 0;
        margin-top: 40px;
    }

    .services-section,
    .about-section,
    .area-section,
    .contact-section,
    .cta-section {
        padding: 60px 24px;
    }

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

    .service-item:nth-child(even) {
        border-right: 1px solid var(--border);
    }

    .service-item:nth-child(9),
    .service-item:nth-child(10) {
        border-bottom: 1px solid var(--border);
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .area-layout,
    .contact-layout,
    .faq-grid,
    .about-inner,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        gap: 28px;
    }

    .about-media {
        max-width: 680px;
        margin: 0 auto;
    }

    .dash-card.large {
        grid-row: auto;
    }

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

    .featured-section {
        padding: 60px 24px;
    }

    .faq-section {
        padding: 60px 24px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 48px 24px 24px;
    }
}