/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

:root {
    --header-total-height: 0px;
}

/* ============================================
   COLOR PALETTE SYSTEM
   Change colors here to update entire site
   ============================================ */
:root {
    /* Primary Brand Colors */
    --color-primary: #FFD700;
    --color-primary-light: #FFF8DC;
    --color-primary-medium: #FFE87C;
    --color-primary-dark: #FFA500;
    --color-primary-darker: #FF8C00;
    
    /* Text Colors */
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #666;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-white: #ffffff;
    
    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-light: #FFF8DC;
    --color-bg-dark: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-primary-light: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-medium) 100%);
    --gradient-primary-dark: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(255, 165, 0, 0.5) 100%);
    --gradient-disco: linear-gradient(90deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFA07A, #98D8C8, #FFD700);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 5px 20px rgba(255, 215, 0, 0.4);
    --shadow-primary-lg: 0 8px 30px rgba(255, 215, 0, 0.6);
    
    /* WhatsApp Green */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20BA5A;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    overflow-x: hidden;
    min-height: 100%;
}

html.nav-open,
body.nav-open {
    overflow: hidden;
}

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

.top-bar .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Top Bar with Disco Effect */
.top-bar {
    position: relative;
    background: var(--color-bg-dark);
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    width: 100%;
    margin: 0 !important;
    top: 0;
    left: 0;
    right: 0;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
}

.top-bar-icon {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.top-bar-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-text-primary);
}

body.dark-theme .top-bar-icon {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    border-color: rgba(255, 255, 255, 0.25);
}

body.dark-theme .top-bar-icon svg {
    fill: #000000;
}

.top-bar-label {
    color: var(--color-text-light);
    font-weight: 500;
}

.top-bar-number {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.top-bar-number:hover {
    opacity: 0.8;
}

.disco-text {
    background: var(--gradient-disco);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: disco-shift 3s linear infinite;
    font-weight: 700;
}

@keyframes disco-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Navigation */
.navbar {
    position: relative;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1001;
    transition: var(--transition-base);
    margin: 0;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

body.dark-theme .navbar {
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-btn-contact {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-primary);
}

.nav-btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    filter: brightness(1.1);
}

.nav-btn-portal {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.nav-btn-portal:hover {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

body.dark-theme .nav-btn-contact {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white) !important;
    position: relative;
}

body.dark-theme .nav-btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: -1;
}

body.dark-theme .nav-btn-contact:hover::before {
    opacity: 0.85;
}

body.dark-theme .nav-btn-portal {
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

body.dark-theme .nav-btn-portal:hover {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white) !important;
    border-color: transparent;
}

body.dark-theme .nav-btn-portal:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: -1;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .theme-toggle {
    background: rgba(26, 26, 26, 0.1);
    border-color: rgba(26, 26, 26, 0.2);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.navbar.scrolled .theme-toggle:hover {
    background: rgba(26, 26, 26, 0.2);
}

.theme-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* Dark Theme Styles */
body.dark-theme {
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #b0b0b0;
    --color-bg-white: #1a1a1a;
    --color-bg-light: #2a2a2a;
    --color-bg-dark: #0a0a0a;
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
}

body.dark-theme .navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

body.dark-theme .package-card,
body.dark-theme .feature-card,
body.dark-theme .payment-card,
body.dark-theme .coverage-list-wrapper,
body.dark-theme .stat-item,
body.dark-theme .faq-item,
body.dark-theme .contact-form-container::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

body.dark-theme .info-card {
    background: var(--color-bg-white);
    color: var(--color-text-primary);
}

body.dark-theme .area-tag {
    background: var(--color-bg-light);
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .area-tag:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary-medium);
}

body.dark-theme .form-group input,
body.dark-theme .form-group textarea {
    background: var(--color-bg-light);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group textarea:focus {
    border-color: var(--color-primary-dark);
}

body.dark-theme .top-bar {
    background: var(--color-bg-dark);
}

body.dark-theme .footer {
    background: var(--color-bg-dark);
}

body.dark-theme .nav-menu {
    background: var(--color-bg-white);
}

body.dark-theme .nav-menu a {
    color: var(--color-text-primary);
}

body.dark-theme .coverage-section::before,
body.dark-theme .packages-section::before,
body.dark-theme .features-section::before,
body.dark-theme .payment-section::before,
body.dark-theme .faq-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
}

body.dark-theme .faq-question::before {
    background: rgba(42, 42, 42, 0.9);
}

body.dark-theme .info-card::before {
    background: rgba(42, 42, 42, 0.95);
}

body.dark-theme .section-title {
    color: var(--color-text-primary);
}

body.dark-theme .top-bar-label {
    color: var(--color-text-light);
}

body.dark-theme .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .navbar.scrolled .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    transition: var(--transition-base);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-mobile-actions,
.nav-close {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar.scrolled .nav-menu a {
    color: var(--color-text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-primary-darker);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--color-primary-darker);
}

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

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.nav-text {
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 9px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--color-text-primary);
}

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

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

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

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--header-total-height));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('favicon/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    transition: var(--transition-slow);
}

