/* ============================================================
   VANGUARD INITIATIVE — styles.css
   ============================================================ */

/* ── Variables ── */
:root {
    --gold:        #c9a84c;
    --gold-light:  #f0c858;
    --gold-dark:   #8b6410;
    --gold-grad:   linear-gradient(135deg, #f5d67a 0%, #c9a84c 50%, #8b6410 100%);
    --bg:          #09090f;
    --bg-2:        #0d0e18;
    --bg-3:        #111220;
    --bg-card:     #13141f;
    --bg-card-2:   #181926;
    --border:      rgba(201, 168, 76, 0.15);
    --border-dim:  rgba(255, 255, 255, 0.06);
    --text:        #f0f0f8;
    --text-muted:  #7a8aaa;
    --text-dim:    #4a566e;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --transition:  0.3s ease;
    --font-head:   'Montserrat', sans-serif;
    --font-body:   'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Utility ── */
.text-gold-gradient {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section { padding: 100px 0; position: relative; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold-grad);
    color: #0a0800;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}
.btn-ghost {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid rgba(201, 168, 76, 0.5);
}
.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.btn-text {
    color: var(--gold);
    padding: 12px 8px;
    font-weight: 500;
}
.btn-text:hover { color: var(--gold-light); }
.btn-lg { padding: 15px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section headers ── */
.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 18px;
}
.section-title.left { text-align: left; }
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.section-desc.left { text-align: left; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dim);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo-wrap {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    flex-shrink: 0;
}
.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-sub {
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.07);
}
.nav-cta { margin-left: auto; flex-shrink: 0; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding: 120px 0 80px;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hero-glow--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.hero-glow--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    bottom: 0; left: -100px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    width: fit-content;
}
.badge-pulse {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 20px 28px;
    width: fit-content;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat-value {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 2px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-dim);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-logo-ring {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-inner {
    width: 180px;
    height: 180px;
    background: #080808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.25), 0 20px 60px rgba(0,0,0,0.6);
}
.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    display: block;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: spin-ring linear infinite;
}
.ring-1 {
    width: 220px; height: 220px;
    border-color: rgba(201, 168, 76, 0.25);
    animation-duration: 20s;
}
.ring-2 {
    width: 270px; height: 270px;
    border-color: rgba(201, 168, 76, 0.12);
    animation-duration: 30s;
    animation-direction: reverse;
}
.ring-3 {
    width: 320px; height: 320px;
    border-color: rgba(201, 168, 76, 0.06);
    animation-duration: 45s;
}
@keyframes spin-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-head);
}
.scroll-bar {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-dark), transparent);
    animation: scroll-bar 2s ease-in-out infinite;
}
@keyframes scroll-bar {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-2); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
    background: var(--bg-card-2);
    border-color: var(--border);
    box-shadow: var(--shadow-gold);
}
.service-card--featured::before { opacity: 1; }

.service-badge-wrap { margin-bottom: 8px; }
.service-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.service-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.35);
}
.service-icon { width: 26px; height: 26px; color: var(--gold); }
.service-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 22px;
}
.service-list {
    flex: 1;
    margin-bottom: 24px;
}
.service-list li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-list li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.service-cta {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.service-cta:hover { color: var(--gold-light); gap: 8px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--bg-3); }
.why-us-glow {
    position: absolute;
    width: 700px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 42px; height: 42px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.why-feature-icon svg { width: 18px; height: 18px; }
.why-feature-text h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.why-feature-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-grad);
}
.stat-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.stat-card-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}
.stat-suffix {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-logo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}
.about-logo {
    width: 100%;
    padding: 40px;
    background: #fff;
    object-fit: contain;
    max-height: 240px;
}
.about-info-block { padding: 0; }
.about-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-top: 1px solid var(--border-dim);
}
.about-info-row span { font-size: 0.82rem; color: var(--text-muted); }
.about-info-row strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-light);
    font-family: var(--font-head);
}
.about-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.about-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-3); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.testimonial-card blockquote {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-head);
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.author-info span { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); }
.contact-glow {
    position: absolute;
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    transition: all var(--transition);
    color: inherit;
}
a.contact-item:hover {
    border-color: var(--border);
    background: var(--bg-card-2);
    transform: translateX(4px);
}
.contact-icon {
    width: 42px; height: 42px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-text span { font-size: 0.75rem; color: var(--text-dim); font-weight: 500; }
.contact-item-text strong { font-size: 0.9rem; color: var(--text); font-weight: 600; margin-top: 2px; }

/* ── Contact Form ── */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { 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: 6px; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    font-family: var(--font-head);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}
.form-group select option { background: var(--bg-card-2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
}
.form-consent {
    padding: 4px 0;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.form-checkbox-mark {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s;
}
.form-checkbox input:checked + .form-checkbox-mark {
    background: var(--gold);
    border-color: var(--gold);
}
.form-checkbox input:checked + .form-checkbox-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #0a0800;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form-checkbox input:focus + .form-checkbox-mark {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-checkbox-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.form-checkbox-text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(201, 168, 76, 0.4);
}
.form-checkbox-text a:hover {
    color: var(--gold-light);
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border-dim);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-dim);
}
.footer-logo-wrap {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-bottom: 18px;
}
.footer-logo { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact-links a {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-contact-links a:hover { color: var(--gold-light); }
.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1.4;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.5s; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-us-stats { grid-template-columns: repeat(4, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 500px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .navbar .nav-container { gap: 0; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(9, 9, 15, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }
    .nav-links.mobile-open .nav-link {
        font-size: 1.3rem;
        padding: 14px 24px;
        letter-spacing: 1px;
    }
    .nav-toggle { z-index: 1001; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-us-stats { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-actions { flex-direction: column; }
    .about-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 0 60px; }
    .hero-stats { width: 100%; padding: 18px 16px; }
    .hero-stat { flex: 1; padding: 0 8px; }
    .hero-stat-value { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.65rem; }
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.7rem; }
}
