/* ----------------------------------------------------
   DELAPANBIT PREMIUM LIGHT THEME - HIGH-CONTRAST BRANDING
   ---------------------------------------------------- */

:root {
    /* Color Palette - Premium Light Mode with High-Contrast Accents */
    --bg-dark: #FFFFFF;              /* Dominant White */
    --bg-alt: #FAF8FC;               /* Light purple-tinted white for alternate sections */
    --bg-card: #FFFFFF;              /* Pure White for cards */
    --bg-card-hover: #FCFAFF;
    
    --primary: #E2008E;              /* High-Vibrancy Brand Magenta */
    --primary-glow: rgba(226, 0, 142, 0.25);
    
    --secondary: #6320EE;            /* High-Vibrancy Brand Purple/Violet */
    --secondary-glow: rgba(99, 32, 238, 0.2);
    
    --accent: #00C2FF;               /* Cyber Cyan for highlights */
    --accent-glow: rgba(0, 194, 255, 0.15);
    
    --text-main: #3C3A4A;            /* Charcoal for readable body text */
    --text-muted: #7E7A96;           /* Gray-purple for descriptions */
    --text-dark: #1F113D;            /* Deep Purple-Black for titles */
    --text-light: #FFFFFF;           /* White for buttons/dark elements */
    
    --border-light: #F1EDFA;         /* Soft purple-tinted border */
    --border-active: #E2008E;        /* Active Magenta border */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows & Glows */
    --shadow-glow: 0 4px 20px rgba(226, 0, 142, 0.2);
    --shadow-card: 0 8px 30px rgba(31, 17, 61, 0.05);
    --shadow-card-hover: 0 15px 40px rgba(99, 32, 238, 0.12);
    --shadow-header: 0 4px 20px rgba(31, 17, 61, 0.03);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #E5DFF2;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent { color: var(--primary); }
.text-green { color: var(--secondary); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    background: rgba(226, 0, 142, 0.08);
    color: var(--primary);
    border: 1.5px solid rgba(226, 0, 142, 0.2);
    margin-bottom: 1.5rem;
}

.badge-accent {
    background: rgba(99, 32, 238, 0.08);
    color: var(--secondary);
    border: 1.5px solid rgba(99, 32, 238, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(226, 0, 142, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(226, 0, 142, 0.5);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(99, 32, 238, 0.04);
    color: var(--secondary);
    border: 1.5px solid rgba(99, 32, 238, 0.15);
}

.btn-secondary:hover {
    background: rgba(99, 32, 238, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-card {
    width: 100%;
    background: rgba(99, 32, 238, 0.02);
    color: var(--secondary);
    border: 1.5px solid rgba(99, 32, 238, 0.1);
    font-weight: 700;
}

.btn-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-block {
    width: 100%;
}

/* Section Common */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

/* Highlighted Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(99, 32, 238, 0.04);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-header);
    padding: 0.8rem 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    padding: 0.3rem 0;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-fast);
    border-radius: 4px;
}

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

.nav-btn {
    background: rgba(226, 0, 142, 0.08);
    color: var(--primary) !important;
    border: 1.5px solid rgba(226, 0, 142, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light) !important;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    transition: var(--transition-normal);
    padding: 2rem;
    border-top: 1.5px solid var(--border-light);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--primary);
}

.mobile-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    border-radius: 8px;
    margin-top: 1rem;
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: radial-gradient(circle at 80% 20%, rgba(226, 0, 142, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(99, 32, 238, 0.08) 0%, transparent 50%);
    background-color: var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.visual-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(99, 32, 238, 0.15), rgba(226, 0, 142, 0.15));
    border: 1.5px solid rgba(226, 0, 142, 0.2);
    box-shadow: 0 10px 30px rgba(99, 32, 238, 0.05);
}

.visual-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(31, 17, 61, 0.12);
    display: block;
}

.visual-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 210px;
    height: 210px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(99, 32, 238, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    overflow: hidden;
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(226, 0, 142, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.speed-ring {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid rgba(99, 32, 238, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.speed-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: rotateRing 6s linear infinite;
}

.speed-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
}

.speed-unit {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.speed-details {
    display: flex;
    width: 100%;
    justify-content: space-around;
    border-top: 1.5px solid var(--border-light);
    padding-top: 0.6rem;
}

.speed-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.detail-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ----------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------- */
.about {
    background-color: var(--bg-alt);
    border-top: 1.5px solid var(--border-light);
    border-bottom: 1.5px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-area {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(226, 0, 142, 0.15);
    max-width: 250px;
}

.floating-badge h4 {
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.floating-badge p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.features-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px var(--primary-glow));
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(226, 0, 142, 0.1) 0%, rgba(99, 32, 238, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    border: 1.5px solid rgba(226, 0, 142, 0.2);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.service-icon {
    width: 30px;
    height: 30px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-normal);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-normal);
}

/* Card Background Images with Overlays */
.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 248, 255, 0.97) 100%);
    z-index: -1;
    transition: var(--transition-normal);
}

.service-card:hover::before {
    background: linear-gradient(135deg, rgba(99, 32, 238, 0.90) 0%, rgba(226, 0, 142, 0.90) 100%);
}

.service-card:hover h3 {
    color: var(--text-light) !important;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-card:hover .service-icon-bg {
    background: var(--bg-card) !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.service-card:hover .service-icon {
    color: var(--primary) !important;
}

.service-card.card-bg-1 {
    background-image: url('assets/broadband.jpg');
}

.service-card.card-bg-2 {
    background-image: url('assets/wifi-bg.jpg');
}

.service-card.card-bg-3 {
    background-image: url('assets/gallery/Dokumentasi-8BIT-6.png');
}

.service-card.card-bg-4 {
    background-image: url('assets/gallery/Dokumentasi-8BIT-5.png');
}

/* ----------------------------------------------------
   PRICING SECTION
   ---------------------------------------------------- */
.pricing {
    background-color: var(--bg-alt);
    border-top: 1.5px solid var(--border-light);
    border-bottom: 1.5px solid var(--border-light);
}

.pricing-tabs {
    display: inline-flex;
    background: rgba(99, 32, 238, 0.04);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1.5px solid rgba(99, 32, 238, 0.15);
    margin-top: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--secondary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 4rem;
}

.pricing-grid.active {
    display: grid;
}

.price-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 2.8rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

/* Highlighted Popular Card with Soft Brand Background & Border */
.price-card.popular {
    border: 2.5px solid var(--primary);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(226, 0, 142, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(226, 0, 142, 0.12);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
}

.plan-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.price-area {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 0.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 0.3rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 0.8rem;
    font-weight: 800;
    font-size: 0.95rem;
}

.price-card.popular .plan-features li::before {
    color: var(--secondary);
}

/* ----------------------------------------------------
   COVERAGE CHECKER SECTION
   ---------------------------------------------------- */
.coverage {
    background-color: var(--bg-dark);
}

.coverage-box {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.coverage-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: var(--text-dark);
}

.coverage-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.coverage-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.circle-icon {
    font-size: 1.5rem;
    background: rgba(226, 0, 142, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(226, 0, 142, 0.2);
}

.contact-item h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
}

.coverage-widget {
    background: var(--bg-alt);
    border: 1.5px solid var(--border-light);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
}

.coverage-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.widget-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.search-box {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.search-box input {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    flex-grow: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(226, 0, 142, 0.2);
}

.search-box button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: var(--text-light);
    padding: 0 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-box button:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.search-suggestions {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    max-height: 180px;
    overflow-y: auto;
    position: absolute;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    display: none;
    box-shadow: var(--shadow-card-hover);
}

.suggestion-item {
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.suggestion-item:hover {
    background: rgba(226, 0, 142, 0.05);
    color: var(--primary);
}

.result-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 8px;
    display: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.result-box.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    display: block;
}

.result-box.partial {
    background: rgba(245, 158, 11, 0.08);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    color: #D97706;
    display: block;
}

.result-box.not-found {
    background: rgba(239, 68, 68, 0.08);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
    display: block;
}

.result-cta {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: 700;
}

/* ----------------------------------------------------
   GALLERY SECTION
   ---------------------------------------------------- */
.gallery {
    background-color: var(--bg-alt);
    border-top: 1.5px solid var(--border-light);
    border-bottom: 1.5px solid var(--border-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(99, 32, 238, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Gallery Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(226, 0, 142, 0.1);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-item.hidden {
    display: none !important;
}

/* ----------------------------------------------------
   PARTNERS SECTION
   ---------------------------------------------------- */
.partners {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 1.5px solid var(--border-light);
    border-bottom: 1.5px solid var(--border-light);
}

.partners-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

.partners-grid img {
    height: 85px;
    max-height: 85px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-grid img:hover {
    opacity: 1;
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .partners-grid img {
        height: 60px;
        max-height: 60px;
        max-width: 165px;
    }
    .partners-grid {
        gap: 2rem;
    }
}

/* ----------------------------------------------------
   PROMO SECTION (Renamed to prevent Adblock issues)
   ---------------------------------------------------- */
.info-highlight {
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

.highlight-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.highlight-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 32, 238, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.highlight-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-bottom-right-radius: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(99, 32, 238, 0.25);
    z-index: 2;
}

.highlight-content {
    flex: 1;
    z-index: 1;
    padding-top: 0.5rem;
}

.highlight-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.highlight-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.highlight-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary);
    background: rgba(99, 32, 238, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(99, 32, 238, 0.1);
}

.highlight-actions {
    z-index: 1;
}

.highlight-actions .btn {
    white-space: nowrap;
    padding: 1rem 2.2rem;
    box-shadow: 0 10px 20px rgba(99, 32, 238, 0.25);
}

@media (max-width: 992px) {
    .highlight-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 3.5rem 2rem 2.2rem 2rem;
    }
    .highlight-card.has-image .highlight-body {
        flex-direction: column-reverse !important;
        align-items: stretch !important;
        gap: 1.5rem !important;
    }
    .highlight-card.has-image .highlight-content {
        flex: 1 !important;
    }
    .highlight-slide {
        padding: 20px 10px !important;
    }
    .highlight-image-wrapper {
        flex: 1 !important;
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        padding: 0.5rem 0 !important;
        align-self: auto !important;
        justify-content: center !important;
    }
    .highlight-image {
        max-height: 200px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        transform: none !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    }
    .highlight-image:hover {
        transform: scale(1.03) !important;
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2) !important;
    }
    .highlight-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Slideshow / Carousel highlight-slider */
.highlight-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.highlight-slider-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.highlight-slide {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: 75px 50px 75px 20px; /* Padding for slider container to accommodate overlapping elements without crop */
}

.highlight-slide .highlight-card {
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(31, 17, 61, 0.08); /* Show premium card shadow on the card itself */
}

/* Image overlap styling inside slide */
.highlight-image-wrapper {
    position: relative;
    z-index: 10;
    flex: 0 0 320px !important; /* Fixed width on desktop to allow content text to expand and fill the card width */
    width: 320px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    align-self: flex-start !important;
    margin-top: -65px !important;  /* Overlaps above card, but stays clear of container rounded boundary */
    margin-bottom: 0 !important;
    margin-right: -65px !important;  /* Overlaps past the right edge of the card */
    padding: 0;
}

.highlight-image {
    width: 320px !important;
    height: 400px !important;
    max-width: 320px !important;
    max-height: 400px !important;
    object-fit: contain !important;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45); /* Rich premium shadow */
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    transform: rotate(-3deg); /* Aesthetic 3-degree counter-clockwise tilt matching mockup */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.highlight-image:hover {
    transform: scale(1.06) rotate(1.5deg) !important; /* Elegant hover tilt & scale */
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.35); /* Glow shadow */
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(99, 32, 238, 0.4);
    border-color: transparent;
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 12;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(99, 32, 238, 0.5);
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none; /* Hide arrows on small screens, swipe/auto works */
    }
    .slider-dots {
        bottom: 15px;
    }
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.contact-form-area h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem 0;
    line-height: 1.2;
    color: var(--text-dark);
}

.contact-form-area p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group select option {
    background-color: var(--bg-alt);
    color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(226, 0, 142, 0.15);
}

.contact-info-area {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: linear-gradient(135deg, rgba(226, 0, 142, 0.05) 0%, rgba(99, 32, 238, 0.03) 100%);
    border: 1.5px solid var(--border-light);
    padding: 3.5rem 3rem;
    border-radius: 24px;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-icon {
    font-size: 1.5rem;
    background: rgba(226, 0, 142, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(226, 0, 142, 0.15);
}

.info-detail-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.info-detail-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.footer {
    background: #110B29;              /* Deep Midnight Violet Footer */
    border-top: 1.5px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 0 0 0;
}

.footer h3, .footer h4, .footer p {
    color: var(--text-light);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 45px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-links h4, .footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-light);
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-legal li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

/* ----------------------------------------------------
   FLOATING WHATSAPP WIDGET
   ---------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
}

.wa-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */
@media (max-width: 1150px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .visual-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .visual-card {
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%);
        animation: floatCardMobile 5s ease-in-out infinite;
    }

    @keyframes floatCardMobile {
        0% { transform: translateX(-50%) translateY(0px); }
        50% { transform: translateX(-50%) translateY(-6px); }
        100% { transform: translateX(-50%) translateY(0px); }
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-img-area {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .coverage-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 1151px) and (max-width: 1300px) {
    .nav-list {
        gap: 0.8rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo {
        height: 32px;
    }
    .nav-btn {
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
        border-radius: 16px;
        padding: 0.5rem;
        width: 100%;
        max-width: 320px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-badge {
        right: 0;
        bottom: -10px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .coverage-box {
        padding: 1.5rem;
    }
    
    .coverage-widget {
        padding: 1.5rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box button {
        padding: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .wa-icon {
        width: 26px;
        height: 26px;
    }
}

/* ----------------------------------------------------
   ADOPTED DESIGN SYSTEMS (FROM BROADBAND/CYBER)
   ---------------------------------------------------- */

/* Animating Header Line */
.em-bar-main {
    position: relative;
    margin: 0.8rem auto 0;
    width: 80px;
    height: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 2px;
}
.section-header .em-bar-main {
    margin: 0.8rem auto 0;
}
.contact-form-area .em-bar-main,
.why-choose-content .em-bar-main {
    margin: 0.8rem 0 0;
}
.em-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    height: 100%;
    width: 40px;
    border-radius: 2px;
    animation: emBarMove 2s infinite alternate ease-in-out;
}
@keyframes emBarMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background-color: var(--bg-alt);
    position: relative;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.video-card-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    aspect-ratio: 16 / 10;
}
.video-card-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}
.video-card-wrapper:hover img {
    transform: scale(1.05);
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 17, 61, 0.4) 0%, rgba(226, 0, 142, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--primary-glow);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
    position: relative;
}
.play-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    animation: playPulse 1.8s infinite;
}
@keyframes playPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 30px rgba(226, 0, 142, 0.5);
}
.play-btn svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
    margin-left: 4px;
    color: var(--primary);
    transition: var(--transition-fast);
}
.play-btn:hover svg {
    color: var(--text-light);
}

/* Floating Stat Badges on Video Card */
.floating-stat-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border-light);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    z-index: 5;
}
.floating-stat-badge.badge-top {
    top: 20px;
    right: 20px;
    animation: floatBadge1 4s ease-in-out infinite alternate;
}
.floating-stat-badge.badge-bottom {
    bottom: 20px;
    left: 20px;
    animation: floatBadge2 4s ease-in-out infinite alternate;
}
@keyframes floatBadge1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}
.floating-stat-badge .badge-icon {
    font-size: 1.8rem;
}
.floating-stat-badge h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}
.floating-stat-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Right Side content for Why Choose Us */
.why-choose-content h3.sub-title {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.why-choose-content h2.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}
.why-choose-content h2.section-title span {
    color: var(--primary);
}
.why-choose-content p.desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.info-list-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.info-list-item .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
    color: var(--primary);
    transition: var(--transition-fast);
}
.info-list-item:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    border-color: transparent;
    transform: scale(1.1);
}
.info-list-item .icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.info-list-item h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.info-list-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Statistics Row */
.stats-row {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.stat-counter-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}
.stat-counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-card-hover);
}
.stat-counter-card h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
}
.stat-counter-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.stat-counter-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Features & Facilities Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 248, 255, 0.99) 100%);
    z-index: -1;
    transition: var(--transition-normal);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-card-hover);
}
.feature-card:hover::before {
    background: linear-gradient(135deg, rgba(99, 32, 238, 0.92) 0%, rgba(226, 0, 142, 0.92) 100%);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(226, 0, 142, 0.1) 0%, rgba(99, 32, 238, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    border: 1.5px solid rgba(226, 0, 142, 0.15);
    color: var(--primary);
    transition: var(--transition-fast);
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--bg-card) !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    color: var(--primary) !important;
    transform: scale(1.05);
}
.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    transition: var(--transition-normal);
}
.feature-card:hover h3 {
    color: var(--text-light) !important;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: var(--transition-normal);
}
.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive styles for new sections */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 576px) {
    .why-choose-content h2.section-title {
        font-size: 1.8rem;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .floating-stat-badge {
        padding: 0.6rem 1rem;
    }
    .floating-stat-badge .badge-icon {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   BLOG STYLES (MATCHED TO PREMIUM LIGHT THEME)
   ========================================================================== */

.blog-hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(to bottom, rgba(99, 32, 238, 0.05), transparent);
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.blog-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.blog-card-img {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--bg-alt);
}

.blog-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 17, 61, 0.08);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-dark);
    transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-more {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    gap: 0.5rem;
    transition: color 0.2s;
}

.blog-card:hover .blog-card-more {
    color: var(--primary);
}

/* Single Post Page */
.post-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 8rem 1rem 4rem 1rem;
}

.post-back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: color 0.2s, transform 0.2s;
}

.post-back-btn:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.post-title {
    font-size: 2.75rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.post-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.post-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.25rem;
    }
    .post-title {
        font-size: 2rem;
    }
    .post-container {
        padding-top: 6rem;
    }
}

/* Registration & Action Modals on Homepage */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-container {
    background: #FFFFFF;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.open .modal-container {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #F1F5F9;
    border: none;
    color: #64748B;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}
.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.modal-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 1.75rem;
}
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}
.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #0F172A;
    transition: all 0.2s ease;
    background: #F8FAFC;
}
.form-control:focus {
    border-color: #6366F1;
    background: #FFFFFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.form-control::placeholder {
    color: #94A3B8;
}
.modal-actions {
    margin-top: 1.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.toast-msg {
    background: #0F172A;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid #6366F1;
}
.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-msg.success {
    border-left-color: #10B981;
}
.toast-msg.error {
    border-left-color: #EF4444;
}



