/* style.css - Ultimate Premium Overhaul */
:root {
    --primary: #c5a059;
    --secondary: #f4e0a1;
    --bg-deep: #050a18;
    --bg-surface: #0a1128;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-main: #ffffff;
    --text-dim: #a0aec0;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f4e0a1 50%, #c5a059 100%);
    --bg-gradient: linear-gradient(180deg, #0a1128 0%, #050a18 100%);
    --shadow-soft: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 10001;
    transition: width 0.1s;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, .nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Global Buttons */
.btn, button.btn, a.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-white);
}

.btn-primary, button.btn-primary, a.btn-primary {
    background: var(--gold-gradient);
    color: #050a18 !important;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    color: #050a18 !important;
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover i, .btn-primary:hover svg {
    transform: translateX(4px) scale(1.1);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline, button.btn-outline, a.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: #050a18 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
header {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 17, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#theme-toggle {
    transition: var(--transition);
}

#theme-toggle:hover {
    transform: rotate(15deg) scale(1.1);
    background: rgba(197, 160, 89, 0.2) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.5);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark-gradient);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050a18 30%, rgba(5, 10, 24, 0.4) 100%);
    z-index: 1;
}

/* Hero Contact Strip */
.hero-contact-strip {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: stretch;
    background: #0a1128;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.hero-contact-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--text-white);
    transition: background 0.3s ease;
    cursor: pointer;
}

.hero-contact-card:hover {
    background: rgba(197, 160, 89, 0.1);
}

.hero-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-contact-card:hover .hero-contact-icon {
    background: rgba(197, 160, 89, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.hero-contact-icon i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.hero-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-contact-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-contact-divider {
    width: 1px;
    background: rgba(197, 160, 89, 0.2);
    margin: 15px 0;
}

@media (max-width: 768px) {
    .hero-contact-strip {
        flex-wrap: wrap;
        position: relative;
        bottom: auto;
    }
    .hero-contact-card {
        flex: 1 1 45%;
        padding: 16px 20px;
    }
    .hero-contact-divider {
        display: none;
    }
    .hero-contact-value {
        font-size: 0.8rem;
        white-space: normal;
    }
}

.page-hero {
    padding: 180px 0 100px;
    background: var(--dark-gradient);
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.7);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1, .page-hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p, .page-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-white);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* 3D Card Hover Effect */
.perspective {
    perspective: 1000px;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gold-gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 2px;
}

.glass-card:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
}

