/* =========================================
   ARAB AD — INDUSTRIAL DIRECTORY
   Sophisticated Corporate Design System
   ========================================= */

/* ---- TOKENS ---- */
:root {
    --navy: #0b1d38;
    --navy-mid: #132a50;
    --navy-light: #1a3a68;
    --gold: #b8881a;
    --gold-light: #d4a431;
    --gold-pale: #f7f2e8;
    --gold-muted: #ede4d0;
    --gold-glow: rgba(184, 136, 26, 0.14);
    --cool-50: #f8f9fb;
    --cool-100: #f0f2f5;
    --cool-200: #e2e6ec;
    --cool-300: #c8cedb;
    --cool-400: #96a0b3;
    --cool-600: #4e5a6e;
    --cool-700: #37424f;
    --cool-900: #111921;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.35s var(--ease);
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(184, 136, 26, 0.18);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--cool-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* ---- LAYOUT ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TYPOGRAPHY TOKENS ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    flex-shrink: 0;
}

.section-label.light {
    color: var(--gold-light);
}

.section-label.light::before {
    background: var(--gold-light);
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-sub {
    font-size: 22px;
    font-weight: 500;
    color: var(--cool-600);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   HEADER
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 100px;
    display: flex;
    align-items: center;
    background: var(--white);
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}


#header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 80px;
    box-shadow: 0 1px 0 var(--cool-200), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 701px) {
    .header-wrap {
        align-items: flex-end;
    }

    .logo {
        margin-left: 70px;
    }

    #main-nav {
        margin-bottom: 8px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 73px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition);
}

#header.scrolled .logo-img {
    height: 59px;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

#main-nav a {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--transition);
}

#main-nav a:not(.nav-cta):hover {
    background: var(--cool-100);
    color: var(--gold);
}

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--navy-mid) !important;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(184, 136, 26, 0.03) 0%, transparent 40%),
        var(--cool-50);
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out both 0.2s;
}


.mobile-break {
    display: none;
}

.hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    animation: fadeUp 0.8s ease-out both 0.3s;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-sub {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 440px;
    line-height: 1.8;
    animation: fadeUp 0.8s ease-out both 0.4s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease-out both 0.5s;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white);
    border: 1px solid var(--cool-200);
    border-radius: var(--radius-lg);
    padding: 22px 0;
    box-shadow: var(--shadow-sm);
    width: 100%;
    animation: fadeUp 0.8s ease-out both 0.6s;
}


.stat {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
}

.stat span {
    font-size: 13px;
    color: var(--cool-700);
    font-weight: 600;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--cool-200);
}

/* Hero Image Placeholder */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 92%;
    height: auto;
    transition: width var(--transition);
    animation: fadeInScale 1s ease-out both 0.2s;
}


.hero-img-placeholder {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3.2;
    background: var(--cool-100);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--cool-300);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition);
}

.hero-img-placeholder i {
    font-size: 52px;
    color: var(--cool-300);
    position: relative;
    z-index: 1;
}

.hero-img-placeholder span {
    font-size: 16px;
    font-weight: 700;
    color: var(--cool-400);
    position: relative;
    z-index: 1;
}

.hero-img-placeholder small {
    font-size: 13px;
    color: var(--cool-400);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.hero-img-placeholder:hover {
    border-color: var(--gold);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(11, 29, 56, 0.2);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-main:hover {
    background: var(--navy-mid);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(11, 29, 56, 0.2);
    color: var(--white);
}

.btn-main.light {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-main.light:hover {
    background: var(--cool-50);
    transform: translateY(-2px);
    color: var(--navy);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--cool-700);
    padding: 14px 22px;
    border: 1.5px solid var(--cool-200);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-fb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877f2;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.22);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-fb:hover {
    background: #0a66d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.28);
    color: var(--white);
}

/* =========================================
   INTRO STRIP
   ========================================= */
.intro-strip {
    position: relative;
    background: var(--navy);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 3px solid var(--gold);
    overflow: hidden;
}


.intro-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
}

.intro-strip .container {
    position: relative;
    z-index: 1;
}

.intro-strip p {
    color: rgba(255, 255, 255, 1);
    font-size: 32px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.intro-strip strong {
    color: var(--gold-light);
    font-weight: 800;
}

/* =========================================
   PARTS SECTION
   ========================================= */
.parts {
    padding: 100px 0;
    background: var(--cool-50);
}

.parts .section-label,
.parts .section-title {
    text-align: center;
    display: block;
}

.parts .section-label {
    margin-bottom: 12px;
}

.parts .section-title {
    margin-bottom: 52px;
}

.parts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.part-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--cool-200);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.part-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.part-card-header {
    padding: 44px 36px 38px;
    background: linear-gradient(145deg, #0b1d38 0%, #1a3a68 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.part-card-header[data-part="cities"] {
    background: linear-gradient(145deg, #132a50 0%, #1e4080 100%);
}

.part-card-header::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.part-card-header::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: rgba(184, 136, 26, 0.07);
    border-radius: 50%;
}

.part-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(212, 164, 49, 0.15);
    border: 1px solid rgba(212, 164, 49, 0.3);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.part-card-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.part-card-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.part-card-body {
    padding: 32px 36px;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sectors-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cool-700);
    border-bottom: 1px solid var(--cool-100);
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    margin: 1px;
}

.sectors-grid div:hover {
    background: var(--gold-pale);
    color: var(--navy);
    border-color: transparent;
    padding-right: 16px;
}

.sectors-grid div i {
    font-size: 14px;
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cities-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cool-700);
    border-bottom: 1px solid var(--cool-100);
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    margin: 1px;
}

