/* ============================================================
   🎨 TRENDHUB - MASTER STYLESHEET
   ✏️ EDIT: Look for EDIT comments to customize anything
   ============================================================ */


/* ============================================================
   📦 FONTS
   ✏️ EDIT: Visit fonts.google.com to choose different fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');


/* ============================================================
   🎯 VARIABLES — Change here = updates everywhere
   ✏️ EDIT: These are your master color and style controls
   ============================================================ */
:root {
    --color-bg:           #0a0a0a;
    --color-bg-card:      #111111;
    --color-bg-nav:       rgba(10,10,10,0.95);
    --color-accent:       #D4A017;
    --color-accent-hover: #f0b429;
    --color-text:         #ffffff;
    --color-text-muted:   #999999;
    --color-border:       #222222;
    --font-heading:       'Bebas Neue', sans-serif;
    --font-body:          'Space Grotesk', sans-serif;
    --section-padding:    100px 5%;
    --border-radius:      12px;
    --transition-fast:    0.2s ease;
    --transition-normal:  0.4s ease;
    --transition-slow:    0.8s ease;
}


/* ============================================================
   🔄 RESET
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}


/* ============================================================
   🔤 TYPOGRAPHY
   ✏️ EDIT: Change font sizes here
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 65ch;
}

.accent {
    color: var(--color-accent);
}


/* ============================================================
   🧭 NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-normal);
    height: 80px;
    overflow: visible;
}

.navbar.scrolled {
    padding: 14px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 150px;
    width: auto;
    display: block;
}

.nav-logo span {
    color: var(--color-text);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}


/* ============================================================
   🦸 HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Hero badge — fades in from top */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease 0.2s both;
}



.hero-sub {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.1s both;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite,
               fadeInUp 0.8s ease 1.5s both;
    opacity: 0;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-10px); }
}


/* ============================================================
   🔘 BUTTONS
   ✏️ EDIT: Change padding, colors, border-radius
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-accent);
    color: #000000;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.1);
}


/* ============================================================
   💬 FLOATING QUOTE BUTTON
   ✏️ EDIT: Change bottom/right to reposition
   ============================================================ */
.quote-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--color-accent);
    color: #000;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatBtn 3s ease-in-out infinite;
}

.quote-float:hover {
    background: var(--color-accent-hover);
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.6);
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}


/* ============================================================
   📐 SECTIONS
   ============================================================ */
section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

/* Animated underline on section tags */
.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 23px;
    background: var(--color-accent);
    transition: width 1s ease;
}

.section-tag.in-view::after {
    width: 100%;
}

.section-title {
    color: var(--color-text);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.05rem;
    max-width: 550px;
}

/* Gold animated line divider */
.gold-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    margin: 20px 0;
    transition: width 1s ease;
    border-radius: 2px;
}

.gold-line.in-view {
    width: 120px;
}


/* ============================================================
   🃏 CARDS
   ============================================================ */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: transform 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold shimmer line that slides across top of card on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--color-accent),
        transparent
    );
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6),
                0 0 0 1px rgba(212, 160, 23, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%   { transform: scale(1) rotate(0deg); }
    30%  { transform: scale(1.3) rotate(-8deg); }
    60%  { transform: scale(0.9) rotate(4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.card-title {
    color: var(--color-text);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ============================================================
   🏗️ GRIDS
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* ============================================================
   ✨ SCROLL ANIMATIONS
   Elements animate in when scrolled into view
   ============================================================ */

/* Fade up */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Slide from left */
.animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Slide from right */
.animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Scale up */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Triggered state — becomes visible */
.animate-up.in-view,
.animate-left.in-view,
.animate-right.in-view,
.animate-scale.in-view {
    opacity: 1;
    transform: none;
}

/* Stagger delays for card sequences */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ============================================================
   📊 STATS BAR
   ============================================================ */
.stats-bar {
    background: #0d0d0d;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

/* Vertical divider between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-accent);
    margin-bottom: 8px;
    line-height: 1;
    /* ✏️ EDIT: Change text-shadow color for different glow */
    text-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    max-width: none;
}


/* ============================================================
   🛠️ SERVICES SECTION
   ============================================================ */
.services-preview {
    background: var(--color-bg);
    position: relative;
}

/* Subtle grid pattern background */
.services-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}


/* ============================================================
   🎯 WHY TRENDHUB SECTION
   ============================================================ */
.why-us {
    background: #0c0c0c;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Decorative gold orb */
.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(212, 160, 23, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.why-list li:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-border);
}

.why-list li i {
    color: var(--color-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.why-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Animated corner accents on placeholder */
.why-image-placeholder::before,
.why-image-placeholder::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--color-accent);
    border-style: solid;
    transition: var(--transition-normal);
}

.why-image-placeholder::before {
    top: 15px;
    left: 15px;
    border-width: 2px 0 0 2px;
}

.why-image-placeholder::after {
    bottom: 15px;
    right: 15px;
    border-width: 0 2px 2px 0;
}

.why-image-placeholder:hover::before,
.why-image-placeholder:hover::after {
    width: 50px;
    height: 50px;
}

.why-image-placeholder:hover {
    border-color: rgba(212, 160, 23, 0.3);
}

.placeholder-inner {
    text-align: center;
    color: var(--color-text-muted);
    z-index: 1;
}

.placeholder-inner i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    opacity: 0.4;
}

.placeholder-inner p {
    font-size: 1rem;
    max-width: none;
}

.placeholder-inner small {
    font-size: 0.75rem;
    opacity: 0.4;
}


/* ============================================================
   📰 NEWS SECTION
   ============================================================ */
.news-preview {
    background: #0d0d0d;
}

.news-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
}

/* Animated bottom border on hover */
.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
    transition: width 0.5s ease;
}

