:root {
    --primary-color: #0d6efd;
    /* Bootstrap Blue equivalent but customizable */
    --secondary-color: #0dcaf0;
    /* Cyan */
    --accent-color: #6610f2;
    /* Purple */
    --dark-bg: #0b0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --gradient-main: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Override Bootstrap text-muted for dark theme */
.text-muted {
    color: var(--text-muted) !important;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.15);
    border-color: var(--secondary-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    background: rgba(11, 14, 20, 0.85);
    /* Dark semi-transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    z-index: 1040;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(11, 14, 20, 0.98) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: rgba(13, 202, 240, 0.15) !important;
    color: var(--secondary-color) !important;
    padding-left: 1.25rem;
}

/* Buttons */
.btn-primary-glow {
    background: var(--gradient-main);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 25px rgba(13, 202, 240, 0.6);
    transform: scale(1.05);
    color: white;
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.4);
}

/* Form Focus Glow */
.focus-glow:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 20, 0.85);
    /* Overlay to make text readable */
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.2) 0%, rgba(13, 202, 240, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    border-radius: 50%;
}

/* Features */
.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Pricing Cards */
.pricing-card {
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.pricing-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.list-check li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.list-check i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
    margin-top: 60px;
}

/* Announcement Banner */
.announcement-banner {
    position: relative;
    z-index: 1030;
    margin-top: 76px;
    /* Height of fixed navbar */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.announcement-banner .alert-info {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(13, 202, 240, 0.95) 100%);
    color: white;
    font-weight: 500;
    padding: .5rem 1rem !important;
    animation: pulse-glow 3s infinite;
    border: none;
    margin: 0 !important;
}

.announcement-banner .alert-info a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.announcement-banner .alert-info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(13, 202, 240, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(13, 202, 240, 0.6);
    }
}