/* ======================================================
    VELTRYXX DARK PERFORMANCE PALETTE & VARIABLES
======================================================= */
:root {
    --v-bg-main: #0B1F3A;
    --v-bg-sec: #112E57;
    --v-highlight: #2F7CF6;
    --v-accent: #5FB3FF;
    --v-text-white: #F8FAFC;
    --v-text-grey: #94A3B8;
}

body {
    font-family: 'system-ui', -apple-system, sans-serif;
    background-color: var(--v-bg-main);
    color: var(--v-text-grey);
    scroll-behavior: smooth;
}

/* Override Global Text Elements */
h1, h2, h3, h4, h5, h6,
.text-dark, .display-3, .display-4, .display-6 {
    color: var(--v-text-white) !important;
}

.text-muted, .text-secondary {
    color: var(--v-text-grey) !important;
}

.text-primary {
    color: var(--v-highlight) !important;
}

/* Custom Button Styling */
.btn-primary {
    background-color: var(--v-highlight);
    border-color: var(--v-highlight);
    color: var(--v-text-white);
    box-shadow: 0 4px 15px rgba(47, 124, 246, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--v-accent);
    border-color: var(--v-accent);
    box-shadow: 0 4px 20px rgba(95, 179, 255, 0.4);
    color: var(--v-bg-main);
}

.btn-outline-light {
    border-color: rgba(248, 250, 252, 0.5);
    color: var(--v-text-white);
}

.btn-outline-light:hover {
    background-color: var(--v-text-white);
    color: var(--v-bg-main);
    box-shadow: 0 4px 15px rgba(248, 250, 252, 0.2);
}

/* ======================================================
    NAVIGATION BAR
======================================================= */
.navbar {
    background-color: rgba(11, 31, 58, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    color: var(--v-text-white) !important;
}

.nav-link {
    color: var(--v-text-grey) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.text-primary {
    color: var(--v-accent) !important;
}

/* ======================================================
    HERO SECTION & GLOW EFFECT
======================================================= */
.hero-section {
    position: relative;
    background: var(--v-bg-main);
    padding: 140px 0 100px;
    overflow: hidden;
}

/* The signature Veltryxx Glow Effect Gradient */
.glow-overlay {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: linear-gradient(135deg, var(--v-highlight) 0%, var(--v-accent) 100%);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* ======================================================
    HERO CAROUSEL / ROLLING PHOTOS (Mobile Responsive)
======================================================= */
.hero-preview-box {
    aspect-ratio: 16 / 9;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.15);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(11, 31, 58, 0.6);
    border: 1px solid rgba(95, 179, 255, 0.2);
    border-radius: 50%;
    padding: 18px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-preview-wrapper {
        margin-top: 40px;
    }
    .hero-preview-box {
        aspect-ratio: 16 / 10;
        min-height: 260px;
    }
    .hero-carousel .carousel-item img {
        object-fit: contain;
    }
}

@media (max-width: 575.98px) {
    .hero-preview-box {
        min-height: 220px;
    }
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        padding: 14px;
    }
    .glow-overlay {
        width: 100%;
        height: 400px;
    }
}

/* ======================================================
    SERVICES SECTION CARDS
======================================================= */
.feature-card {
    background-color: var(--v-bg-sec);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(95, 179, 255, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(47, 124, 246, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(47, 124, 246, 0.15), rgba(95, 179, 255, 0.05));
    color: var(--v-accent);
    border: 1px solid rgba(47, 124, 246, 0.2);
}

/* ======================================================
    PRICING CARDS
======================================================= */
#pricing {
    background-color: #081629;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card {
    background-color: var(--v-bg-sec);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.premium {
    background: linear-gradient(180deg, var(--v-bg-sec) 0%, rgba(47, 124, 246, 0.1) 100%);
    border: 1px solid var(--v-highlight);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 30px rgba(47, 124, 246, 0.15);
    transform: scale(1.02);
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--v-highlight), var(--v-accent));
    color: var(--v-bg-main);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(95, 179, 255, 0.3);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--v-text-grey);
}

.feature-item.includes-all {
    font-weight: 600;
    color: var(--v-accent);
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(95, 179, 255, 0.2);
    margin-bottom: 1.2rem;
}

.pricing-card.premium .feature-item {
    color: var(--v-text-white);
}

.check-icon {
    width: 22px;
    height: 22px;
    background-color: rgba(47, 124, 246, 0.15);
    color: var(--v-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    font-weight: bold;
}

.pricing-card.premium .check-icon {
    background-color: var(--v-highlight);
    color: var(--v-text-white);
    box-shadow: 0 0 10px rgba(95, 179, 255, 0.4);
}

.plus-icon {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--v-text-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing {
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-card:not(.premium) .btn-pricing {
    background-color: transparent;
    color: var(--v-accent);
    border: 1px solid var(--v-text-grey);
    -webkit-text-fill-color: var(--v-text-grey);
}

.pricing-card:not(.premium) .btn-pricing:hover {
    background-color: rgba(95, 179, 255, 0.1);
    box-shadow: 0 0 15px rgba(47, 124, 246, 0.2);
}

.pricing-card.premium .btn-pricing {
    background: linear-gradient(90deg, var(--v-highlight), var(--v-accent));
    color: var(--v-bg-main);
    border: none;
    box-shadow: 0 4px 15px rgba(47, 124, 246, 0.3);
}

.pricing-card.premium .btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 179, 255, 0.5);
    color: var(--v-bg-main);
}

/* ======================================================
    CONTACT SECTION & FORM
======================================================= */
.contact-section .card {
    background-color: var(--v-bg-sec) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.form-control {
    background-color: rgba(11, 31, 58, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--v-text-white) !important;
}

.form-control:focus {
    background-color: rgba(11, 31, 58, 0.8) !important;
    border-color: var(--v-highlight);
    box-shadow: 0 0 0 0.25rem rgba(47, 124, 246, 0.25);
}

.form-label {
    color: var(--v-text-white);
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

/* ======================================================
    FOOTER
======================================================= */
footer {
    background-color: #061222 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}