/*
Theme Name: RevZone Motor Shop
Theme URI: http://example.com/revzone/
Author: RevZone
Author URI: http://example.com/
Description: A custom premium theme for RevZone Motor Shop.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revzone
*/

/* ─────────────────────────────────────────────────────────
   RevZone Motor Shop – styles.css
───────────────────────────────────────────────────────── */

/* ── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #ff6a00;
    --orange-light: #ff8c3a;
    --blue: #0099ff;
    --dark: #0b0d11;
    --dark-2: #12151c;
    --dark-3: #1a1f2e;
    --dark-border: rgba(255, 255, 255, 0.07);
    --text: #e8eaf0;
    --text-muted: #8890a4;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 14px;
    --nav-h: 72px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── GRADIENT TEXT ──────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(90deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(255, 106, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--orange);
    background: rgba(255, 106, 0, 0.08);
}

.btn-nav {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 7px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ── TAGS ───────────────────────────────────────────────── */
.tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(255, 106, 0, 0.35);
    background: rgba(255, 106, 0, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
    background: rgba(11, 13, 17, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--dark-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.logo-icon {
    color: var(--orange);
    display: inline-block;
    animation: spin-slow 8s linear infinite;
}

.accent {
    color: var(--orange);
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links a:hover,
.nav-links a.active-nav,
.nav-links a.current-menu-item {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active-nav::after,
.nav-links a.current-menu-item::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── SUBPAGE OVERRIDES ──────────────────────────────────── */
body.subpage {
    padding-top: var(--nav-h);
}

body.subpage section:first-of-type {
    padding-top: 80px;
}

body:not(.home) section:first-of-type {
    padding-top: calc(var(--nav-h) + 40px);
}

/* ── HERO ───────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a0d00 0%, var(--dark) 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.glow-left {
    background: rgba(255, 106, 0, 0.18);
    top: -100px;
    left: -200px;
}

.glow-right {
    background: rgba(0, 153, 255, 0.12);
    top: 100px;
    right: -200px;
}

.gear {
    position: absolute;
    font-size: 6rem;
    opacity: 0.04;
    user-select: none;
    animation: spin-slow 20s linear infinite;
}

.gear1 {
    bottom: 10%;
    left: 8%;
    animation-direction: reverse;
    font-size: 10rem;
}

.gear2 {
    top: 20%;
    right: 12%;
    font-size: 7rem;
    animation-duration: 14s;
}

.gear3 {
    bottom: 30%;
    right: 30%;
    font-size: 4rem;
    animation-duration: 10s;
    animation-direction: reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-h);
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

.hero-badge {
    position: absolute;
    bottom: 54px;
    right: 48px;
    z-index: 1;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: pulse-badge 3s ease-in-out infinite;
}

.hero-badge span {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #4eff4e;
    letter-spacing: 0.1em;
}

.hero-badge small {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.3)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 106, 0, 0)
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.scroll-down span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    animation: bounce-arrow 1.6s ease-in-out infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: rotate(45deg) translateY(0)
    }

    50% {
        transform: rotate(45deg) translateY(6px)
    }
}

/* ── SERVICES ───────────────────────────────────────────── */
#services {
    background: var(--dark-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s, box-shadow 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 106, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.65;
}

.service-tag {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.2);
    padding: 3px 10px;
    border-radius: 50px;
}

/* ── WHY US ─────────────────────────────────────────────── */
#why-us {
    background: var(--dark);
}

.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-card-big {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(0, 153, 255, 0.06) 100%);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
}

.why-icon-big {
    font-size: 3rem;
    margin-bottom: 12px;
}

.why-card-big h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card-big p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.why-card-big strong {
    color: var(--orange);
}

.why-cards-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-card-sm {
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s;
}

.why-card-sm:hover {
    border-color: rgba(255, 106, 0, 0.3);
}

.why-card-sm span {
    font-size: 1.2rem;
}

.why-card-sm p {
    color: var(--text-muted);
    margin: 0;
}

.why-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.why-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.check {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── GALLERY ────────────────────────────────────────────── */
#gallery {
    background: var(--dark-2);
}

.gallery-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.gtab {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--dark-border);
    background: var(--dark-3);
    color: var(--text-muted);
    transition: 0.25s;
}