.cities-grid div:hover {
    background: var(--gold-pale);
    color: var(--navy);
    border-color: transparent;
    padding-right: 16px;
}

.cities-grid div i {
    font-size: 9px;
    color: var(--gold);
    flex-shrink: 0;
}

/* =========================================
   BANNER
   ========================================= */
.banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(184, 136, 26, 0.07);
    border-radius: 50%;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-tag {
    display: inline-block;
    background: rgba(212, 164, 49, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(212, 164, 49, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.banner-text h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
}

/* =========================================
   FEATURES
   ========================================= */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

.features-desc {
    font-size: 16px;
    color: var(--cool-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.features-list {
    margin-bottom: 36px;
}

.feature-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-chip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cool-50);
    border: 1.5px solid var(--cool-200);
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--cool-700);
    transition: all var(--transition);
}

.feature-chip:hover {
    background: var(--gold-pale);
    border-color: var(--gold-muted);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.feature-chip i {
    color: var(--gold);
    font-size: 15px;
}

.features-visual {
    position: relative;
}

.features-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fcard {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 1.5px solid var(--cool-200);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.fcard:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-muted);
}

.fcard-mid {
    margin-right: 24px;
}

.fcard-bot {
    margin-right: 48px;
}

.fcard strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
    font-size: 15px;
}

.fcard p {
    font-size: 13px;
    color: var(--cool-400);
}

.fcard-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fcard-icon.amber {
    background: var(--gold);
    color: var(--white);
}

/* =========================================
   GALLERY STRIP (Infinite Carousel)
   ========================================= */
.gallery-strip {
    overflow: hidden;
    background: var(--cool-100);
    padding: 30px 0;
    position: relative;
    direction: ltr;
    /* Force LTR for predictable animation math */
}

.gallery-strip::before,
.gallery-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.gallery-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--cool-100), transparent);
}

.gallery-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--cool-100), transparent);
}

.gallery-track {
    display: flex;
    width: max-content;
    /* Ensure it takes full width of children */
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gitem {
    width: 440px;
    height: 320px;
    flex-shrink: 0;
    margin: 0 10px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cool-200);
    animation: fadeUp 0.8s ease-out both 0.6s;
}

.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gitem:hover img {
    transform: scale(1.06);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .gitem {
        width: 300px;
        height: 210px;
    }

    .gallery-strip {
        padding: 20px 0;
    }
    .gallery-strip::before, .gallery-strip::after { display: none; }
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
    padding: 100px 0;
    background: var(--cool-50);
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.price-card {
    width: 360px;
    background: var(--white);
    border: 1.5px solid var(--cool-200);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cool-300);
}

.price-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.price-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    padding: 10px 22px 6px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.price-top {
    margin-bottom: 32px;
    min-height: 180px;
}


.price-icon {
    width: 60px;
    height: 60px;
    background: var(--cool-100);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--navy);
    margin: 0 auto 18px;
    border: 1.5px solid var(--cool-200);
}

.featured .price-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    border-color: rgba(255, 255, 255, 0.15);
}

.price-top h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.featured .price-top h3 {
    color: var(--white);
}

.price-top p {
    font-size: 16px;
    color: var(--cool-600);
    font-weight: 500;
}

.featured .price-top p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.price-amount {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.price-old {
    font-size: 22px;
    color: var(--cool-600);
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.8;
}

.featured .price-old {
    color: var(--white);
    opacity: 0.6;
}


.price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
}


.price-amount strong {
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.featured .price-amount strong {
    color: var(--white);
}

.price-amount span {
    font-size: 18px;
    font-weight: 600;
    color: var(--cool-400);
}

.price-btn {
    display: block;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    background: var(--cool-100);
    color: var(--navy);
    transition: all var(--transition);
    border: 1.5px solid var(--cool-200);
}

.price-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 29, 56, 0.15);
}

.featured .price-btn {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.featured .price-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 164, 49, 0.25);
}

/* =========================================
   FOOTER / CONTACT
   ========================================= */
footer {
    background: var(--cool-50);
    padding: 80px 0 0;
    color: var(--cool-600);
    border-top: 1px solid var(--cool-200);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

footer .section-label { color: var(--navy); }
footer .section-label::before { background: var(--navy); }

footer h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
}

/* Form */
.field-group {
    margin-bottom: 18px;
}

