/* =========================================================
   Araz Electric INC. — Site Styles
   Theme: Black & Yellow
   ========================================================= */

:root {
    --black: #0d0d0d;
    --black-soft: #1a1a1a;
    --black-card: #161616;
    --yellow: #ffcc00;
    --yellow-bright: #ffdd33;
    --yellow-deep: #e6b800;
    --gray: #999999;
    --gray-light: #cfcfcf;
    --white: #ffffff;
    --border: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--yellow); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--yellow-bright); }

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

/* ---------- TOP BAR ---------- */
.topbar {
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray-light);
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a { color: var(--gray-light); }
.topbar a:hover { color: var(--yellow); }
.topbar .lic { color: var(--yellow); font-weight: 600; letter-spacing: .5px; }

/* ---------- NAVIGATION ---------- */
.nav {
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 96px; width: auto; }
@media (max-width: 768px) {
    .nav-inner { padding: 16px 20px; }
    .nav-logo img { height: 72px; }
}
.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--white);
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    transition: all .2s ease;
}
.nav-links a:hover { background: var(--yellow); color: var(--black); }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active:hover { color: var(--black); }
.nav-cta {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
}
.nav-cta:hover { background: var(--yellow-bright) !important; }

/* Hamburger toggle (mobile only) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.nav-toggle-bars {
    display: inline-block;
    width: 22px;
    height: 16px;
    position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars span { top: 7px; }
.nav-toggle-bars::after { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 7px; transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span { opacity: 0; }

/* ---------- HERO ---------- */
.hero {
    background:
        linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(13,13,13,.7) 100%),
        radial-gradient(circle at 20% 50%, rgba(255,204,0,.15) 0%, transparent 50%),
        var(--black);
    padding: 88px 24px;
    border-bottom: 1px solid var(--border);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}
.hero-copy { text-align: left; }
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,204,0,.12);
    color: var(--yellow);
    border: 1px solid rgba(255,204,0,.35);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}
.hero h1 .highlight { color: var(--yellow); }
.hero p {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-microtrust {
    margin-top: 28px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--gray-light);
    font-size: .92rem;
}
.hero-microtrust span strong { color: var(--white); }

/* Hero featured image card (right column) */
.hero-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.85) 100%);
    pointer-events: none;
}
.hero-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
}
.hero-card-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: var(--white);
    z-index: 2;
}
.hero-card-caption strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--white);
}
.hero-card-caption span {
    color: var(--gray-light);
    font-size: .85rem;
}

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-microtrust { justify-content: center; }
    .hero-card { max-width: 460px; margin: 0 auto; aspect-ratio: 16/10; }
}

/* ---------- TRUST BAND (under hero, above services) ---------- */
.trust-band {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
}
.trust-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.3;
    border-left: 2px solid var(--yellow);
    padding-left: 14px;
}
.trust-item:first-child { border-left-color: var(--yellow); }
.trust-item strong { color: var(--white); font-size: 15px; display: block; margin-bottom: 2px; }
.trust-item span { color: var(--gray); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.trust-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--yellow);
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}
@media (max-width: 900px) {
    .trust-band-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .trust-band-inner { grid-template-columns: 1fr; }
    .trust-item { padding-left: 10px; }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-bright); color: var(--black); transform: translateY(-2px); }
.btn-outline { border-color: var(--yellow); color: var(--yellow); background: transparent; }
.btn-outline:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--black-soft); }

.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
    color: var(--yellow);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}
.section-head p {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- GRID ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,204,0,.25);
}
.card:hover::before { transform: scaleX(1); }
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.card-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}
.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.card p { color: var(--gray-light); font-size: .98rem; }
.card ul { margin-top: 14px; padding-left: 18px; color: var(--gray-light); }
.card ul li { margin-bottom: 6px; font-size: .95rem; }

/* ---------- SPLIT (image + text) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.split-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}
.split-text p { color: var(--gray-light); margin-bottom: 16px; font-size: 1.05rem; }
.split-img {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FEATURE LIST ---------- */
.features {
    list-style: none;
    margin-top: 24px;
}
.features li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    color: var(--gray-light);
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
}
.features li:last-child { border-bottom: none; }
.features li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 22px;
}

