/* ============================================
   MODERN DESIGN SYSTEM - UNION TELECOM
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
    /* Colors - Dark Theme */
    --color-navy-dark: #0a0e27;
    --color-navy-medium: #1a1f3a;
    --color-purple-dark: #2d1b4e;
    --color-purple-medium: #4a2d6e;

    /* Accent Colors */
    --color-cyan: #00d9ff;
    --color-cyan-light: #00f5ff;
    --color-magenta: #d946ef;
    --color-magenta-light: #ff00ff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b4e 100%);
    --gradient-accent: linear-gradient(90deg, #00d9ff 0%, #d946ef 100%);
    --gradient-button: linear-gradient(90deg, #00d9ff 0%, #a855f7 50%, #d946ef 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.modern-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 70, 239, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 40%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Network Animation Background */
.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    height: 1px;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes networkPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes nodePulse {

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

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* padding: var(--spacing-md) 0; */
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.modern-nav.scrolled {
    /* padding: var(--spacing-sm) 0; */
    background: rgba(10, 14, 39, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform var(--transition-base);
}

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

.nav-logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: capitalize;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-cyan-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-button);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 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.3), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px var(--spacing-lg) var(--spacing-3xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, var(--color-cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-visual {
    width: 80%;
    height: 80%;
    background-image:
        linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(45, 27, 78, 0.8)),
        url('../img/hero1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: hard-light;
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
    box-shadow: inset 0 0 80px rgba(0, 14, 39, 1), 0 0 40px rgba(45, 27, 78, 0.5);
    opacity: 0.95;
}

@keyframes float {

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

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

.globe-visual::before,
.globe-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.globe-visual::before {
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    animation: rotate 20s linear infinite;
}

.globe-visual::after {
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    border-color: rgba(217, 70, 239, 0.2);
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   QUICK ACCESS PORTALS SECTION
   ============================================ */
.quick-access-section {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0) 0%, rgba(26, 31, 58, 0.5) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    /* Offset for sticky navbar */
}

.products-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, rgba(10, 14, 39, 0) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    /* Offset for sticky navbar */
}

.quick-access-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.quick-access-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.portal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.portal-card:hover::before {
    opacity: 0.1;
}

.portal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.portal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.portal-card:hover .portal-icon {
    background: rgba(0, 217, 255, 0.2);
    transform: scale(1.1);
}

.portal-icon svg {
    width: 40px;
    height: 40px;
}

.portal-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.portal-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Mobile adjustments for quick access */
@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0) 0%, rgba(26, 31, 58, 0.4) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: var(--spacing-xl);
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-card {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: rgb(255, 255, 255);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.2);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   INCORPORATED COMPANIES CAROUSEL
   ============================================ */
.incorporated-companies-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3) 0%, rgba(10, 14, 39, 0) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.incorporated-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.incorporated-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: var(--spacing-lg) 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Removed side shadows as requested */

.carousel-track {
    display: flex;
    gap: var(--spacing-xl);
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.company-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.company-logo:hover img {
    opacity: 1;
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
    .company-logo {
        width: 140px;
        height: 80px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.modern-footer {
    position: relative;
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-office h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-cyan);
    font-weight: 600;
}

.footer-office p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-cyan);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-cyan-light);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.85rem;
}

.footer-social a:hover {
    color: var(--color-cyan);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding-top: 120px;
    }

    .hero-visual {
        order: -1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-xl);
        gap: var(--spacing-lg);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px var(--spacing-md) var(--spacing-xl);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
    }

    .footer-container {
        padding: 0 var(--spacing-md);
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* Small Mobile (390px reference) */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }

    .hero-content {
        gap: var(--spacing-xl);
    }

    .hero-image {
        max-width: 100%;
    }
}

/* ============================================
   REDIRECT MODAL
   ============================================ */
.modal-redirect-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-redirect-content {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-redirect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.modal-redirect-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-redirect-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.modal-redirect-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xs);
}

.modal-redirect-brand {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
}

