/* ===================================
   SkyFi - Premium Dark Theme
   Color Scheme: Dark Navy (#1a1f2e), Tomato Red (#FF6347), White (#FFFFFF)
   Premium Luxury Design
   =================================== */

/* Root Variables - Premium Dark Theme */
:root {
    /* Primary Colors */
    --dark-bg: #1a1f2e;
    --darker-bg: #14181f;
    --tomato: #FF6347;
    --tomato-dark: #E5533D;
    --tomato-light: #FF7F66;
    --white: #FFFFFF;
    --off-white: #E8ECEF;

    /* Accents */
    --gold: #FFD700;
    --silver: #C0C0C0;

    /* Grays */
    --gray-100: #2a3042;
    --gray-200: #3a4052;
    --gray-300: #596073;
    --gray-400: #8a92a5;
    --gray-500: #b0b7c3;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-tomato: 0 8px 30px rgba(255, 99, 71, 0.3);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    color: var(--off-white);
    background-color: var(--darker-bg);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 99, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 99, 71, 0.05) 0%, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    pointer-events: none;
    z-index: 1;
}

body>* {
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

/* Custom Scrollbar - Premium Dark */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-left: 1px solid var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tomato) 0%, var(--tomato-dark) 100%);
    border-radius: 6px;
    border: 2px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--tomato-light) 0%, var(--tomato) 100%);
}

/* Navigation - Premium Dark */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(20, 24, 31, 0.98) 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 99, 71, 0.1);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 99, 71, 0.2);
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--tomato) 50%, transparent 100%);
    opacity: 0.3;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    color: var(--white) !important;
    text-shadow: 0 2px 10px rgba(255, 99, 71, 0.3);
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(255, 99, 71, 0.5);
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(255, 99, 71, 0.3));
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 34px;
        max-width: 115px;
    }
}

.brand-text {
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    color: var(--gray-500) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tomato) 0%, var(--tomato-light) 100%);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 99, 71, 0.1);
    color: var(--white) !important;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    background: rgba(255, 99, 71, 0.15);
    color: var(--tomato-light) !important;
}

.nav-link.active::before {
    width: 80%;
}

.location-display {
    background: rgba(255, 99, 71, 0.15);
    border-radius: 20px;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
    color: var(--white) !important;
    border: 1px solid rgba(255, 99, 71, 0.3);
}

.location-select-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 99, 71, 0.15);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    color: var(--white);
    border: 1px solid rgba(255, 99, 71, 0.3);
}

.location-select {
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    padding: 0 0.5rem;
}

.location-select option {
    background: var(--dark-bg);
    color: var(--white);
}

.location-select option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 992px) {
    .location-select-wrapper {
        margin: 0;
    }
}

/* Hero Slider - Premium Dark */
.hero-slider {
    margin-top: 76px;
    position: relative;
}

.carousel-item {
    height: 600px;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(20, 24, 31, 0.85) 100%);
    z-index: 0;
}

.slide-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.slide-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.slide-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Button Styles - Premium Dark */
.btn-square {
    border-radius: var(--border-radius) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn-square::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-square:hover::before {
    width: 300px;
    height: 300px;
}

.btn-square:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-crimson);
}

.btn-danger,
.btn-primary {
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-danger:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--tomato-light) 0%, var(--tomato) 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    color: var(--tomato);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    border: 2px solid var(--gray-300);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: var(--white);
    color: var(--tomato);
    border-color: var(--white);
}

/* Carousel Controls - Premium Dark */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 99, 71, 0.8);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--tomato);
    transform: scale(1.1);
    box-shadow: var(--shadow-crimson);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-indicators button.active {
    background-color: var(--tomato);
    width: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-crimson);
}

/* Stats Section - Premium Dark */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    border-top: 1px solid rgba(255, 99, 71, 0.2);
    border-bottom: 1px solid rgba(255, 99, 71, 0.2);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255, 99, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 99, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.8) 100%);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 99, 71, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 99, 71, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-crimson);
    border-color: var(--tomato);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-crimson);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
    box-shadow: 0 8px 30px rgba(255, 99, 71, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--tomato-light) 0%, var(--tomato) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles - Premium Dark */
.vouchers-section,
.utilities-section,
.tutorials-section {
    padding: 5rem 0;
    position: relative;
}

.utilities-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(255, 99, 71, 0.1);
    border-bottom: 1px solid rgba(255, 99, 71, 0.1);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--tomato) 0%, var(--tomato-light) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 99, 71, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
}

/* Voucher Cards - Premium Dark */
.voucher-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 99, 71, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tomato) 0%, var(--tomato-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.voucher-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 99, 71, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.voucher-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-crimson);
    border-color: var(--tomato);
}

