/* 
   BlitzByte - Minecraft Server Hosting
   Main Stylesheet
*/

/* ===== Base Styles ===== */
:root {
    /* Color Variables */
    --primary: #FFA500; /* Changed to orange/gold to match logo */
    --primary-dark: #FF8C00;
    --primary-light: #FFD700;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --accent: #F59E0B;
    --dark: #000000; /* Changed to pure black */
    --dark-gray: #121212; /* Darker gray */
    --gray: #6B7280;
    --light-gray: #2A2A2A; /* Darker light gray */
    --light: #1A1A1A; /* Dark background */
    --white: #FFFFFF;
    --danger: #EF4444;
    --success: #10B981;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--white); /* Changed text color to white */
    line-height: 1.6;
    background-color: var(--dark); /* Changed to dark background */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95); /* Changed to black */
    box-shadow: 0 2px 10px rgba(255, 165, 0, 0.1); /* Changed shadow color */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.15);
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white); /* Changed to white */
}

.logo-image {
    height: 90px; /* Increased from 40px */
    width: auto;
}

.logo-text {
    margin-right: 0.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--white); /* Changed to white */
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary); /* Keep primary color for accents */
    transition: width 0.3s ease;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 165, 0, 0.2);
}

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

.mobile-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav .nav-links li {
    margin-bottom: 1.5rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.mobile-nav .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    color: var(--white);
    font-weight: 600;
}

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

.mobile-nav .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.mobile-nav .cta-buttons a {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links,
    .cta-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    header .container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-image {
        height: 70px;
    }
    
    header.scrolled .logo-image {
        height: 60px;
        transition: height 0.3s ease;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-icon {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 60px;
    }
    
    header.scrolled .logo-image {
        height: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-icon {
        width: 150px;
        height: 150px;
    }
    
    .hero-icon i {
        font-size: 3rem !important;
    }
}

/* ===== Hero Section ===== */
.hero {
    padding-top: 10rem;
    padding-bottom: var(--spacing-3xl);
    background: linear-gradient(135deg, #000000 0%, #222222 100%); /* Changed to black gradient */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 165, 0, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
}

.location-badge i {
    margin-right: 0.5rem;
}

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

.hero-image {
    position: relative;
}

.hero-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    position: relative;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.hero-img::after {
    content: '⚡';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 2s infinite;
    z-index: 1;
}

.hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
}

.hero-shape {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* ===== Features Section ===== */
.features {
    background-color: var(--dark); /* Changed to dark */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background-color: var(--dark-gray); /* Changed to dark gray */
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05); /* Changed shadow color */
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background-color: rgba(255, 165, 0, 0.1); /* Changed to match primary */
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--gray);
}

/* ===== Plans Section ===== */
.plans {
    background-color: var(--dark); /* Changed to dark */
}

.plans-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    gap: var(--spacing-md);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-gray);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.plan-card {
    background-color: var(--dark-gray); /* Changed to dark gray */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05); /* Changed shadow color */
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: var(--radius-md);
}

.plan-header {
    padding: var(--spacing-xl);
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.plan-header h3 {
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.price {
    display: none;
}

.price.monthly {
    display: inline;
}

input:checked ~ .plans-grid .price.monthly {
    display: none;
}

input:checked ~ .plans-grid .price.yearly {
    display: inline;
}

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

.plan-features {
    padding: var(--spacing-xl);
}

.plan-features ul {
    margin-bottom: var(--spacing-xl);
}

.plan-features li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--success);
    margin-right: var(--spacing-sm);
}

.plan-cta {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    text-align: center;
}

.custom-plan {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background-color: var(--dark-gray);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05);
    color: var(--white);
}

.custom-plan h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.custom-plan p {
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

/* ===== How It Works Section ===== */
.how-it-works {
    background-color: var(--dark-gray); /* Changed to dark gray */
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    color: var(--gray);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: var(--dark); /* Changed to dark */
}

.testimonials-slider {
    display: flex;
    gap: var(--spacing-xl);
    overflow-x: auto;
    padding-bottom: var(--spacing-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 calc(33.333% - var(--spacing-xl));
    background-color: var(--dark-gray); /* Changed to dark gray */
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05); /* Changed shadow color */
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 var(--spacing-md);
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial-content p::before {
    top: -10px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots span.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--dark-gray); /* Changed to dark gray */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    background-color: var(--dark); /* Changed to dark */
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: var(--spacing-lg);
    max-height: 500px;
}

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

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, #000000 0%, #222222 100%); /* Changed to black gradient */
    color: var(--white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

/* ===== About Section ===== */
.about {
    background-color: var(--dark); /* Changed to dark */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--dark); /* Changed to match dark theme */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--dark); /* Changed to dark */
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05); /* Changed shadow color */
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--dark-gray); /* Added dark background */
    color: var(--white); /* Added white text */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1); /* Changed to match primary */
}

