/* KredoSecurity - Premium Dark Theme Stylesheet */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary-gold: #d4af37;
    --primary-gold-light: #f59e0b;
    --primary-gold-dark: #b8960c;
    
    /* Background Colors */
    --bg-dark: #0a0e14;
    --bg-darker: #060911;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-gradient: linear-gradient(135deg, #0a0e14 0%, #111827 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Border Colors */
    --border-color: rgba(212, 175, 55, 0.2);
    --border-glow: rgba(212, 175, 55, 0.5);
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    --card-gradient: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 14, 20, 0.95) 100%);
    
    /* Shadows */
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-light);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-gold-light);
}

/* ===== Utility Classes ===== */
.text-gold {
    color: var(--primary-gold);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-brand span {
    color: var(--primary-gold);
}

.navbar-brand i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.navbar .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition-fast);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--text-primary);
}

.navbar .btn-access {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.navbar .btn-access:hover {
    transform: scale(1.05);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23d4af3715"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="400" cy="400" r="400" fill="url(%23g)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--primary-gold);
}

/* Asset Certificate Card */
.asset-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.asset-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.card-header-custom h5 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.card-header-custom .icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.card-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.card-info-item {
    text-align: left;
}

.card-info-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-info-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.asset-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.asset-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.asset-row:last-child {
    margin-bottom: 0;
}

.asset-row .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.asset-row .value {
    font-weight: 600;
}

.asset-row .value.gold {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-footer-custom .date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-size: 0.85rem;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1f2e 50%, var(--bg-dark) 100%);
    padding: 60px 0;
}

.stat-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-dark);
    position: relative;
}

.feature-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.feature-card h4 {
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-gold);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-link:hover {
    gap: 10px;
}

/* ===== Shipping Section ===== */
.shipping-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 100%);
}

.shipping-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.shipping-feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.shipping-feature h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.shipping-feature p {
    font-size: 0.85rem;
    margin: 0;
}

/* Shipment Card */
.shipment-card {
    background: linear-gradient(145deg, #f5f0e1 0%, #e8dfc9 100%);
    border-radius: 16px;
    padding: 30px;
    color: var(--bg-dark);
}

.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.shipment-header .order-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.shipment-header .order-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.shipment-details {
    margin-bottom: 20px;
}

.shipment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shipment-row:last-child {
    border-bottom: none;
}

.shipment-row .label {
    color: #666;
    font-size: 0.9rem;
}

.shipment-row .value {
    font-weight: 600;
    color: var(--bg-dark);
    text-align: right;
}

.shipment-row .value.large {
    font-size: 1.25rem;
}

.shipment-eta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.eta-badge {
    background: var(--bg-dark);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.in-transit-badge {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    width: 65%;
}

.progress-label {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ===== Tracking Section ===== */
.tracking-section {
    background: var(--bg-dark);
}

.tracker-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tracker-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tracker-location {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.tracker-location .icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.tracker-location .info label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.tracker-location .info span {
    font-weight: 500;
}

.tracker-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.tracker-stat {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.tracker-stat .number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.tracker-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tracking-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.tracking-feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.tracking-feature h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tracking-feature p {
    font-size: 0.85rem;
    margin: 0;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 100%);
}

.step-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 auto 25px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.step-card h4 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
}

/* ===== Security Section ===== */
.security-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.security-feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.security-feature h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.security-feature p {
    font-size: 0.85rem;
    margin: 0;
}

.security-visual {
    position: relative;
}

.security-robot {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.security-robot .play-btn {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.security-robot .play-btn:hover {
    transform: scale(1.1);
}

.protocol-bar {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 20px;
}

.protocol-bar .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.protocol-bar .title {
    font-weight: 600;
    font-size: 0.9rem;
}

.protocol-bar .percentage {
    color: var(--primary-gold);
    font-weight: 700;
}

/* ===== Trust Section ===== */
.trust-section {
    background: linear-gradient(180deg, #0d1117 0%, var(--bg-dark) 100%);
}

.trust-badge {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.trust-badge.iso::before { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.trust-badge.gdpr::before { background: linear-gradient(90deg, #10b981, #34d399); }
.trust-badge.soc::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.trust-badge.blockchain::before { background: linear-gradient(90deg, #ec4899, #f472b6); }

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.badge-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.trust-badge.iso .badge-label { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.trust-badge.gdpr .badge-label { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.trust-badge.soc .badge-label { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.trust-badge.blockchain .badge-label { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

.trust-badge h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.trust-badge .check {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1f2e 50%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.cta-section h2 {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-badge i {
    color: var(--primary-gold);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand h4 i {
    color: var(--primary-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
}

.footer h5 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info li i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 25px;
}

.footer-bottom .legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom .legal-links a:hover {
    color: var(--primary-gold);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .asset-card {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar .nav-link {
        padding: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .card-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tracker-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