.news-card:hover::after {
    width: 100%;
}

.news-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.news-card-image {
    width: 100%;
    height: 420px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-image-placeholder {
    font-size: 3rem;
    opacity: 0.15;
}

.news-card-body {
    padding: 30px;
}

.news-card-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.news-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(212, 160, 23, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.news-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.news-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.news-card:hover .news-card-title {
    color: var(--color-accent);
}

.news-card-summary {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: none;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap var(--transition-fast);
}

.news-read-more:hover {
    gap: 12px;
}


/* ============================================================
   🎓 FSI TEASER
   ============================================================ */
.fsi-teaser {
    background: linear-gradient(135deg,
        #001233 0%,
        #001f5b 30%,
        #0a0a0a 70%
    );
    border-top: 1px solid rgba(0, 31, 91, 0.5);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated pulsing orb behind FSI section */
.fsi-teaser::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(0, 31, 91, 0.4) 0%,
        transparent 70%
    );
    animation: fsiPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fsiPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.fsi-teaser-inner {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fsi-teaser p {
    margin: 0 auto;
    font-size: 1.05rem;
    max-width: 600px;
}

/* FSI quick stats row */
.fsi-quick-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.fsi-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.fsi-stat:hover {
    color: var(--color-text);
}

.fsi-stat i {
    font-size: 1.8rem;
    color: var(--color-accent);
    transition: transform var(--transition-fast);
}

.fsi-stat:hover i {
    transform: scale(1.2);
}


/* ============================================================
   📞 CONTACT TEASER
   ============================================================ */
.contact-teaser {
    text-align: center;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative gold circle */
.contact-teaser::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(212, 160, 23, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.contact-teaser > div {
    position: relative;
    z-index: 1;
}

.contact-teaser p {
    margin: 15px auto 0;
    font-size: 1.05rem;
}


/* ============================================================
   🦶 FOOTER
   ============================================================ */
footer {
    background: #050505;
    border-top: 1px solid var(--color-border);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand .nav-logo img {
    height: 1px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.footer-brand > img {
    height: 200px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
    padding-left: 0;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    max-width: none;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-3px);
}


/* ============================================================
   🎬 KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   📱 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4       { grid-template-columns: repeat(2, 1fr); }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
    .why-grid     { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px 5%; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        font-size: 1.2rem;
        z-index: 999;
    }

    .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 100px 40px 40px;
    overflow-y: auto;
}
    .nav-toggle      { display: flex; }

    .grid-3,
    .grid-2          { grid-template-columns: 1fr; }

    .hero-buttons    { flex-direction: column; align-items: center; }

    .footer-grid     { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom   { flex-direction: column; text-align: center; }

    .stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }

    .fsi-quick-stats { gap: 30px; }

    .quote-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .card          { padding: 25px; }
    .stats-grid    { grid-template-columns: 1fr; }
    .fsi-quick-stats { gap: 20px; }
}