@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Palette - Deep Navy based */
    --brand-blue-deep: #0a1122;
    /* Main bg */
    --brand-blue-card: #131b2e;
    /* Card bg */
    --brand-primary: #2faae1;
    /* Cyan Blue */
    --brand-secondary: #e31e24;
    /* Red */

    --text-main: #ffffff;
    --text-muted: #94a3b8;

    --gradient-brand: linear-gradient(135deg, var(--brand-secondary) 0%, #0d47a1 100%);
    --gradient-glow: linear-gradient(135deg, rgba(47, 170, 225, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --width-container: 1200px;
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--brand-blue-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
/* Loader "Window to the World" Animation */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #02040a;
    /* Deep dark bg */
    z-index: 1000;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    /* Ease-in-out quart */
}

#loader-wrapper .section-left {
    left: 0;
    border-right: 1px solid rgba(47, 170, 225, 0.1);
}

#loader-wrapper .section-right {
    right: 0;
    border-left: 1px solid rgba(47, 170, 225, 0.1);
}

/* Loader Content (Logo & Text) */
#loader-wrapper .loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    text-align: center;
    transition: all 0.3s ease-out;
    width: 100%;
    max-width: 400px;
}

.loader-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(47, 170, 225, 0.5));
    animation: pulseLogo 2s infinite;
}

.loader-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Progress Bar Line */
.progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--brand-primary);
    animation: loadProgress 2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--brand-primary);
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loaded State - The "Opening Window" Effect */
.loaded #loader-wrapper .section-left {
    transform: translateX(-100%);
}

.loaded #loader-wrapper .section-right {
    transform: translateX(100%);
}

.loaded #loader-wrapper .loader-content {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -100%);
    /* Fly up slightly */
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition-delay: 0.7s;
    /* Wait for shutters to open */
}


.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.gradient-text {
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--brand-primary);
}

/* Background Effects */
.background-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 170, 225, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

.top-left {
    top: -200px;
    left: -200px;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 17, 34, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    /* Adding a subtle white glow container for the logo to pop on dark bg */
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-action {
    display: block;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-only {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-outline:hover {
    border-color: var(--brand-primary);
    background: rgba(47, 170, 225, 0.1);
}

.btn-white {
    background: white;
    color: var(--brand-secondary);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Glow Effect Animation */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.glow-effect:hover::after {
    left: 100%;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(47, 170, 225, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(47, 170, 225, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-box strong {
    font-size: 2.5rem;
    line-height: 1;
    color: white;
    font-weight: 800;
}

.stat-box span {
    font-size: 1.5rem;
    color: var(--brand-primary);
    font-weight: 700;
}

.stat-box p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Visual Placeholder for Hero */
.main-visual {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(47, 170, 225, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rocket-icon {
    font-size: 8rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    transform: rotate(-15deg);
}

.signal-waves .wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(47, 170, 225, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waveAnim 3s infinite linear;
}

.w1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.w2 {
    width: 120%;
    height: 120%;
    animation-delay: 1s;
}

.w3 {
    width: 140%;
    height: 140%;
    animation-delay: 2s;
}

@keyframes waveAnim {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Rocket Animation */
.visual-content {
    cursor: pointer;
    position: relative;
    /* Ensure simulated speed text is positioned correctly */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rocket-icon.launch {
    animation: flyUp 1.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes flyUp {
    0% {
        transform: translateY(0) rotate(-15deg);
        opacity: 1;
    }

    20% {
        transform: translateY(20px) rotate(-15deg);
    }

    /* Anticipation */
    100% {
        transform: translateY(-600px) rotate(0deg);
        opacity: 0;
    }
}

.speed-test-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.speed-test-overlay.active {
    opacity: 1;
    visibility: visible;
}

.speed-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.speed-unit {
    font-size: 1rem;
    color: var(--brand-primary);
}

.floating-card {
    position: absolute;
    background: rgba(19, 27, 46, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.card-speed {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-secure {
    bottom: 15%;
    left: 0;
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(47, 170, 225, 0.2);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.sec {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.card-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-info strong {
    font-size: 0.95rem;
    color: white;
}


/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--brand-blue-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 170, 225, 0.3);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--brand-primary);
    filter: blur(60px);
    opacity: 0.2;
    border-radius: 50%;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--brand-primary);
    color: white;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.section-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 3rem 0;
}

.sub-title {
    display: block;
    color: var(--brand-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


/* Pricing */
.pricing-toggle {
    margin-bottom: 2rem;
}

.pricing-toggle span.active {
    background: var(--brand-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--brand-blue-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.1s ease;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.pricing-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(13, 71, 161, 0.2) 0%, var(--brand-blue-card) 60%);
    border: 1px solid var(--brand-primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(47, 170, 225, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.07);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--brand-secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-content {
    padding: 3rem 2rem;
    text-align: left;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 2rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.unit {
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 2rem 0;
    width: 100%;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    margin-left: 0;
}

.features-list li {
    margin-bottom: 1rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--brand-primary);
}

.btn.full-width {
    width: 100%;
}


/* CTA Section */
.cta-box {
    background: var(--gradient-brand);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    /* Pattern removed - file not found */
    opacity: 0.1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}


/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0;
}

.faq-item {
    background: var(--brand-blue-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
    color: var(--text-muted);
}

.faq-item.expanded .faq-answer {
    max-height: 1000px;
    /* Increased to prevent cutting off */
    padding-bottom: 1.5rem;
}

.faq-item.expanded .faq-question i {
    transform: rotate(180deg);
}


/* Footer */
.footer {
    background: #02040a;
    padding: 5rem 0 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.brand-col p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: white;
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-col i {
    color: var(--brand-primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}


/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Response */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-action {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 1rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* --- INNER PAGES STYLES --- */
/* Page Header (Smaller than Hero) */
.page-header {
    background: linear-gradient(135deg, #02040a 0%, #0a1122 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--brand-primary);
    text-decoration: none;
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--brand-blue-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Services Page */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--brand-blue-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

.service-img-holder {
    height: 200px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-primary);
}

.service-content {
    padding: 2rem;
}


/* Content Styling (Prose) */
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

/* Hide Trix/Filament file attachment captions/filenames */
.prose figcaption,
.prose .attachment__caption {
    display: none !important;
}

.prose figure.attachment {
    margin: 0;
}

.prose p {
    margin-bottom: 1.5rem;
}


.prose h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    color: white;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    color: var(--brand-primary);
}

.prose blockquote {
    border-left: 4px solid var(--brand-secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    color: white;
    font-weight: 700;
}

/* Add specialized "page builder" like utility classes that might come from editor */
.prose .text-center {
    text-align: center;
}

.prose .text-right {
    text-align: right;
}

.prose .btn-cta {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}


.prose a {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Promo Page */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.promo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.promo-content {
    padding: 2rem;
}

.promo-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* News & Media */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--brand-blue-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-thumb {
    height: 200px;
    background: #1e293b;
    position: relative;
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.news-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Contact & Partnership Forms */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-box {
    background: var(--brand-blue-card);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(47, 170, 225, 0.05);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Responsive adjustments for inner pages */
@media (max-width: 900px) {

    .about-grid,
    .contact-wrapper,
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- COVERAGE MAP STYLES --- */
.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#coverage-map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.map-bg-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(circle, rgba(47, 170, 225, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}