/* Offset first hero/hero-like sections below fixed header */
.hero:first-of-type,
.about-hero-section,
.blog-hero-section {
    margin-top: var(--header-total-height);
}

body.dark-theme .hero {
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&h=1080&fit=crop');
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 300% 300%;
    animation: disco-bg-hero 10s ease infinite;
    z-index: 1;
    opacity: 0.5;
    transition: opacity var(--transition-slow);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 165, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
    transition: background var(--transition-slow);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.2) 100%);
    z-index: 2;
    transition: background var(--transition-slow);
}

body.dark-theme .hero-overlay {
    opacity: 0.6;
}

body.dark-theme .hero-overlay::before {
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

body.dark-theme .hero-overlay::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(255, 215, 0, 0.1) 100%);
}

@keyframes disco-bg-hero {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: var(--color-text-white);
    animation: fadeInUp 1s ease;
    padding-top: 2rem;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    display: block;
    background: var(--gradient-disco);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: disco-shift 4s linear infinite;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .btn-primary {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white) !important;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

body.dark-theme .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: -1;
}

body.dark-theme .btn-primary:hover {
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .btn-primary:hover::before {
    opacity: 0.85;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
    border: 2px solid var(--color-text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-package {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-primary);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .btn-package {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white) !important;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body.dark-theme .btn-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: -1;
}

body.dark-theme .btn-package:hover {
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .btn-package:hover::before {
    opacity: 0.85;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary-dark);
    color: var(--color-primary-dark);
    margin-top: 1rem;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border-color: transparent;
}

body.dark-theme .btn-outline {
    border-color: var(--color-primary-medium);
    color: var(--color-primary-medium);
}

body.dark-theme .btn-outline:hover {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

body.dark-theme .btn-outline:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: 0;
}

body.dark-theme .btn-outline:hover > * {
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.hero {
    padding: 0;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Packages Section */
.packages-section {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

body.dark-theme .packages-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

@keyframes disco-bg {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.package-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary-dark);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-primary) !important;
    border-color: transparent;
    position: relative;
    z-index: 1;
}

.tab-btn.active::before,
.tab-btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: -1;
}

.tab-btn {
    position: relative;
    z-index: 1;
}

body.dark-theme .tab-btn.active::before,
body.dark-theme .tab-btn:hover::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

body.dark-theme .tab-btn.active,
body.dark-theme .tab-btn:hover {
    color: var(--color-text-white) !important;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.packages-grid.hidden {
    display: none;
}

.package-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.package-card .package-image {
    position: relative;
    z-index: 1;
}

.package-card .package-header,
.package-card .package-price,
.package-card .package-speed,
.package-card .btn {
    position: relative;
    z-index: 1;
}

body.dark-theme .package-card {
    background: var(--color-bg-white);
}

body.dark-theme .package-card::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.08;
}

.package-image {
    width: 100%;
    height: 200px;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

body.dark-theme .package-icon {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.package-card .package-header {
    padding: 1.5rem 2.5rem 0;
    margin-bottom: 1rem;
}

.package-card .package-price {
    padding: 0 2.5rem;
    margin-bottom: 0.5rem;
}

.package-card .package-speed {
    padding: 0;
    margin: 0 2.5rem 1.5rem;
}

.package-card .btn {
    margin: 0 auto 2.5rem;
    margin-top: auto;
    display: block;
    text-align: center;
    width: calc(100% - 5rem);
    max-width: none;
}

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

.package-card.popular {
    border: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.package-card.popular:hover {
    transform: translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.package-badge {
    display: none;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.package-speed {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 2.5rem 1.5rem;
    text-align: center;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    position: relative;
    display: block;
    background: var(--gradient-primary-light);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.package-speed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.package-card:hover .package-speed::before {
    opacity: 0.1;
}

.package-card:hover .package-speed {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--color-primary-medium);
}

body.dark-theme .package-speed {
    background: rgba(42, 42, 42, 0.6);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.dark-theme .package-speed::before {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0.15;
}

body.dark-theme .package-card:hover .package-speed {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

/* Payment Section */
.payment-section {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 9s ease infinite;
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.payment-section .container {
    position: relative;
    z-index: 1;
}

body.dark-theme .payment-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

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

.payment-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.payment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.payment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.payment-card:hover .payment-image img {
    transform: scale(1.1);
}

.payment-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.95);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
    backdrop-filter: blur(10px);
}

body.dark-theme .payment-icon {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.payment-content {
    padding: 2.5rem;
}

.payment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-weight: 700;
}

.payment-steps {
    margin-bottom: 1.5rem;
}

.payment-card .btn {
    margin-top: 1rem;
}

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

/* Payment icon styles moved above */

.payment-steps {
    list-style-position: inside;
    line-height: 2;
    color: var(--color-text-secondary);
}

.payment-steps li {
    margin-bottom: 0.8rem;
}

.payment-steps strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Coverage Section */
.coverage-section {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    position: relative;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.coverage-section .container {
    position: relative;
    z-index: 1;
}

body.dark-theme .coverage-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

.coverage-content {
    margin-top: 3rem;
}

.coverage-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.coverage-list-wrapper {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.coverage-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gradient-primary-light);
}

.coverage-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
}

.area-tag {
    background: var(--color-bg-white);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-weight: 500;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.area-tag:hover {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary-medium);
    color: var(--color-text-primary);
}

.area-tag:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: -1;
}

body.dark-theme .area-tag:hover {
    color: var(--color-text-white);
}

body.dark-theme .area-tag:hover::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.stat-item {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
    .coverage-stats {
        align-self: stretch;
    }
    
    .coverage-list-wrapper {
        min-height: 100%;
    }
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

/* Features Section - moved below */

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

.feature-card {
    background: var(--color-bg-white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.95);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
    backdrop-filter: blur(10px);
}

body.dark-theme .feature-icon {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3,
.feature-card p {
    padding: 0 2.5rem;
}

.feature-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    padding-bottom: 2.5rem;
}

/* Features Section with Animated Background */
.features-section {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

body.dark-theme .features-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    position: relative;
    color: var(--color-text-white);
    text-align: center;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('favicon/bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.cta-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    opacity: 0.15;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-primary);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .cta-section .btn-primary {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    color: var(--color-text-white) !important;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

body.dark-theme .cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.9;
    z-index: -1;
}

body.dark-theme .cta-section .btn-primary:hover {
    box-shadow: var(--shadow-primary-lg);
}

body.dark-theme .cta-section .btn-primary:hover::before {
    opacity: 0.85;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-white);
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-form-container {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 12s ease infinite;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.contact-form-container .contact-form {
    position: relative;
    z-index: 1;
}

.contact-form-container:hover {
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    justify-content: space-between;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.info-card {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary-light);
    opacity: 0.95;
    z-index: 0;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.info-item a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 12s ease infinite;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
    transition: background var(--transition-slow);
}

body.dark-theme .faq-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.faq-item {
    background: var(--color-bg-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 6s ease infinite;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary-light);
    opacity: 0.9;
    z-index: 0;
}

.faq-question > * {
    position: relative;
    z-index: 1;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-primary-dark);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary-medium);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition-base);
    text-decoration: none;
    color: var(--color-text-white);
    font-weight: 500;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Chat Widget - WhatsApp */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-whatsapp);
    color: var(--color-text-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.chat-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.chat-button span {
    white-space: nowrap;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: var(--color-whatsapp-hover);
}

.chat-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .chat-button span {
        display: none;
}

.chat-button {
    width: 60px;
    height: 60px;
        padding: 0;
        justify-content: center;
    border-radius: 50%;
    }
    
    .chat-button svg {
        width: 28px;
        height: 28px;
    }
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.package-card.popular {
    animation: pulse 3s ease-in-out infinite;
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Loading state */
body {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 968px) {
    body {
    }
    
    .top-bar {
        padding: 0.4rem 0;
    }
    
    .top-bar-content {
        gap: var(--spacing-sm);
        font-size: 0.75rem;
        justify-content: space-between;
        width: 100%;
    }
    
    .top-bar-item {
        flex-direction: row;
        gap: 0.4rem;
        align-items: center;
    }

    .top-bar-item:last-child {
        margin-left: auto;
        justify-content: flex-end;
    }
    
    .top-bar-label {
        font-size: 0.7rem;
    }
    
    .navbar {
        top: 0;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--color-bg-white);
        width: 78%;
        max-width: 320px;
        text-align: left;
        transition: var(--transition-base);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.12);
        padding: 1.25rem 0 2rem;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    
    .navbar.scrolled .nav-menu {
        top: 0;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-menu li {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        margin-bottom: 0.5rem;
    }

    .nav-menu a {
        padding: 0.85rem 1.25rem;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.02);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.12);
        color: var(--color-primary-darker);
    }

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

    .nav-mobile-actions {
        display: block;
    }

    .nav-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .coverage-main {
        grid-template-columns: 1fr;
    }

    .coverage-list {
        gap: 0.5rem;
    }

    .area-tag {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 999px;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }

    .about-hero-section .section-title {
        font-size: 2.5rem;
    }
    
    .about-hero-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mission & Vision – force 1 column on tablets/small devices */
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
    }
    
    .top-bar {
        padding: 0.3rem 0;
    }
    
    .top-bar-content {
        gap: var(--spacing-xs);
        font-size: 0.7rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .top-bar-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .top-bar-label,
    .top-bar-number {
        display: none;
    }

    .top-bar-icon {
        display: inline-flex;
    }
    
    .navbar {
        top: 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    /* Mission & Vision - mobile layout */
    .mission-vision-grid {
        display: block;
    }
    
    .mission-card,
    .vision-card {
        width: 100%;
        padding: 2.5rem 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .package-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .package-image,
    .feature-image {
        height: 150px;
    }
    
    .payment-image {
        height: 180px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    .theme-icon {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .about-hero-section .section-title {
        font-size: 2rem;
    }
    
    .about-hero-section .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .mission-card .section-title,
    .vision-card .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .blog-hero-section .section-title {
        font-size: 2rem;
    }
    
    .blog-hero-section .section-subtitle {
        font-size: 1rem;
    }
    
    .blog-card {
        display: flex;
        flex-direction: column;
    }
    
    .blog-image {
        min-height: 250px;
        height: 250px;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
}

/* About Us Page Styles */
.about-hero-section {
    padding: 6rem 0 4rem;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
}

.about-hero-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

body.dark-theme .about-hero-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

body.dark-theme .gallery-section {
    background: var(--color-bg-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    aspect-ratio: 4/3;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 0.1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    position: relative;
    z-index: 0;
}

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

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

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

body.dark-theme .mission-vision-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: var(--color-bg-white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0;
    z-index: 0;
    transition: var(--transition-base);
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.03;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.mission-card > *,
.vision-card > * {
    position: relative;
    z-index: 1;
}

.mission-icon,
.vision-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card .section-title,
.vision-card .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

body.dark-theme .mission-card,
body.dark-theme .vision-card {
    background: var(--color-bg-dark-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

body.dark-theme .mission-card:hover,
body.dark-theme .vision-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

body.dark-theme .mission-card .section-title,
body.dark-theme .vision-card .section-title {
    color: var(--color-text-white);
}

body.dark-theme .mission-card p,
body.dark-theme .vision-card p {
    color: var(--color-text-light);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

body.dark-theme .stats-section {
    background: var(--color-bg-dark);
}

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

.stat-card {
    background: var(--color-bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0.05;
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

body.dark-theme .stat-card {
    background: var(--color-bg-dark-light);
}

body.dark-theme .stat-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .stat-label {
    color: var(--color-text-light);
}

/* Blog Page Styles */
.blog-hero-section {
    padding: 6rem 0 4rem;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-primary-light) 100%);
    opacity: 0.9;
    z-index: 0;
}

.blog-hero-section .container {
    position: relative;
    z-index: 1;
}

.blog-hero-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-hero-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

body.dark-theme .blog-hero-section::before {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.98) 100%);
    opacity: 0.95;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
}

body.dark-theme .blog-section {
    background: var(--color-bg-dark);
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 10s ease infinite;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

@media (min-width: 968px) {
    .blog-grid {
        gap: 5rem;
    }
    
    .blog-card {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: stretch;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        background: var(--color-bg-white);
        flex-direction: row;
    }
    
    body.dark-theme .blog-card {
        background: var(--color-bg-dark-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .blog-card:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        transform: translateY(-5px);
    }
    
    body.dark-theme .blog-card:hover {
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    }
    
    /* Odd cards (1st, 3rd): Image on RIGHT, Content on LEFT */
    .blog-card:nth-child(odd) {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-card:nth-child(odd) .blog-image {
        order: 2;
        grid-column: 2;
    }
    
    .blog-card:nth-child(odd) .blog-content {
        order: 1;
        grid-column: 1;
    }
    
    /* Even cards (2nd, 4th): Image on LEFT, Content on RIGHT */
    .blog-card:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-card:nth-child(even) .blog-image {
        order: 1;
        grid-column: 1;
    }
    
    .blog-card:nth-child(even) .blog-content {
        order: 2;
        grid-column: 2;
    }
    
    .blog-image {
        height: 100% !important;
        width: 100% !important;
        min-height: 550px;
        border-radius: 0;
        position: relative;
        overflow: hidden;
        background: var(--color-bg-light);
        flex-shrink: 0;
    }
    
    body.dark-theme .blog-image {
        background: var(--color-bg-dark);
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-slow);
    }
    
    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }
    
    /* Border radius for odd cards (image on right) */
    .blog-card:nth-child(odd) .blog-image {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .blog-card:nth-child(odd) .blog-content {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    /* Border radius for even cards (image on left) */
    .blog-card:nth-child(even) .blog-image {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .blog-card:nth-child(even) .blog-content {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .blog-content {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 3.5rem;
        background: var(--color-bg-white);
        width: 100%;
        flex-shrink: 0;
    }
    
    body.dark-theme .blog-content {
        background: var(--color-bg-dark-light);
    }
    
    .blog-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .blog-excerpt p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .blog-steps,
    .blog-list {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .blog-category {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 2rem;
    }
}

.blog-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-disco);
    background-size: 200% 200%;
    animation: disco-bg 8s ease infinite;
    opacity: 0;
    z-index: 0;
    transition: var(--transition-base);
}

.blog-card:hover::before {
    opacity: 0.03;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.video-play-btn:hover {
    background: var(--color-bg-white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-primary-lg);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    fill: var(--color-primary-dark);
    margin-left: 5px;
}

.blog-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

body.dark-theme .blog-category {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

.blog-card:hover .blog-category {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 968px) {
    .blog-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

.blog-excerpt {
    flex: 1;
}

.blog-excerpt p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.blog-steps,
.blog-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--color-text-secondary);
}

.blog-steps li,
.blog-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.blog-steps li strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

body.dark-theme .blog-steps li strong {
    color: var(--color-primary);
}

body.dark-theme .blog-card {
    background: var(--color-bg-dark-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

body.dark-theme .blog-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

body.dark-theme .blog-title {
    color: var(--color-text-white);
}

body.dark-theme .blog-excerpt p,
body.dark-theme .blog-steps,
body.dark-theme .blog-list {
    color: var(--color-text-light);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-white);
}

.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Final mobile overrides (ensure mission/vision stacks nicely) */
@media (max-width: 768px) {
    .mission-vision-grid {
        display: block;
    }

    .mission-card,
    .vision-card {
        width: 100%;
        max-width: none;
        margin: 0 0 1.75rem 0;
    }
}

