:root {
    --primary: #6A0DAD;
    --primary-dark: #6A0DAD;
    --primary-light: #6A0DAD;
    --bg-dark: #0A0A0A;
    --bg-mid: #111111;
    --bg-card: #161616;
    --text-white: #F5F5F5;
    --text-muted: #888;
    --accent: #D4A017;
    --red: #C0392B;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ─── VERTICAL NAVBAR ─── */
#side-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    background: rgba(10, 10, 10, 0.92);
    border-left: 2px solid var(--primary);
    padding: 10px 0;
    border-radius: 8px 0 0 8px;
}

.side-nav-logo {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 100px;
    margin: 6px 10px 12px 10px;
    border-radius: 999px;
    background: rgba(106, 13, 173, 0.18);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', 'Barlow', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.side-nav-logo__img {
    width: 100px;
    height: 100px;
    padding: 6px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.side-nav-logo__text {
    line-height: 1;
    display: inline-block;
    transform: translateY(1px);
}

.side-nav-logo:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.side-nav-logo:active {
    transform: translateY(0);
}

.side-nav-logo:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    padding: 12px 59px 12px 20px;
    transition: all 0.3s;
    overflow: hidden;
}

.nav-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    margin-bottom: 6px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.nav-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    background: var(--primary);
    transition: height 0.4s ease;
    height: 0%;
}

.nav-item.active .nav-label {
    color: var(--primary);
}

.nav-item.active .nav-dot {
    background: var(--primary);
    transform: scale(1.6);
}

.nav-item:hover .nav-label {
    color: var(--primary-light);
}

.nav-item:hover .nav-dot {
    background: var(--primary-light);
}

/* ─── HERO – DIAGONAL SPLIT ─── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-text-side {
    position: relative;
    z-index: 3;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    background: var(--bg-dark);
}

.hero-img-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.7);
}

/* Diagonal divider */
.hero-diagonal {
    position: absolute;
    left: 42%;
    top: 0;
    width: 22%;
    height: 100%;
    z-index: 2;
    background: var(--bg-dark);
    clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero-diagonal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 45%, var(--primary) 45%, var(--primary) 47%, transparent 47%);
    opacity: 0.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    animation: fadeUp 0.8s 0.2s both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.95;
    color: var(--text-white);
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.4s both;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.6s both;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.8s both;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-white);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-phone-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    background: var(--primary);
    color: #000;
    padding: 12px 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.8s 1s both;
}

/* ─── SECTION HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    color: var(--text-white);
}

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

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ─── SERVICES – TIMELINE ─── */
#services {
    padding: 100px 0;
    background: var(--bg-mid);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: 'SERVICES';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(212, 160, 23, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 68px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    height: 0%;
    transition: height 0.1s linear;
}

.t-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
    position: relative;
}

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

.t-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.t-item:hover .t-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.t-body {
    padding-top: 8px;
}

.t-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.t-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
}

/* ─── STATS ─── */
#stats {
    background: var(--primary);
    padding: 64px 0;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

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

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #000;
    line-height: 1;
}

.stat-unit {
    font-size: 28px;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
    margin-top: 6px;
}

/* ─── WHAT WE DO ─── */
#whatwedo {
    padding: 100px 0;
    background: var(--bg-dark);
}

.wwd-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wwd-content {}

.wwd-intro {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.wwd-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wwd-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-card);
    border-left: 3px solid var(--primary);
    transition: all 0.3s;
}

.wwd-feat:hover {
    background: rgba(212, 160, 23, 0.08);
    transform: translateX(6px);
}

.wwd-feat-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.wwd-feat-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}

.wwd-feat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.wwd-visual {
    position: relative;
}

.wwd-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.wwd-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.6);
}

.wwd-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 24px 24px;
}

.wwd-cert {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

.wwd-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--primary);
    color: #000;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

/* ─── FAQ ─── */
#faq {
    padding: 100px 0;
    background: var(--bg-mid);
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-q {
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    user-select: none;
    transition: color 0.3s;
}

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

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--primary);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: #000;
    transform: rotate(45deg);
    border-color: var(--primary);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 22px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 20px;
}