.modal-redirect-btn {
    margin-top: var(--spacing-md);
    padding: 16px 40px;
    font-size: 1rem;
}

/* Mobile adjustments for modal */
@media (max-width: 480px) {
    .modal-redirect-content {
        padding: var(--spacing-xl);
    }

    .modal-redirect-icon {
        width: 64px;
        height: 64px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

/* Utility classes from legacy */
.uni-dispflex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.uni-margauto {
    margin: 0 auto;
}

.uni-width70 {
    width: 70%;
}

@media (max-width: 768px) {
    .uni-width70 {
        width: 100%;
    }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
    /* Slight adjustment for visual center */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ============================================
   FEATURES SECTION (Motivos para Contratar)
   ============================================ */
.features-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, rgba(10, 14, 39, 0.3) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-title-center {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.section-subtitle-center {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse>* {
    direction: ltr;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-cyan-light);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.feature-intro {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-lg);
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-list i {
    color: var(--color-cyan);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .feature-reverse {
        direction: ltr;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(26, 31, 58, 0.5) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    scroll-margin-top: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-2xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 0.05;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-cyan);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge,
.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-button);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 1.5rem;
    color: var(--color-cyan);
    font-weight: 600;
    margin-right: 4px;
    margin-top: 8px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.plan-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
}

.plan-features .feature-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--spacing-sm);
    display: block;
}

.plan-features i {
    color: var(--color-cyan);
    font-size: 0.9rem;
}

.pricing-card .btn-modern {
    margin-top: var(--spacing-md);
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, rgba(10, 14, 39, 0.3) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    scroll-margin-top: 80px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
}

.faq-item.active {
    border-color: var(--color-cyan);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.15);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    user-select: none;
}

.faq-question i.fa-question-circle {
    color: var(--color-cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--color-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    padding-left: calc(var(--spacing-lg) + 1.5rem + var(--spacing-md));
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-section {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(26, 31, 58, 0.4) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    scroll-margin-top: 80px;
}

.coverage-section .container {
    max-width: 1200px;
}

/* Style the included PHP map content */
.coverage-section iframe,
.coverage-section #map {
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ============================================
   COVERAGE TABLE STYLES
   ============================================ */
/* Fix table text visibility */
#sortTable tbody td,
#sortTable thead th {
    color: #ffffff !important;
}

#sortTable_info,
#sortTable_paginate {
    color: #ffffff !important;
}

.dataTables_wrapper .dataTables_filter input {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--radius-md);
    padding: 6px 12px;
}

.dataTables_wrapper .dataTables_filter label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dataTables_wrapper .dataTables_length label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dataTables_wrapper .dataTables_length select {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--radius-md);
    padding: 4px;
}

/* ============================================
   DARK THEME COVERAGE SECTION (AS PER PRICING)
   ============================================ */
.coverage-section .map-es text {
    fill: #ffffff !important;
}

/* Adjusting the legends */
.coverage-section .legenda {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.coverage-section .legenda-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-section .square {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.coverage-section .square.atende {
    background: #05859b;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.coverage-section .square:not(.atende) {
    background: rgba(255, 255, 255, 0.2);
}

.coverage-section .legenda-texto {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Right Side - Filters and Table */
.coverage-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.filter-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-item {
    flex: 1;
}

.filter-item label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-align: center;
}

.filter-item input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all var(--transition-base);
}

.filter-item input:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.coverage-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-consultar {
    background: var(--gradient-button);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    cursor: pointer;
}

.btn-consultar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

.btn-exportar {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 38px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-exportar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

/* Table Dark Styles */
#sortTable {
    background: rgba(255, 255, 255, 0.03);
    border-collapse: separate;
    border-spacing: 0;
    width: 100% !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#sortTable thead th {
    background: rgba(0, 217, 255, 0.1) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 15px !important;
    font-weight: 600;
    text-align: left;
    border-right: none;
}

#sortTable tbody td {
    color: #213865d9 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 15px !important;
}

