/* style.css */

/* --- Custom Background Effects (for Hero) --- */
#data-flow-bg {
    /* Radial gradient gives a depth effect, focusing light toward the center/bottom */
    background-image: radial-gradient(circle at 50% 120%, rgba(6, 182, 212, 0.1) 0%, rgba(10, 9, 20, 0.8) 70%), 
                      /* Repeating lines give a subtle 'data flow' pattern */
                      repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
}
/* --- CURSOR PSEUDO-ELEMENT STYLING --- */

/* Add the blinking cursor to the end of the text element */
#typing-headline:after {
    content: '|';
    display: inline;
    margin-left: 0.05em; /* Small gap between text and cursor */
    /* Use the same neon style for the cursor as the main text */
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #fff;
    
    /* Animation definition for the cursor blink */
    animation: blink-caret 0.75s step-end infinite;
}

/* Keyframes for the blinking cursor */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff } /* White cursor */
}

/* --- MOBILE FONT ENFORCEMENT FIX (Keep this section) --- */
@media (max-width: 639px) {
    #typing-headline {
        font-size: 2rem !important;
        line-height: 1.25 !important;
        white-space: normal !important; 
    }
        }
/* --- Glassmorphism Card Style --- */
.glass-card {
    /* Background color defined by tailwind.config as 'glass' */
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Essential for the glass effect */
    backdrop-filter: blur(8px);
    border-radius: 1rem; /* rounded-xl */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.glass-card:hover {
    /* Neon Cyan border on hover, encouraging interaction */
    border-color: #06b6d4; 
    transform: translateY(-2px);
}

/* --- Highlight Text Style --- */
.highlight {
    color: #f97316; /* Bright Orange */
    font-weight: 700;
}

/* --- Neon Text & Glow Effects --- */
.neon-text {
    /* Subtle text shadow for brand text */
    text-shadow: 0 0 2px rgba(6, 182, 212, 0.5);
}
.neon-text-h1 {
    /* Stronger, mixed shadow for the main hero heading */
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.8), 0 0 15px rgba(249, 115, 22, 0.5);
}

.neon-glow-btn {
    /* Orange button glow effect */
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}
.neon-glow-btn:hover {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.8), 0 0 25px rgba(249, 115, 22, 0.4);
}

.popular-plan {
    /* Strong visual distinction for the most popular plan */
    border-color: #f97316 !important;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

/* --- Form Styles (Contact Section) --- */
.form-input {
    /* Base styles from Tailwind utility classes */
    @apply px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg text-white focus:ring-bright-orange focus:border-bright-orange transition duration-200;
    width: 100%;
}
.form-input::placeholder {
    color: #9ca3af; /* Gray-400 */
}
.form-input:focus {
    outline: none;
    /* Custom focus ring shadow to match brand color */
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.4); 
}
/* Style the select element to not look default (removes native appearance) */
select.form-input {
    appearance: none;
    /* Custom SVG for the dropdown arrow, styled gray-400 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239ca3af'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
/* style.css (NEW STYLES FOR ONE-TIME BUNDLES) */

/* General Section Styling */
.bundles-section {
    background-color: #0a0914; /* primary-dark */
    padding: 6rem 1rem;
}
.bundles-section .container {
    max-width: 1200px;
    margin: auto;
}
.bundles-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4rem;
}

/* Bundles Grid Layout */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Bundle Card Styling */
.bundle-card {
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05); /* glass-card effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Card Color Variants */
.bundle-card-orange {
    border-top: 4px solid #f97316; /* bright-orange */
}
.bundle-card-cyan {
    border-top: 4px solid #06b6d4; /* neon-cyan */
}
.bundle-card-orange:hover {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}
.bundle-card-cyan:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Card Content */
.bundle-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.bundle-card .text-orange { color: #f97316; }
.bundle-card .text-cyan { color: #06b6d4; }

.bundle-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
}
.bundle-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af; /* gray-400 */
    margin-left: 0.5rem;
}
.bundle-card .description {
    color: #d1d5db; /* gray-300 */
    margin-bottom: 1.25rem;
    flex-grow: 1; /* Ensures lists align at the bottom */
}

.bundle-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}
.bundle-card ul li {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Hidden Bundle (for toggle) */
.bundle-card.hidden-bundle {
    display: none;
}

/* Toggle Button Styling */
.bundles-toggle {
    text-align: center;
}
.bundles-toggle button {
    background-color: #3b82f6; /* info-blue */
    color: white;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.bundles-toggle button:hover {
    background-color: #2563eb; /* Darker info-blue */
}
.bundles-toggle button i {
    font-size: 1.5rem;
}
/* style.css (Add this to the end of your file) */

/* Creates a subtle, repeating noise pattern for the high-tech background */
.bg-hero-pattern {
    /* Base background color (primary-dark) */
    background-color: #0a0914;
    
    /* Subtle radial gradient for depth */
    background-image: 
        radial-gradient(circle at center top, rgba(6, 182, 212, 0.1) 0%, rgba(10, 9, 20, 0) 70%),
        repeating-linear-gradient(
            0deg,
            #0a0914,
            #0a0914 1px,
            rgba(6, 182, 212, 0.05) 1px,
            rgba(6, 182, 212, 0.05) 2px
        );
    background-size: 100% 100%, 100% 50px;
    background-position: center;
}

/* Optional: Keyframe for subtle animations mentioned in the HTML */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0; /* Ensures it starts invisible */
}
.animate-slide-in {
    animation: slideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}
.animate-slide-in.delay-200 { animation-delay: 0.4s; }
.animate-slide-in.delay-400 { animation-delay: 0.6s; }

/* In your style.css or main CSS file */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}
