/* Global Styles */
:root {
    --primary-color: #FF9000;
    /* Neon Cyan */
    --secondary-color: #FF9000;
    /* Neon Purple */
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #e0e0e0;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--body-font);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 243, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    margin-left: 20px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.dropdown-menu-dark {
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #000;
}

.fi {
    width: 1.33333333em;
    line-height: 1em;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /* Keep the image but maybe we don't need to change it if canvas is on top */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    /* Ensure content is above, but wait, if canvas is on top... */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

.btn-neon {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-neon:hover {
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.btn-neon:hover::before {
    width: 100%;
}

/* Section General */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    /* Content should also be defined relative to be safe */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Services */
.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.2);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Packages */
.package-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.package-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: #aaa;
    font-weight: 400;
}

.package-body {
    padding: 30px;
    flex-grow: 1;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-body ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-footer {
    padding: 30px;
    text-align: center;
}

/* Contact */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

/* Footer */
footer {
    background: #050505;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .package-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* Custom Utilities */
.text-primary-theme {
    color: var(--primary-color) !important;
}

/* Background Animation */
#led-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* Moved to top */
    pointer-events: none;
    /* Allows clicks to pass through */
}