#sortTable tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

/* DataTables pagination in dark theme */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #ffffff !important;
}

.dataTables_wrapper .dataTables_info {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Explicit Grid for Coverage */
.coverage-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
}

.coverage-section .col-md-5,
.coverage-section .col-md-7 {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .coverage-section .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .coverage-section .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* Map Path Colors Override */
#svg-map path {
    fill: rgba(255, 255, 255, 0.1) !important;
    stroke: rgba(255, 255, 255, 0.3) !important;
    stroke-width: 1px !important;
    transition: fill 0.3s, transform 0.3s;
}

#svg-map .atende path {
    fill: #05859b !important;
    stroke: rgba(255, 255, 255, 0.5) !important;
}

#svg-map a:hover path {
    fill: var(--color-cyan-light) !important;
    cursor: pointer;
}

/* Adjust Legend Positioning */
.coverage-section .map-wrapper {
    position: relative;
    padding-bottom: 20px;
}

/* Table and Pagination Overrides for Dark Theme */
.coverage-section .dataTables_wrapper .top,
.coverage-section .dataTables_wrapper .bottom {
    color: #ffffff !important;
}

.coverage-section .dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.coverage-section .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
}

.coverage-section .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.coverage-section .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--color-cyan) !important;
    color: #0a0e27 !important;
    border-color: var(--color-cyan);
    font-weight: bold;
}

/* Refined Grid for Coverage (using col-lg) */
@media (min-width: 992px) {
    .coverage-section .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .coverage-section .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

.map-legend-container {
    /* padding: 40px; */
    margin-top: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    /* To match table area more or less */
}

.map-legend-container #svg-map {
    max-width: 100%;
    height: auto;
}

/* Hide DataTables redundant elements */
.dt-length,
.dt-info {
    display: none !important;
}

/* Translation and Pagination styling */
.paginar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cobertura-title {
    text-align: center;
    margin-bottom: 20px;
}

div.dataTables_scrollBody thead {
    display: none;
}

/* ============================================
   STIR/SHAKEN SECTION
   ============================================ */
.stir-shaken-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8) 0%, rgba(10, 14, 39, 0.95) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(217, 70, 239, 0.2);
}

.stir-shaken-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.stir-shaken-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.stir-shaken-icon {
    font-size: 3.5rem;
    color: var(--color-cyan);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
}

.stir-shaken-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
}

.stir-shaken-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stir-shaken-benefits-title {
    font-size: 1.4rem;
    color: #fff;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    font-weight: 700;
}

.stir-shaken-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.stir-shaken-list li {
    color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
}

.stir-shaken-list i {
    color: var(--color-cyan);
    font-size: 1.2rem;
}

.stir-shaken-highlight {
    font-size: 1.15rem;
    color: var(--color-cyan-light);
    font-weight: 600;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

/* Mobile adjustments for stir shaken */
@media (max-width: 768px) {
    .stir-shaken-card {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .stir-shaken-list li {
        font-size: 1rem;
    }
}

/* ============================================
   COVERAGE MODAL
   ============================================ */
.coverage-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(8px);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.coverage-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.coverage-modal-content {
    background: var(--gradient-primary);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 217, 255, 0.1);
    position: relative;
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

.coverage-modal-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.coverage-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.8rem;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.coverage-modal-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.coverage-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-base);
    line-height: 1;
}

.coverage-modal-close:hover {
    color: var(--color-cyan);
}

.coverage-modal-body {
    padding: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.coverage-modal-body p {
    margin-bottom: var(--spacing-sm);
}

.coverage-modal-body p:last-child {
    margin-bottom: 0;
}

.coverage-modal-body strong {
    color: var(--color-cyan-light);
    font-weight: 700;
}

.coverage-modal-thanks {
    font-size: 1.2rem;
    color: var(--color-cyan);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

.coverage-modal-footer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    text-align: center;
}

.coverage-modal-footer .btn-modern {
    width: 100%;
    max-width: 200px;
}