/* ========================================
   COMPACT, LIGHT, BRAND-FOCUSED AWWWARDS UI
   No huge gaps, no massive fonts, brand colors
   ======================================== */

:root {
    /* Brand Colors */
    --brand-blue: #161455;
    --brand-yellow: #ffd400;
    --brand-yellow-hover: #e5be00;
    
    /* Light Theme Palette */
    --bg-main: #ffffff;
    --bg-alt: #f4f6f9;
    --text-dark: #0f172a;
    --text-muted: #475569;
    
    /* Layout Variables */
    --compact-padding: 40px;
    --compact-gap: 20px;
    --card-radius: 12px;
    
    /* Soft premium shadows */
    --shadow-sm: 0 2px 8px rgba(22, 20, 85, 0.05);
    --shadow-md: 0 10px 30px rgba(22, 20, 85, 0.08);
    --shadow-hover: 0 15px 40px rgba(22, 20, 85, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Compact but elegant */
.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(22, 20, 85, 0.06);
    color: var(--brand-blue);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Buttons */
.btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-compact:hover {
    background: var(--brand-yellow);
    color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 212, 0, 0.4);
}
.btn-compact-outline {
    background: transparent;
    border: 1.5px solid var(--brand-blue);
    color: var(--brand-blue);
}
.btn-compact-outline:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* ========================================
   HERO SECTION - COMPACT & CINEMATIC
   ======================================== */
.hero-compact {
    position: relative;
    height: 400px; /* Reduced height, no 100vh */
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    margin-bottom: var(--compact-padding);
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}
.hero-slide {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(22, 20, 85, 0.9) 0%, rgba(22, 20, 85, 0.4) 60%, transparent 100%);
    z-index: 1;
}
.hero-content-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-text {
    max-width: 500px;
    color: #fff;
}
.hero-text h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}
.hero-text h1 span {
    color: var(--brand-yellow);
}
.hero-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.hero-actions {
    display: flex;
    gap: 12px;
}

/* ========================================
   TICKER & QUICK ACTIONS - DENSE
   ======================================== */
.action-strip-compact {
    display: flex;
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: -60px; /* Slight overlap */
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.04);
}
.ticker-compact {
    flex: 1;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.ticker-head {
    background: var(--brand-blue);
    color: var(--brand-yellow);
    padding: 0 16px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.ticker-flow {
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-block;
    animation: marqueeFast 25s linear infinite;
}
.ticker-inner span {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 24px;
}
.ticker-inner strong {
    color: var(--brand-blue);
}
@keyframes marqueeFast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.quick-links-compact {
    display: flex;
}
.qlink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 600;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 50px;
}
.qlink:last-child { border-right: none; }
.qlink:hover {
    background: var(--bg-alt);
    color: var(--brand-yellow-hover);
}
.qlink i { font-size: 14px; }
.qlink.highlight {
    background: rgba(255, 212, 0, 0.1);
}
.qlink.highlight:hover { background: rgba(255, 212, 0, 0.2); }

/* ========================================
   SERVICES - CLEAN MICRO-INTERACTIONS
   ======================================== */
.services-section {
    padding: var(--compact-padding) 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--compact-gap);
}
.service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--card-radius);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(22, 20, 85, 0.15);
    transform: translateY(-4px);
}
.scard-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.scard-icon {
    width: 40px; height: 40px;
    background: var(--bg-alt);
    color: var(--brand-blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.service-card:hover .scard-icon {
    background: var(--brand-blue);
    color: var(--brand-yellow);
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0;
}
.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex: 1;
}
.scard-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    display: flex; align-items: center; gap: 4px;
    width: fit-content;
}
.service-card:hover .scard-link {
    color: var(--brand-yellow-hover);
    gap: 8px;
}

/* ========================================
   ABOUT - COMPACT 2 COLUMN
   ======================================== */
.about-section {
    padding: var(--compact-padding) 0;
    background: var(--bg-alt);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-images {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
}
.about-images img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-stats-overlay {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex; gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.stat-mini h4 { font-size: 18px; font-weight: 800; color: var(--brand-blue); margin: 0; }
.stat-mini span { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }

.about-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.about-features li {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex; align-items: center; gap: 6px;
}
.about-features li i { color: #10b981; font-size: 14px; }

/* ========================================
   NETWORK - ELEGANT GRID
   ======================================== */
.network-section {
    padding: var(--compact-padding) 0;
}
.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--compact-gap);
}
.network-card {
    height: 180px;
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.network-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.network-card:hover img { transform: scale(1.05); }
.net-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 20, 85, 0.9) 0%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px;
}
.net-overlay h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0; }
.net-overlay span { color: var(--brand-yellow); font-size: 11px; font-weight: 600; }

/* ========================================
   CONTACT CTA - COMPACT BANNER
   ======================================== */
.cta-banner {
    background: var(--brand-blue);
    border-radius: var(--card-radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--compact-padding);
    box-shadow: var(--shadow-md);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-text h2 {
    color: #fff; font-size: 20px; font-weight: 800; margin: 0 0 4px 0;
}
.cta-banner-text p {
    color: rgba(255,255,255,0.7); font-size: 13px; margin: 0;
}
.cta-links {
    display: flex; gap: 12px;
}
.cta-link {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px; font-weight: 600;
    transition: var(--transition);
}
.cta-link:hover {
    background: var(--brand-yellow);
    color: var(--brand-blue);
}
.cta-link.emergency { background: #dc2626; border: none; }
.cta-link.emergency:hover { background: #ef4444; color: #fff; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .action-strip-compact { flex-direction: column; margin-top: 0; border-radius: 0; border-left: none; border-right: none; }
    .ticker-compact { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .quick-links-compact { width: 100%; justify-content: space-between; }
    .qlink { flex: 1; justify-content: center; font-size: 11px; padding: 0 5px; }
    
    .services-grid, .about-grid, .network-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
}