.voucher-card:hover::before {
    transform: scaleX(1);
}

.voucher-card:hover::after {
    opacity: 1;
}

.voucher-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.voucher-card.popular::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--gold) 0%, #FFA500 100%);
}

.voucher-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-crimson);
    z-index: 10;
}

.voucher-badge.bg-primary {
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
}

.voucher-badge.bg-success {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--dark-bg);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    z-index: 10;
}

.voucher-header {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 5;
}

.voucher-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.voucher-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--tomato-light) 0%, var(--tomato) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.voucher-data {
    font-size: 1.1rem;
    color: var(--gray-400);
    font-weight: 600;
}

.voucher-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: none;
}

.voucher-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.85rem;
}

.voucher-features li:last-child {
    border-bottom: none;
}

.voucher-features li:hover {
    color: var(--tomato-light);
    padding-left: 10px;
}

.voucher-features i {
    color: var(--tomato);
    margin-right: 0.5rem;
}

/* Utility Cards - Premium Dark */
.utility-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 99, 71, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 99, 71, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.utility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-crimson);
    border-color: var(--tomato);
}

.utility-card:hover::before {
    opacity: 1;
}

.utility-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.utility-card:hover .utility-icon {
    transform: scale(1.1) rotate(5deg);
}

.utility-icon.electricity {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.utility-icon.airtime {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.utility-icon.data {
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
    box-shadow: var(--shadow-crimson);
}

.utility-icon.cable {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
}

.utility-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.utility-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Tutorial Cards - Premium Dark */
.tutorial-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 99, 71, 0.2);
    cursor: pointer;
    height: 100%;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-crimson);
    border-color: var(--tomato);
}

.tutorial-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    background: var(--darker-bg);
}

.tutorial-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tutorial-card:hover .tutorial-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 99, 71, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-crimson);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tutorial-card:hover .play-button {
    background: var(--tomato-light);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(255, 99, 71, 0.6);
}

.tutorial-info {
    padding: 1.5rem;
}

.tutorial-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tutorial-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer - Premium Dark */
.footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #000 100%);
    color: var(--off-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 99, 71, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--tomato) 50%, transparent 100%);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 99, 71, 0.3));
}

@media (max-width: 768px) {
    .footer-logo {
        height: 45px;
        max-width: 150px;
    }
}

.footer-text {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--tomato);
    border-color: var(--tomato);
    transform: translateY(-3px);
    box-shadow: var(--shadow-crimson);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--tomato) 0%, transparent 100%);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--tomato-light);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-400);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling - Premium Dark */
.modal-content {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--dark-bg) 100%);
    border: 1px solid rgba(255, 99, 71, 0.3);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--white);
}

.modal-body {
    background: var(--darker-bg);
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Form Elements - Premium Dark */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 99, 71, 0.3);
    color: var(--white);
    border-radius: var(--border-radius);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tomato);
    box-shadow: 0 0 0 0.2rem rgba(255, 99, 71, 0.25);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-label {
    color: var(--gray-400);
    font-weight: 500;
}

/* Fix dropdown options visibility - dark grey on white */
.form-select option {
    background: var(--white);
    color: #333333;
    padding: 0.5rem;
}

.form-control option {
    background: var(--white);
    color: #333333;
    padding: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Loading/Disabled States - Premium Dark */
.btn-square.disabled,
.btn-square:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-200);
}

/* Premium Glow Effects */
.glow-crimson {
    box-shadow: 0 0 20px rgba(255, 99, 71, 0.5);
}

.glow-gold {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Utility Classes */
.text-crimson {
    color: var(--tomato-light) !important;
}

.bg-dark-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.9) 100%);
}

.border-crimson {
    border-color: var(--tomato) !important;
}

/* ===================================
   Video Card & Player Styling
   =================================== */

/* Video Card Styling */
.video-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(42, 48, 66, 0.9) 100%);
    border: 1px solid rgba(255, 99, 71, 0.2);
    /* height: 100%; matches card class */
    color: var(--white);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-crimson);
    border-color: var(--tomato);
}

.group-hover-zoom {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.group-hover-zoom img {
    transition: transform 0.5s ease;
}

.video-card:hover .group-hover-zoom img {
    transform: scale(1.1);
}

.play-overlay {
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.play-icon-wrapper {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.8);
    background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
}

.video-card:hover .play-icon-wrapper {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 99, 71, 0.6);
}

/* Video Modal Styling */
#videoModal .modal-content {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 99, 71, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

#videoModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-bg);
}

#videoModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.video-player-container {
    background: #000;
}