.glass-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 30px rgba(197,160,89,0.2);
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.glass-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover img {
    transform: scale(1.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(197,160,89,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card > * {
    transform: translateZ(30px);
}

.grid {
    display: grid;
    gap: 40px;
    margin: 80px 0;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Partner Ticker */
.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 85px 0;
    background: rgba(5,10,24,0.4);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.ticker-container::before, .ticker-container::after {
    content: '';
    position: absolute;
    top: 0; width: 250px; height: 100%;
    z-index: 2;
}
.ticker-container::before { left: 0; background: linear-gradient(to right, #050a18, transparent); }
.ticker-container::after { right: 0; background: linear-gradient(to left, #050a18, transparent); }

.ticker-wrapper {
    display: flex;
    animation: ticker 50s linear infinite;
    gap: 120px;
    align-items: center;
    width: max-content;
    perspective: 1000px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.ticker-item:hover {
    transform: scale(1.15) rotateY(10deg);
}

.ticker-item img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.6s ease;
}

.ticker-item:hover img {
    filter: grayscale(0) opacity(1);
    drop-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.contact-item {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}

.contact-item i {
    width: 18px;
    height: 18px;
}

/* Market-Style News Ticker */
.market-ticker-bar {
    background: #050a18;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--glass-border);
    border-bottom: 2px solid var(--primary);
    position: relative;
    z-index: 10;
}

.market-ticker-wrapper {
    display: inline-flex;
    animation: marketTicker 65s linear infinite;
    gap: 120px;
}

.market-ticker-item {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.market-ticker-item strong {
    color: var(--primary);
    font-weight: 900;
    font-size: 1rem;
}

.market-ticker-item i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

@keyframes marketTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.market-ticker-bar:hover .market-ticker-wrapper {
    animation-play-state: paused;
}

/* Remove old highlight bar styles */
.contact-ticker-bar { display: none; }

/* ─────────────────────────────────────────
   ROYAL FOOTER
───────────────────────────────────────── */
footer {
    background: #020712;
    position: relative;
    overflow: hidden;
}

/* Radial glow behind footer */
footer::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Gold top border accent */
.footer-top-border {
    height: 2px;
    background: var(--gold-gradient);
    width: 100%;
}

/* Newsletter strip */
.footer-newsletter {
    background: rgba(197, 160, 89, 0.06);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 50px 0;
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.footer-newsletter p {
    color: var(--text-dim);
    margin-top: 5px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(160, 174, 192, 0.5);
}

.newsletter-form button {
    background: var(--gold-gradient);
    border: none;
    padding: 16px 30px;
    color: #050a18;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover { opacity: 0.88; }

/* Main footer body */
.footer-body {
    padding: 80px 0 50px;
    background: #050a18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 60px;
}

/* Footer logo & about blurb */
.footer-brand .footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-brand .footer-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 90%;
}

.footer-social-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Social icons row */
.footer-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.social-icon svg, .social-icon i {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #050a18;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.social-icon:hover img {
    filter: brightness(0) contrast(1.5);
}

/* Certification badges */
.footer-certs {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

/* Column headings */
.footer-col h4 {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-col a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-col a:hover::before { opacity: 1; transform: translateX(0); }

/* Contact info rows */
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact-icon svg { width: 16px; height: 16px; }

.footer-contact-row p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

.footer-contact-row p strong {
    color: var(--text-white);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-inner p {
    color: var(--text-dim);
    font-size: 0.83rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--primary); }

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .footer-newsletter-inner { flex-direction: column; }
    .newsletter-form { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-certs { justify-content: center; }
    .footer-contact-row { flex-direction: column; align-items: center; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
}


/* Mobile Navigation Overlay */
.menu-toggle {
    display: none;
    z-index: 1001;
}

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 17, 40, 0.95);
        backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 2.2rem; margin-bottom: 30px; }
    .grid { gap: 15px; margin: 40px 0; }
    section { padding: 80px 0; }
}

@media (max-width: 500px) {
    .container { padding: 0 20px; }
    .hero { 
        text-align: center; 
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 0;
        height: auto;
        min-height: 100vh;
    }
    .hero-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .hero h1 { 
        font-size: 2.6rem; 
        line-height: 1.2;
    }
    .hero h1 br { display: none; }
    .hero p { 
        margin: 0 auto 30px; 
        font-size: 1rem;
        line-height: 1.5;
    }
    .hero::after { background: linear-gradient(0deg, rgba(5, 10, 24, 0.9) 0%, rgba(5, 10, 24, 0.7) 100%); }
    .btn { width: 100%; justify-content: center; }
    .hero div[style*="display: flex"] { 
        flex-direction: column; 
        width: 100%;
        align-items: center;
        gap: 15px !important;
    }
    .hero-contact-strip {
        flex-direction: column;
        position: relative;
        margin-top: 0;
        background: #050a18;
    }
    .hero-contact-card {
        flex: 1 1 100%;
        justify-content: flex-start;
        text-align: left;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding: 20px 30px;
    }
    .hero-contact-card:last-child { border-bottom: none; }
    
    .glass-card { padding: 30px 20px; }
    .section-title { font-size: 2rem; margin-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .nav-logo { font-size: 1.4rem; }
    .ticker-wrapper { gap: 40px; }
    .ticker-item img { height: 30px; }
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item h3 {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

/* Form Styles */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 15px 18px;
    border-radius: 12px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 174, 192, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Timeline (Process) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}

.timeline-item {
    padding: 30px 40px;
    border-left: 2px solid var(--primary);
    position: relative;
    margin-left: 20px;
    background: var(--bg-light);
    margin-bottom: 20px;
    border-radius: 0 20px 20px 0;
    backdrop-filter: blur(10px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    background: var(--primary);
    border-radius: 50%;
    left: -9px; top: 35px;
}

/* End of file */
