@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Future Education Premium CSS Design System
   Created for a high-end educational consultant experience.
   Uses modern HSL-based color tokens, glowing animations, and glassmorphic filters.
*/

:root {
    /* Color Tokens */
    --bg-dark-base: #080c14;
    --bg-dark-surface: #0f1624;
    --bg-dark-elevated: #162035;
    
    --primary: #6366f1; /* Neon Indigo */
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #a855f7; /* Cyber Purple */
    --secondary-glow: rgba(168, 85, 247, 0.4);
    --accent-cyan: #06b6d4; /* Electric Cyan */
    --accent-cyan-glow: rgba(6, 182, 212, 0.3);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --glass-bg: rgba(15, 22, 36, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
    --gradient-accent-text: linear-gradient(135deg, #06b6d4 0%, #6366f1 50%, #a855f7 100%);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Global Reset & Page Setup --- */
html, body {
    background-color: var(--bg-dark-base);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.7;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-base);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-dark-base);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Background Mesh Aurora Glow --- */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out alternate;
}

.sphere-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
    animation-duration: 25s;
}

.sphere-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
    animation-duration: 30s;
}

.sphere-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 80%);
    animation-duration: 20s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 10%) scale(1.15); }
}

/* Grid overlay for high-tech feeling */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

/* --- Premium Buttons --- */
.btn-premium {
    position: relative;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    color: #fff;
    background: var(--gradient-hero);
    border: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--secondary-glow);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium-outline {
    position: relative;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.btn-premium-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

/* --- Navigation Bar --- */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar-glass.scrolled {
    padding: 0.6rem 0;
    background: rgba(8, 12, 20, 0.9);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.navbar-brand-premium {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav-link-premium {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-family: var(--font-heading);
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: var(--text-main) !important;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Custom Dropdown Animations & Glassmorphism styling */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu-premium {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu-premium {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    background: rgba(15, 22, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 16px;
    padding: 1rem;
    min-width: 280px;
}

.dropdown-item-premium {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dropdown-item-premium i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.dropdown-item-premium:hover {
    color: var(--text-main);
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(5px);
}

.dropdown-item-premium:hover i {
    color: var(--accent-cyan);
    transform: scale(1.2);
}

/* Custom Hamburger Toggler */
.custom-drawer-toggler {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.custom-drawer-toggler:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

@media (max-width: 991.98px) {
    .custom-drawer-toggler {
        display: flex;
    }
    .navbar-collapse {
        display: none !important; /* Force hide standard bootstrap collapse nav */
    }
}

/* Custom Left-to-Right Drawer CSS */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background: rgba(10, 15, 26, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid var(--glass-border);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 8, 14, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}

body.drawer-open {
    overflow: hidden !important;
}

/* Drawer Internal Layout */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.8rem;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.btn-close-drawer:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
}

.drawer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav li {
    margin-bottom: 1.2rem;
}

.drawer-link {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: var(--transition-fast);
}

.drawer-link.drawer-dropdown-toggle {
    justify-content: space-between;
}

.drawer-link i:not(.fa-chevron-down) {
    display: none !important;
}

.drawer-link:hover,
.drawer-link.active {
    color: #fff;
    padding-left: 5px;
}

.drawer-dropdown-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.drawer-dropdown-toggle.active i {
    transform: rotate(180deg);
}

/* Drawer Dropdown Menu */
.drawer-dropdown-menu {
    list-style: none;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
}

.drawer-dropdown-menu.show {
    display: block;
}

.drawer-dropdown-menu li {
    margin-bottom: 0.8rem;
}

.drawer-dropdown-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-fast);
}

.drawer-dropdown-menu a i {
    font-size: 0.85rem;
    color: var(--primary);
}

.drawer-dropdown-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

/* --- Hero Section --- */
.hero-section {
    padding: 9rem 0 6rem 0;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-title span {
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* Floating interactive items in Hero */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, var(--glass-border) 0%, rgba(99, 102, 241, 0.2) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.05);
}

.hero-badge-floating {
    position: absolute;
    background: rgba(15, 22, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 5;
    animation: floatUpDown 6s infinite ease-in-out alternate;
}

@media (max-width: 575.98px) {
    .hero-badge-floating {
        display: none !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .badge-1 {
        left: 0;
        top: 0;
    }
    .badge-2 {
        right: 0;
        bottom: 0;
    }
}

@media (min-width: 992px) {
    .badge-1 {
        top: 10%;
        left: -8%;
    }
    .badge-2 {
        bottom: 15%;
        right: -5%;
    }
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.badge-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Stats Counter Section --- */
.stats-section {
    padding: 2rem 0;
    position: relative;
}

.stats-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0;
}

/* --- Section Styling --- */
.section-padding {
    padding: 5rem 0;
    position: relative;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: inline-block;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-title span {
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.05rem;
}

/* --- About Us Cards --- */
.about-card {
    background: var(--bg-dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.8rem;
    border: 1px solid rgba(168, 85, 247, 0.25);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-icon {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--secondary-glow);
}

.about-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* --- Services Section --- */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 35px var(--glass-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 25px 45px rgba(6, 182, 212, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.25);
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--accent-cyan);
    color: var(--bg-dark-base);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-cyan-glow);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Custom premium modal styling */
.modal-premium .modal-content {
    background: var(--bg-dark-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    color: var(--text-main);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.modal-premium .modal-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.8rem 2rem 1.2rem 2rem;
}

.modal-premium .modal-body {
    padding: 2rem;
}

.modal-premium .modal-footer {
    border-top: 1px solid var(--glass-border);
    padding: 1.2rem 2rem 1.8rem 2rem;
}

.modal-premium .btn-close {
    background-color: #fff;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.modal-premium .btn-close:hover {
    opacity: 1;
}

.modal-info-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* --- Why Choose Us Section --- */
.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.why-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Testimonial slider */
.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.user-info h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars-glow {
    color: #f59e0b;
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-muted);
    border: none;
    margin: 0 6px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.carousel-indicators .active {
    width: 28px;
    border-radius: 10px;
    background-color: var(--primary);
    opacity: 1;
}

/* --- Contact Us Section --- */
.contact-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 50px var(--glass-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.8rem;
    /* height: 100%; */
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-details h5 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.contact-info-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Premium Form Styling */
.form-group-premium {
    position: relative;
    margin-bottom: 2rem;
}

.form-control-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-main) !important;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

select.form-control-premium option {
    background-color: var(--bg-dark-surface);
    color: var(--text-main);
}

.form-control-premium:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
    outline: none;
}

.form-label-premium {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-control-premium:focus ~ .form-label-premium,
.form-control-premium:not(:placeholder-shown) ~ .form-label-premium {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    padding: 0 0.4rem;
    background: var(--bg-dark-surface);
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
}

/* Map placeholder/styled panel */
.map-premium {
    height: 250px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.map-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) saturate(120%) opacity(0.85);
}

/* --- Footer --- */
.footer-premium {
    background: #05080e;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem 0;
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-hero);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Custom Tweak Overrides --- */
/* Fix right side informational cards height to match content */
.col-lg-4 .about-card {
    height: auto;
}

/* Ensure inputs, select boxes, textareas, and buttons inherit the correct brand typography */
input, select, textarea, button {
    font-family: var(--font-body);
}

/* Ensure headings/special links are explicitly styled with Outfit font to override Bootstrap defaults */
h1, h2, h3, h4, h5, h6, .btn-premium, .btn-premium-outline, .navbar-brand-premium, .nav-link-premium {
    font-family: var(--font-heading);
}

/* Override Bootstrap's text-muted utility to ensure good contrast on dark backgrounds */
.text-muted {
    color: var(--text-muted) !important;
}

/* Ensure table header and cell texts are high-contrast and legible */
.table-dark th {
    color: var(--text-main) !important;
    font-family: var(--font-heading);
    font-weight: 600;
}

.table-dark td {
    color: #e2e8f0 !important;
}

/* --- Mobile Responsive Spacing & Layout Fixes --- */
@media (max-width: 768px) {
    /* Reduce spacing between sections */
    .section-padding {
        padding: 2.5rem 0 !important;
    }
    
    /* Reduce Hero section padding to fit mobile viewport */
    .hero-section {
        padding: 7rem 0 3rem 0 !important;
    }
    
    /* Reduce vertical spacing between columns/gutters in Bootstrap rows */
    .row.g-5 {
        --bs-gutter-y: 1.5rem !important;
        --bs-gutter-x: 1.5rem !important;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem !important;
        --bs-gutter-x: 1rem !important;
    }
    
    /* Reduce footer padding */
    .footer-premium {
        padding: 3rem 0 1.5rem 0 !important;
    }
    
    /* Adjust about cards padding */
    .about-card {
        padding: 1.5rem !important;
    }
    
    /* Reduce heading font-sizes slightly for cleaner mobile headings */
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .footer-title {
        margin-top: 1rem;
    }
}