/* ---------- STATS ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
    margin-top: 40px;
}
.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--yellow);
    display: block;
    line-height: 1;
}
.stat-label {
    color: var(--gray-light);
    margin-top: 8px;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--yellow);
    color: var(--black);
    padding: 50px 24px;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-band p { font-size: 1.1rem; margin-bottom: 24px; }
.cta-band .btn-dark {
    background: var(--black);
    color: var(--yellow);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
}
.cta-band .btn-dark:hover { background: #222; transform: translateY(-2px); }

/* ---------- CONTACT FORM ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
.contact-info {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
}
.contact-info h3 {
    color: var(--yellow);
    font-size: 1.3rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.contact-row .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}
.contact-row .value {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-word;
}
.contact-row .value a { color: var(--white); }
.contact-row .value a:hover { color: var(--yellow); }

.form {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    color: var(--gray-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.gallery-item {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    transition: all .25s ease;
}
.gallery-item:hover { border-color: var(--yellow); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PROJECT CASE STUDY ---------- */
.project-case {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}
.project-case.featured {
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow);
}
.project-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}
.project-head h3 {
    font-size: 26px;
    color: var(--white);
    margin: 0;
}
.project-tag {
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    align-self: center;
}
.project-meta {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.project-desc {
    color: var(--gray-light);
    margin-bottom: 24px;
    max-width: 800px;
}
.project-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.scope-item {
    background: var(--black-soft);
    border-left: 3px solid var(--yellow);
    padding: 12px 16px;
    border-radius: 4px;
}
.scope-label {
    color: var(--gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.scope-value { color: var(--white); font-weight: 600; font-size: 14px; }
.phase-label {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 24px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.photo-grid a {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all .2s ease;
}
.photo-grid a:hover { border-color: var(--yellow); transform: scale(1.02); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.project-pending {
    background: var(--black-soft);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 24px;
    color: var(--gray);
    text-align: center;
    font-size: 14px;
}

/* ---------- REVIEWS SLIDESHOW ---------- */
.reviews-stage {
    position: relative;
    max-width: 880px;
    margin: 32px auto 0;
    display: flex;
    align-items: stretch;
    gap: 16px;
}
.rev-card {
    flex: 1;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: 10px;
    padding: 32px 36px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rev-stars {
    color: var(--yellow);
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 14px;
}
.rev-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.rev-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
.rev-name {
    color: var(--gray-light);
    font-weight: 600;
    font-size: 14px;
}
.rev-source {
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}
.rev-arrow {
    background: var(--black-card);
    border: 1px solid var(--border);
    color: var(--yellow);
    font-size: 32px;
    line-height: 1;
    width: 48px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    flex-shrink: 0;
}
.rev-arrow:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.rev-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.rev-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: all .2s ease;
}
.rev-dot.active { background: var(--yellow); transform: scale(1.3); }
.rev-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 36px;
}
.platform-btn {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 16px;
    text-align: center;
    color: var(--white);
    transition: all .2s ease;
    text-decoration: none;
    display: block;
}
.platform-btn:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    color: var(--white);
}
.platform-btn strong {
    display: block;
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: .5px;
}
.platform-btn span {
    display: block;
    color: var(--gray-light);
    font-size: 12px;
}
.platform-btn.platform-static { cursor: default; }
.platform-btn.platform-static:hover { border-color: var(--border); transform: none; }
@media (max-width: 600px) {
    .rev-card { padding: 22px 20px; min-height: 280px; }
    .rev-text { font-size: 15px; }
    .rev-arrow { width: 40px; font-size: 26px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 6px; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: var(--yellow);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #050505;
    color: var(--gray-light);
    padding: 60px 24px 24px;
    border-top: 2px solid var(--yellow);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 {
    color: var(--yellow);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: var(--gray-light); font-size: .95rem; }
.footer ul li a:hover { color: var(--yellow); }
.footer-logo img { height: 60px; margin-bottom: 16px; }
.footer-tag { font-size: .95rem; color: var(--gray); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--gray);
    font-size: .85rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom .lic { color: var(--yellow); font-weight: 600; }

/* ---------- BREADCRUMB / PAGE HEADER ---------- */
.page-header {
    background:
        linear-gradient(135deg, rgba(0,0,0,.9) 0%, rgba(13,13,13,.75) 100%),
        radial-gradient(circle at 80% 50%, rgba(255,204,0,.18) 0%, transparent 50%),
        var(--black);
    padding: 80px 24px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.page-header h1 .highlight { color: var(--yellow); }
.page-header p { color: var(--gray-light); font-size: 1.1rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        border-bottom: 2px solid var(--yellow);
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 18px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
        pointer-events: none;
    }
    .nav-links.open {
        max-height: 540px;
        opacity: 1;
        padding: 12px 20px 18px;
        pointer-events: auto;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 12px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-links a.nav-cta {
        margin-top: 8px;
        text-align: center;
        border-radius: 4px;
        border-bottom: none;
    }
    .nav { position: sticky; }
    .nav-inner { position: relative; }
    .split { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .section { padding: 60px 20px; }
    .hero { padding: 60px 20px; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .topbar-inner { font-size: 12px; gap: 4px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { text-align: center; }
}

/* ---------- CHAT WIDGET ---------- */
.araz-chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    border: 3px solid var(--black);
    box-shadow: 0 6px 24px rgba(0,0,0,.4);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform .2s, box-shadow .2s;
}
.araz-chat-fab:hover { transform: scale(1.06); box-shadow: 0 8px 28px rgba(255,204,0,.4); }
.araz-chat-fab .araz-chat-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff3b3b;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}
.araz-chat-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 140px);
    background: var(--black);
    border: 1px solid var(--yellow);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: inherit;
}
.araz-chat-panel.open { display: flex; }
.araz-chat-header {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--black);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
}
.araz-chat-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
}
.araz-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    display: block;
    object-fit: contain;
    padding: 4px;
    border: 2px solid var(--black);
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    flex-shrink: 0;
}
.araz-chat-status {
    font-size: 11px;
    font-weight: 500;
    opacity: .75;
    margin-top: 2px;
}
.araz-chat-close {
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
}
.araz-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--black-soft);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.araz-msg {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
    word-wrap: break-word;
}
.araz-msg-bot {
    align-self: flex-start;
    background: #2a2a2a;
    color: var(--gray-light);
    border-bottom-left-radius: 4px;
}
.araz-msg-bot strong { color: var(--yellow); }
.araz-msg-bot a { color: var(--yellow); text-decoration: underline; }
.araz-msg-user {
    align-self: flex-end;
    background: var(--yellow);
    color: var(--black);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}
.araz-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 4px;
}
.araz-quick-btn {
    background: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    padding: 7px 12px;
    border-radius: 18px;
    font-size: 12.5px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, color .15s;
}
.araz-quick-btn:hover { background: var(--yellow); color: var(--black); }
.araz-chat-actions {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: var(--black);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.araz-chat-actions a {
    flex: 1;
    text-align: center;
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.araz-chat-actions a.dark {
    background: transparent;
    color: var(--yellow) !important;
    border: 1px solid var(--yellow);
}
.araz-chat-input-row {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: var(--black);
    flex-shrink: 0;
}
.araz-chat-input {
    flex: 1;
    background: var(--black-soft);
    color: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}
.araz-chat-input:focus { border-color: var(--yellow); }
.araz-chat-send {
    background: var(--yellow);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}
.araz-typing { display: flex; gap: 4px; padding: 6px 14px; align-self: flex-start; }
.araz-typing span {
    width: 7px;
    height: 7px;
    background: var(--gray);
    border-radius: 50%;
    animation: araz-bounce 1.2s infinite;
}
.araz-typing span:nth-child(2) { animation-delay: .15s; }
.araz-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes araz-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: .6; }
    30% { transform: translateY(-6px); opacity: 1; }
}
@media (max-width: 480px) {
    .araz-chat-panel {
        width: calc(100vw - 16px);
        right: 8px;
        bottom: 88px;
        height: calc(100vh - 110px);
    }
    .araz-chat-fab { width: 56px; height: 56px; font-size: 24px; bottom: 16px; right: 16px; }
}