.field-group label {
    display: block;
    color: var(--cool-700);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.field-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.field-wrap>i {
    position: absolute;
    right: 16px;
    color: var(--cool-400);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.field-wrap input,
.field-wrap select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    background: var(--white);
    border: 1.5px solid var(--cool-200);
    border-radius: var(--radius-md);
    color: var(--navy);
    font-family: inherit;
    font-size: 18px;
    text-align: right;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.field-wrap input::placeholder {
    color: var(--cool-400);
}

.field-wrap select {
    cursor: pointer;
}

.field-wrap select option {
    background: var(--white);
    color: var(--navy);
}

.field-wrap input:focus,
.field-wrap select:focus {
    outline: none;
    border-color: var(--gold-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 164, 49, 0.1);
}

.select-arrow {
    position: absolute;
    left: 16px;
    color: var(--cool-400);
    font-size: 11px;
    pointer-events: none;
    z-index: 1;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact */
.company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-items li { display: flex; align-items: center; gap: 16px; font-size: 17px; }

.ci-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 164, 49, 0.1);
    border: 1px solid rgba(212, 164, 49, 0.18);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-items a {
    color: var(--navy);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-items a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 32px 0;
    text-align: center;
    font-size: 13px;
    color: var(--cool-600);
    border-top: 1px solid var(--cool-200);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 48px;
    }

    .features-layout {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 160px 0 70px;
    }

    .hero::before {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .hero-img-placeholder {
        max-width: 380px;
    }

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

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

    .features-visual {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .features-card-stack {
        transform: scale(0.9);
    }

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

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


    .fcard-mid,
    .fcard-bot {
        margin-right: 0;
    }
}

@media (max-width: 700px) {
    .mobile-break { display: block; }
    body { line-height: 1.35; font-size: 14px; }
    .section-title { line-height: 1.1; margin-bottom: 8px; font-size: 22px; }
    .section-sub { margin-bottom: 20px; font-size: 15px; line-height: 1.35; }
    .section-label { margin-bottom: 10px; font-size: 13px; gap: 6px; }
    .section-label::before { width: 30px; height: 2px; }

    .hero { padding: 170px 0 30px; }
    .hero h1 { line-height: 1.1; margin-bottom: 8px; font-size: 28px; }
    .hero-sub { line-height: 1.4; margin-bottom: 18px; font-size: 14px; }
    .hero-actions { 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px; 
    }
    .hero-actions > * { width: 100%; justify-content: center; padding: 12px 20px; }

    .intro-strip { min-height: 200px; padding: 20px 16px; }
    .intro-strip p { font-size: 24px; line-height: 1.2; font-weight: 700; }

    .features-desc { line-height: 1.4; margin-bottom: 14px; font-size: 14px; }
    .features { padding: 40px 0; }
    .parts { padding: 40px 0; }
    .pricing { padding: 40px 0; }



    #header {
        height: auto !important;
        padding: 15px 0;
    }

    #header.scrolled {
        height: auto !important;
        padding: 10px 0;
    }

    #header .container {
        padding: 0 8px !important;
    }

    .header-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: stretch !important;
    }

    .container {
        padding: 0 16px;
    }

    .logo {
        justify-content: center;
    }

    .menu-btn {
        display: none !important;
    }

    #main-nav {
        display: block !important;
        width: 100% !important;
        margin-top: 5px;
    }

    #main-nav ul {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }

    #main-nav li {
        flex: 0 0 auto;
        text-align: center;
    }

    #main-nav a {
        padding: 6px 4px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        display: inline-block;
        white-space: nowrap;
    }

    .nav-cta {
        padding: 6px 18px !important;
        border-radius: 4px !important;
        font-size: 13px !important;
    }

    #main-nav li a.nav-cta {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

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




    .hero-stats {
        flex-direction: row !important;
        width: 100%;
        justify-content: space-around;
        gap: 0;
        padding: 18px 0;
        border-radius: var(--radius-lg);
    }

    .stat {
        padding: 0 4px;
    }

    .stat strong {
        font-size: 18px !important;
    }

    .stat span {
        font-size: 12px !important;
        color: var(--navy) !important;
        font-weight: 800 !important;
        white-space: nowrap;
    }

    .stat-divider {
        height: 28px;
        display: block;
        opacity: 0.6;
    }

    .cities-grid, .sectors-grid { grid-template-columns: 1fr 1fr; gap: 2px 24px; }
    .cities-grid div, .sectors-grid div { padding: 4px 0; font-size: 14px; line-height: 1.2; align-items: flex-start; }
    .sectors-grid div i { font-size: 12px; width: 16px; margin-top: 3px; }
    .cities-grid div i { font-size: 8px; margin-top: 5px; }


    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .price-card { width: 100%; max-width: 380px; padding: 32px 24px; }

    .price-top { margin-bottom: 12px; min-height: auto; }
    .price-amount { margin-bottom: 15px; }
    .price-amount strong { font-size: 32px; }
    .price-icon { width: 42px; height: 42px; margin-bottom: 10px; font-size: 18px; }


    .gallery-track {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .gitem {
        min-width: 220px;
        flex: none;
    }

    .feature-row {
        flex-direction: column;
    }
}