.payment-methods {
    display: flex;
    gap: var(--spacing-md);
    color: var(--white);
    font-size: 1.5rem;
}

.payment-methods i {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background-color: #000000; /* Changed to pure black */
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-image {
    height: 60px; /* Increased from 40px */
    width: auto;
}

.footer-col p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    color: var(--white); /* Ensure text is white and visible */
}

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

.footer-social a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: var(--spacing-md);
}

.footer-col ul li a {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: var(--spacing-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    color: var(--white); /* Ensure text is white and visible */
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .cta-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    header .container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-image {
        height: 70px;
    }
    
    header.scrolled .logo-image {
        height: 60px;
    }
    
    .testimonial {
        flex: 0 0 calc(100% - var(--spacing-xl));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
    
    .plan-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .feature-card,
    .plan-card {
        padding: var(--spacing-lg);
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* Typing Animation Styles */
.typer-container {
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 165, 0, 0.2);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.typer-container::before {
    content: '⚡';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.typer-container::after {
    content: '⚡';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.typed-text {
    display: inline;
}

.typed-text .highlight {
    color: #FFA500;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary);
    animation: blink 0.7s infinite;
    margin-left: 5px;
    height: 1.5em;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .typer-container {
        font-size: 1.5rem;
        padding: 1.5rem;
        min-height: 120px;
    }
}

@media (max-width: 576px) {
    .typer-container {
        font-size: 1.2rem;
        padding: 1rem;
        min-height: 100px;
    }
}

/* Lightning/Shocking Effects */
.lightning-text {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
}

.lightning-icon {
    display: inline-block;
    color: var(--primary);
    animation: pulse 2s infinite;
    margin: 0 0.2rem;
    vertical-align: middle;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.glow-effect {
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    }
    to {
        text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,165,0,0.3) 0%, rgba(255,165,0,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s, opacity 0.5s;
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.lightning-bg {
    position: relative;
}

.lightning-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="rgba(255,165,0,0.05)" d="M240.5 224H352C365.3 224 377.3 232.3 381.1 244.7C386.6 257.2 383.1 271.3 373.1 280.1L117.1 504.1C105.8 513.9 89.27 514.7 77.19 505.9C65.1 497.1 60.7 481.1 66.59 467.4L143.5 288H32C18.67 288 6.735 279.7 2.046 267.3C-2.643 254.8 .8963 240.7 10.93 231.9L266.9 7.918C278.2-1.92 294.7-2.669 306.8 6.114C318.9 14.9 323.3 30.87 317.4 44.61L240.5 224z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero {
    position: relative;
    overflow: hidden;
}

.lightning-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.plan-card:hover::after {
    content: '⚡';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 2s infinite;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    position: relative;
}

.feature-card:hover .feature-icon i::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

/* Loader Styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.lightning-bolt {
    font-size: 5rem;
    color: var(--primary);
    animation: lightning-pulse 1.5s infinite;
    margin-bottom: 1rem;
    display: inline-block;
}

@keyframes lightning-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px var(--primary);
    }
    50% {
        transform: scale(1.2);
        text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px var(--primary);
    }
}

.loading-text {
    display: flex;
    justify-content: center;
}

.loading-text span {
    display: inline-block;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    margin: 0 2px;
    animation: bounce 0.6s infinite alternate;
}

.loading-text span:nth-child(2) {
    animation-delay: 0.1s;
}
.loading-text span:nth-child(3) {
    animation-delay: 0.2s;
}
.loading-text span:nth-child(4) {
    animation-delay: 0.3s;
}
.loading-text span:nth-child(5) {
    color: var(--primary);
    animation-delay: 0.4s;
}
.loading-text span:nth-child(6) {
    animation-delay: 0.5s;
}
.loading-text span:nth-child(7) {
    animation-delay: 0.6s;
}
.loading-text span:nth-child(8) {
    animation-delay: 0.7s;
}
.loading-text span:nth-child(9) {
    animation-delay: 0.8s;
}

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

body.loaded {
    overflow: auto;
}

body {
    overflow: hidden; /* Prevent scrolling during loading */
}

/* Custom Cursor */
html, body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFA500" stroke="%23000000" stroke-width="2"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>') 5 5, auto;
}

a, button, .btn, input[type="submit"], .mobile-menu-btn, .nav-link, .pricing-box {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="%23FFA500" stroke="%23000000" stroke-width="2"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>') 5 5, pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
    border-left: 1px solid rgba(255, 165, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

/* Remove sidebar styles */
.sidebar {
    display: none;
}