.gtab.active,
.gtab:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.g-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.4s;
}

.g-item.hidden {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    display: none;
}

.g-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.g-item:hover .g-thumb {
    transform: scale(1.06);
}

/* Gallery thumb colors – cinematic mood boards */
.moto1 {
    background: linear-gradient(135deg, #1a1200 0%, #4a2200 40%, #1a0800 100%);
}

.moto2 {
    background: linear-gradient(135deg, #0d0d1f 0%, #1a1a4a 40%, #0a0a1a 100%);
}

.car1 {
    background: linear-gradient(135deg, #0d1f0d 0%, #1a4a1a 40%, #0a1a0a 100%);
}

.car2 {
    background: linear-gradient(135deg, #1f0d1f 0%, #4a1a4a 40%, #1a0a1a 100%);
}

.custom1 {
    background: linear-gradient(135deg, #1f1a0d 0%, #4a3a00 40%, #1a1200 100%);
}

.custom2 {
    background: linear-gradient(135deg, #0d1a1f 0%, #003040 40%, #000d14 100%);
}

/* Gallery thumb icons */
.moto1::after,
.moto2::after,
.car1::after,
.car2::after,
.custom1::after,
.custom2::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    border: 2px solid rgba(255, 106, 0, 0.3);
}

.moto1::before {
    content: '🏍';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.moto2::before {
    content: '🏍';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.car1::before {
    content: '🏎';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.car2::before {
    content: '🚗';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.custom1::before {
    content: '🔩';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.custom2::before {
    content: '⚙';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-overlay span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

/* ── TEAM ───────────────────────────────────────────────── */
#team {
    background: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.25);
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 106, 0, 0.4);
    background-size: cover;
    background-position: center;
}

/* Avatar gradients */
.av1 {
    background: linear-gradient(135deg, #3d1c00, #ff6a00);
}

.av2 {
    background: linear-gradient(135deg, #00224a, #0099ff);
}

.av3 {
    background: linear-gradient(135deg, #1a3300, #55cc00);
}

.av4 {
    background: linear-gradient(135deg, #2d0033, #cc00ff);
}

.team-card h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
#testimonials {
    background: var(--dark-2);
    overflow: hidden;
}

.testi-track-wrap {
    overflow: hidden;
    position: relative;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
    min-width: calc(50% - 12px);
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px;
    flex-shrink: 0;
}

.stars {
    color: #ffd700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 106, 0, 0.3);
}

.av-t1 {
    background: linear-gradient(135deg, #3d1c00, #ff6a00);
}

.av-t2 {
    background: linear-gradient(135deg, #00224a, #0099ff);
}

.av-t3 {
    background: linear-gradient(135deg, #003300, #55cc00);
}

.av-t4 {
    background: linear-gradient(135deg, #2d0033, #cc00ff);
}

.testi-author span {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-border);
    cursor: pointer;
    transition: 0.3s;
}

.testi-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
    background: var(--dark);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 36px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.6;
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.info-item div {
    color: var(--text-muted);
}

.contact-form {
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.form-group select option {
    background: var(--dark-2);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    color: #4eff4e;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px;
    background: rgba(78, 255, 78, 0.07);
    border: 1px solid rgba(78, 255, 78, 0.2);
    border-radius: 8px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
#footer {
    background: var(--dark-2);
    border-top: 1px solid var(--dark-border);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    max-width: 240px;
    line-height: 1.65;
}

.footer-links h5,
.footer-social h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: 0.2s;
    cursor: pointer;
}

.soc:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .why-wrap {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .testi-card {
        min-width: 85%;
    }
}

@media (max-width: 700px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(11, 13, 17, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--dark-border);
        gap: 20px;
        z-index: 999;
    }

    .nav-links.open+.btn-nav {
        display: block;
        margin: 0 24px 16px;
    }

    #hero {
        padding: 120px 0 80px;
    }

    .hero-badge {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .testi-card {
        min-width: 100%;
    }
}