/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #0F172A;
    color: #fff;
}

/* ==========================================
   COLORS
   ========================================== */
:root {
    --color-primary: #3B82F6;
    --color-primary-dark: #1D4ED8;
    --color-accent: #6366F1;
    --color-bg-dark: #0F172A;
    --color-bg-light: #F8FAFC;
    --color-text-light: #F8FAFC;
    --color-text-gray: #94A3B8;
    --color-text-dark: #0F172A;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    animation: fadeInLeft 0.5s ease-out;
}

.logo-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

/* Desktop Navigation */
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    animation: fadeInDown 0.5s ease-out;
    animation-fill-mode: both;
}

.nav-link:nth-child(1) { animation-delay: 0s; }
.nav-link:nth-child(2) { animation-delay: 0.1s; }
.nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-link:nth-child(4) { animation-delay: 0.3s; }

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

.admin-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.admin-link svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    animation: fadeInDown 0.5s ease-out 0.5s;
    animation-fill-mode: both;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #D1D5DB;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: white;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: #D1D5DB;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

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

.mobile-cta {
    margin-top: 0.5rem;
    text-align: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    overflow: hidden;
    padding-top: 64px;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
}

.hero-bg-gradient-1 {
    top: 0;
    left: 25%;
    background: rgba(59, 130, 246, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg-gradient-2 {
    bottom: 0;
    right: 25%;
    background: rgba(99, 102, 241, 0.2);
    animation: pulse 4s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 78, 216, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.hero-badge span {
    font-size: 0.875rem;
    color: #D1D5DB;
}

/* Main Heading */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.5s ease-out 0.1s;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    animation: fadeInUp 0.5s ease-out 0.2s;
    animation-fill-mode: both;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    animation: fadeInUp 0.5s ease-out 0.3s;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-gradient:hover {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-gradient svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-gradient:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out 0.4s;
    animation-fill-mode: both;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Floating Cloud Icons */
.floating-cloud {
    position: absolute;
    opacity: 0.2;
}

.floating-cloud svg {
    width: 128px;
    height: 128px;
    color: var(--color-primary);
}

.floating-cloud-1 {
    top: 5rem;
    right: 2.5rem;
    animation: floatCloud1 4s ease-in-out infinite;
}

.floating-cloud-2 {
    bottom: 5rem;
    left: 2.5rem;
    animation: floatCloud2 5s ease-in-out infinite 1s;
}

.floating-cloud-2 svg {
    width: 96px;
    height: 96px;
    color: var(--color-accent);
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    position: relative;
    padding: 5rem 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

/* Background Decoration */
.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.why-us-bg-blob {
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    filter: blur(96px);
}

.why-us-bg-blob-1 {
    top: 5rem;
    left: 2.5rem;
    background: var(--color-primary);
}

.why-us-bg-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    background: var(--color-accent);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
    max-width: 32rem;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 0.75rem;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

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

.feature-description {
    color: #4B5563;
    line-height: 1.75;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */
.packages {
    position: relative;
    padding: 5rem 0;
    background: var(--color-bg-dark);
    overflow: hidden;
}

/* Background Effects */
.packages-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.packages-bg-gradient {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
}

.packages-bg-gradient-1 {
    top: 25%;
    right: 0;
    background: rgba(59, 130, 246, 0.1);
}

.packages-bg-gradient-2 {
    bottom: 25%;
    left: 0;
    background: rgba(99, 102, 241, 0.1);
}

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

.packages .section-title {
    color: white;
}

.packages .section-subtitle {
    color: #9CA3AF;
}

/* Package Type Selector */
.package-type-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.package-type-tabs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 0.5rem;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-type-tab {
    background: transparent;
    border: none;
    color: #9CA3AF;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.package-type-tab:hover {
    color: white;
}

.package-type-tab.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
}

.package-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

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

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

/* Package Content */
.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-currency {
    color: #9CA3AF;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Package Features */
.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.package-feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    padding: 4px;
}

.package-feature span {
    color: #D1D5DB;
    font-size: 0.875rem;
}

/* Package Button */
.package-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.package-btn-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
}

.package-btn-gradient:hover {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

/* Package Glow */
.package-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    filter: blur(32px);
    z-index: -1;
}

/* Packages Info */
.packages-info {
    text-align: center;
    margin-top: 3rem;
}

.packages-info-text {
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.packages-info-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.packages-info-link:hover {
    color: var(--color-accent);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    /* Animated by GSAP */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #9CA3AF;
    transition: color 0.3s;
}

.social-link:hover svg {
    color: white;
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

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

/* Contact Info */
.footer-contact {
    list-style: none;
}

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

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-label {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.contact-item a,
.contact-item p {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ==========================================
   SMOOTH SCROLL
   ========================================== */

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ==========================================
   PAGE-SPECIFIC STYLES
   ========================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding-top: 128px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--color-bg-dark), #1E293B);
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 3.75rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.billing-label {
    font-size: 1.125rem;
    color: #9CA3AF;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
}

.billing-label.active {
    color: white;
    font-weight: 600;
}

.billing-switch {
    position: relative;
    width: 64px;
    height: 32px;
    background: #4B5563;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 11;
    pointer-events: auto;
}

.billing-switch.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.billing-switch-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    pointer-events: none;
}

.billing-switch.active .billing-switch-thumb {
    transform: translateX(32px);
}

.billing-discount {
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Package Type Section */
.package-type-section {
    padding: 2rem 0;
    background: #1E293B;
}

/* Packages Page Section */
.packages-page-section {
    padding: 5rem 0;
    background: var(--color-bg-dark);
}

/* Features Included Section */
.features-included-section {
    padding: 5rem 0;
    background: #1E293B;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.included-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.included-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    margin: 0 auto 0.75rem;
}

.included-item h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info-card h3 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: #D1D5DB;
    margin-bottom: 0.25rem;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--color-accent);
}

.contact-info-card .contact-info-sub {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: var(--color-bg-dark);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    display: block;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6B7280;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-select {
    cursor: pointer;
}

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

.form-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* FAQ Page */
.faq-search-section {
    padding: 2rem 0;
    text-align: center;
}

.faq-search-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    width: 20px;
    height: 20px;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.faq-section {
    padding: 3rem 0;
    background: var(--color-bg-dark);
}

.faq-list {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question-text {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    flex: 1;
}

.faq-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #D1D5DB;
    line-height: 1.75;
}

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #4ADE80;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #4ADE80;
    margin: 0 auto 1rem;
}

.success-message h3 {
    color: #4ADE80;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #D1D5DB;
}

/* About Page */
.stats-section {
    padding: 3rem 0;
    background: #1E293B;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    text-align: center;
}

.stat-box-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: #9CA3AF;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--color-bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
}

.team-member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member-name {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-member-role {
    color: var(--color-primary);
    font-size: 0.875rem;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.legal-text h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    color: #9CA3AF;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-text a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-text a:hover {
    color: var(--color-accent);
}

.legal-text strong {
    color: white;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.stat-box-value {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: #9CA3AF;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category-title i {
    color: var(--color-primary);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #9CA3AF;
    line-height: 1.75;
    margin: 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-info-icon i {
    color: var(--color-primary);
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-card h3 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--color-accent);
}

.contact-info-card p {
    color: #9CA3AF;
    margin: 0.25rem 0;
}

.contact-info-sub {
    font-size: 0.875rem;
    margin-top: 0.5rem !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    min-width: 320px;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: all;
    animation: slideInRight 0.3s ease-out;
    transition: all 0.3s ease;
}

.toast.removing {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.toast.info .toast-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.toast-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 0.375rem;
    background: transparent;
    border: none;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toast-close svg {
    width: 16px;
    height: 16px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 0.75rem 0.75rem;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left;
    animation: progressBar 5s linear forwards;
}

.toast.success .toast-progress-bar {
    background: linear-gradient(90deg, #10B981, #059669);
}

.toast.error .toast-progress-bar {
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.toast.info .toast-progress-bar {
    background: linear-gradient(90deg, #3B82F6, #2563EB);
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 640px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}
