/* Global Variables */
:root {
    --primary: #00d2ff;
    --primary-dark: #009dc4;
    --secondary: #ffd700;
    /* Gold */
    --secondary-dark: #b89b00;
    --dark: #0a0a12;
    --darker: #050508;
    --light: #e0e0e0;
    --gray: #888888;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.nav-link {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Glow Effects - Toned Down */
.glow-text,
h1,
h2,
.highlight {
    text-shadow: 0 0 5px rgba(0, 210, 255, 0.3),
        0 0 10px rgba(0, 210, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.3));
}


.highlight {
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-glow {
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    transition: var(--transition);
}

.btn-glow:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 15px var(--primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--light);
    margin: 5px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.4);
    /* Lighter base overlay */
    background: radial-gradient(circle, rgba(5, 5, 8, 0.2) 0%, rgba(5, 5, 8, 0.6) 100%);
    /* Lighter gradient */
    z-index: -1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5),
        0 0 20px rgba(0, 210, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Sections General */
section,
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.bg-darker {
    background-color: var(--darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--light);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
    /* Center vertically for the highlighted card */
}

.pricing-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.05) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price .period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 10px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary);
}

.features-list li.disabled {
    color: var(--gray);
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: var(--gray);
}


.text-secondary {
    color: var(--secondary);
}

.highlight-text {
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 210, 255, 0.3);
}

.pricing-card:hover {
    border-color: var(--primary);
}

/* Contact Section */
/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Fix for Select Options */
select option {
    background: var(--dark);
    color: var(--light);
    padding: 10px;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col .social-links {
    display: flex;
    gap: 15px;
}

.footer-col .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.footer-col .social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        width: 100%;
        padding-top: 80px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
    border-radius: 8px;
    animation: zoomIn 0.3s;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--light);
    padding: 20px 0;
    height: 150px;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--light);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    100% {
        transform: scale(1);
    }
}

/* -----------------------------
   Registration Modal Styles 
----------------------------- */
.modal-content-register {
    background: rgba(10, 10, 15, 0.95);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header Decor */
.register-header {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(0, 0, 0, 0));
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.register-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.register-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Form Styles */
.register-form {
    padding: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 2;
    transition: var(--transition);
}

.input-group input {
    padding-left: 45px;
    /* Space for icon */
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    /* Gold Glow */
}

.input-group input:focus+i {
    color: var(--secondary);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    border-radius: 50px;
    /* Pill shape */
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-block:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.register-footer {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.close-register,
.close-login,
.close-forgot {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-register:hover,
.close-login:hover,
.close-forgot:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

/* Feature Card Interaction */
.feature-card[data-image] {
    cursor: pointer;
}

.feature-card[data-image]:hover .icon-box i {
    transform: scale(1.2);
    text-shadow: 0 0 15px var(--primary);
}