/* ─── ADDITIONAL SERVICES SPOTLIGHT ─── */
#add-services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.spotlight-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.spotlight-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 4px;
    overflow: hidden;
    display: none;
    animation: fadeIn 0.5s ease;
}

.spotlight-card.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

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

.spotlight-img {
    overflow: hidden;
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 340px;
    filter: brightness(0.7) saturate(0.6);
    transition: transform 0.5s;
}

.spotlight-card:hover .spotlight-img img {
    transform: scale(1.04);
}

.spotlight-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(212, 160, 23, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

.spotlight-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.spotlight-title span {
    color: var(--primary);
}

.spotlight-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.spotlight-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.sn-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    border-radius: 2px;
}

.sn-btn:hover {
    background: var(--primary);
    color: #000;
}

.sn-dots {
    display: flex;
    gap: 6px;
}

.sn-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.sn-dot.active {
    background: var(--primary);
    width: 18px;
    border-radius: 3px;
}

/* ─── SERVICE AREAS ─── */
#service-area {
    padding: 100px 0;
    background: var(--bg-mid);
}

.sa-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sa-areas {
    columns: 2;
    gap: 10px;
}

.sa-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--text-muted);
    break-inside: avoid;
    transition: color 0.2s;
    cursor: default;
}

.sa-tag:hover {
    color: var(--primary);
}

.sa-tag i {
    color: var(--primary);
    font-size: 10px;
}

.sa-map {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.sa-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    filter: grayscale(0.4) contrast(1.1);
    display: block;
}

/* ─── COMPREHENSIVE SERVICES ─── */
#comp-services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.comp-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s;
    position: relative;
    cursor: pointer;
}

.comp-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.comp-card:hover::before {
    transform: scaleX(1);
}

.comp-card:hover {
    border-color: rgba(212, 160, 23, 0.25);
    transform: translateY(-4px);
}

.comp-img {
    height: 160px;
    overflow: hidden;
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.5);
    transition: transform 0.4s, filter 0.3s;
}

.comp-card:hover .comp-img img {
    transform: scale(1.06);
    filter: brightness(0.75) saturate(0.7);
}

.comp-body {
    padding: 20px;
}

.comp-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 12px;
}

.comp-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.comp-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CONTACT ─── */
#contact {
    padding: 0;
    background: var(--bg-dark);
}

.contact-info-bar {
    background: var(--primary);
    padding: 14px 0;
}

.contact-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.cib-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.cib-item i {
    font-size: 14px;
}

.contact-body {
    padding: 80px 0;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

.contact-left {}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.c-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-left: 3px solid var(--primary);
    transition: background 0.3s;
}

.c-card:hover {
    background: rgba(212, 160, 23, 0.06);
}

.c-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.c-card-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.c-card-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.contact-map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(0.3) contrast(1.1);
    display: block;
}

.contact-form {}

.form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 24px;
}

.form-title span {
    color: var(--primary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-white);
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    border-radius: 2px;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

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

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

/* ─── FOOTER ─── */
footer {
    background: #000;
    padding: 60px 0 0;
}

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

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.fsoc {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
}

.fsoc:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '→';
    color: var(--primary);
    font-size: 11px;
}

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

.footer-bottom {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0;
}

/* Floating buttons footer */
.footer-float-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-addr {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-addr i {
    color: var(--primary);
}

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

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(212, 160, 23, 0.06);
}

.float-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.float-btn i {
    font-size: 14px;
    color: var(--primary);
    transition: color 0.3s;
}

.float-btn:hover i {
    color: #000;
}

.footer-copy {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-copy span {
    color: var(--primary);
}

/* ─── ANIMS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    #side-nav {
        display: none;
    }

    .hero-text-side {
        width: 100%;
        padding: 80px 30px 120px;
    }

    .hero-img-side {
        width: 100%;
        opacity: 0.18;
    }

    .hero-diagonal {
        display: none;
    }

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

    .wwd-grid,
    .contact-grid,
    .sa-layout {
        grid-template-columns: 1fr;
    }

    .spotlight-card.active {
        grid-template-columns: 1fr;
    }

    .spotlight-img img {
        min-height: 200px;
    }

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

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

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

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

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

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

    .hero-title {
        font-size: 48px;
    }
}