:root {
    /* Color Palette - Updated to match Direm Pratica Reference */
    --primary-dark: #010c26;
    --logo-orange: #e88024;
    --accent-orange: #e88024;
    --primary-gold: var(--logo-orange);
    --secondary-gold: #f39c12;
    --bg-dark: #010c26;
    --bg-light: #f8f8f8;
    --text-white: #FFFFFF;
    --text-gray: #d1d1d1;
    --text-dark: #1a1a1a;
    --accent-glow: rgba(232, 128, 36, 0.2);
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transitions & Spacing */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --section-padding: 80px 0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .headline {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

/* Premium Layout Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Gold Gradient Text */
.gold-text {
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-dark);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-outline {
    border: 2px solid var(--primary-gold) !important;
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    padding: 18px 0; /* Increased from 12px */
    transition: var(--transition-smooth);
    background: #010411;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sticky-nav.scrolled {
    padding: 8px 0;
    background: #000000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-chevron {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e88024;
    min-width: 240px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1100;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 !important;
}

.dropdown-menu a {
    color: white !important;
    padding: 12px 25px !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px;
    font-weight: 600 !important;
    display: block !important;
    transition: background 0.2s ease !important;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white !important;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-separator {
    width: 1px;
    height: 35px; /* Increased from 30px */
    background: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.nav-socials {
    display: flex;
    gap: 12px;
}

.nav-socials a {
    color: var(--text-white);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-socials a:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.nav-socials i {
    width: 18px;
    height: 18px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    color: var(--accent-orange);
}

.search-btn i {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-image: url('../assets/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.pt-header {
    padding-top: 130px !important;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,51,0.92) 0%, rgba(5,5,16,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.hero-card {
    padding: 60px;
}

.hero-card h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--accent-orange);
    color: white;
    padding: 0 10px;
    display: inline-block;
}

/* Section Common */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-light .section-desc {
    color: #666;
}

/* Ecosystem Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.eco-item {
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.05);
}

.eco-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.08);
}

.eco-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.eco-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Community Section */
.community-highlight {
    background-color: #08081a;
}

.badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.community-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.topics-column h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.topics-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 500;
}

.gold-icon {
    color: var(--primary-gold);
}

.resources-column {
    padding: 50px;
}

.resource-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.resource-card:last-child { margin-bottom: 0; }

.resource-card i {
    color: var(--primary-gold);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.resource-card h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.resource-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.event-date {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
}

.event-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.event-card p {
    z-index: 2;
    position: relative;
}

/* Plans */
.plan-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.plan-card {
    max-width: 550px;
    width: 100%;
    padding: 60px;
    text-align: center;
    border: 2px solid var(--primary-gold);
    position: relative;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    opacity: 0.3;
    pointer-events: none;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin: 25px 0;
    font-family: var(--font-heading);
}

.plan-features {
    text-align: left;
    margin: 40px 0;
}

.plan-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.plan-features li i {
    color: #25D366;
}

.btn-block {
    display: block;
    width: 100%;
}

.plan-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #02020a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
}

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

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

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 1100;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 160px; /* Above the scroll-top button */
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Stats Section */
/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #fff; /* Light background as in reference */
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num-container {
    display: flex;
    align-items: flex-start;
    line-height: 0.8;
    margin-bottom: 10px;
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 300;
    margin-right: -2px;
    margin-top: 8px;
    opacity: 0.8;
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    line-height: 1.2;
    color: inherit;
    font-weight: 600;
    font-family: var(--font-body);
    max-width: 180px;
}

/* Colors from reference */
.stat-orange {
    color: #e88024;
}

.stat-navy {
    color: #010c26;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9fc;
    padding: 100px 0;
    overflow: hidden;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    overflow: visible; /* We want slides to be prepared off-screen */
    margin: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
    padding: 3px;
    background: #fff;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 600;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        flex: 0 0 100%;
        margin: 0;
    }
    .carousel-track {
        gap: 0;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}

.badge-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer Overhauls */
.footer-mailing {
    margin-bottom: 40px;
}

.mailing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.mailing-form input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
}

.mailing-form button {
    background: var(--accent-orange);
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

/* Animations & Utility */
.fade-in { animation: fadeIn 1.2s ease forwards; }
.fade-in-up { opacity: 0; }
.fade-in-up.active { animation: fadeInUp 0.8s ease forwards; }

.delay-2 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.4s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-socials { display: none; }
}

@media (max-width: 992px) {
    .community-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #010411;
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    /* Mobile Dropdown Logic */
    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        display: none;
        padding-left: 20px;
        width: 100%;
    }
    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    .nav-ctas, .nav-extra { display: none; }
    .mobile-menu-toggle { 
        display: block !important; 
        z-index: 2000 !important;
        position: relative;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
    .sticky-nav {
        padding: 5px 0 !important;
    }
    .logo img {
        height: 40px !important;
    }
    .hero-btns { 
        flex-direction: column; 
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    .events-grid { grid-template-columns: 1fr; }
    .hero-card { padding: 30px 15px; }
    .section-title { font-size: 1.8rem; }
    .headline { font-size: 1.8rem !important; line-height: 1.3 !important; }
    .subheadline { font-size: 1rem !important; margin-bottom: 30px !important; }
    
    /* Stats Section Mobile Fix */
    .stats-section { padding: 40px 0; }
    .stat-number { font-size: 2.5rem !important; letter-spacing: -1px; }
    .stat-plus { font-size: 1.5rem !important; }
    .stat-label { font-size: 0.9rem !important; line-height: 1.3; }
    .stat-item { margin-bottom: 30px; }
}
/* FAQ Section Specifics */
.faq-hero {
    background: var(--bg-dark);
    padding-bottom: 60px;
}

.faq-hero-title {
    color: var(--primary-gold);
    margin-bottom: 0;
    text-align: left;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    margin-bottom: 5px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: #fdfdfd;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.faq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    margin-left: -1px;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
    padding: 0 30px 30px;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin-bottom: 15px;
}

.faq-answer-inner ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer-inner ul li {
    margin-bottom: 8px;
}

.faq-answer-inner a {
    color: var(--primary-gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.faq-answer-inner a:hover {
    border-bottom-color: var(--primary-gold);
}

.faq-cta-wrapper {
    margin-top: 50px;
    text-align: left;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 16px 30px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    background-color: #d17520;
    transform: translateX(-5px);
}

.btn-back i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}

/* Faculty Page Specifics */
.faculty-hero {
    background: var(--bg-dark);
    padding-bottom: 60px;
}

.faculty-hero-title {
    color: var(--logo-orange);
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.faculty-hero-subtitle {
    color: var(--logo-orange);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.btn-faculty-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--logo-orange);
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    max-width: 250px;
    margin: 40px auto 0;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-faculty-cta:hover {
    background-color: #d17520;
    transform: translateY(-2px);
    color: white;
}

.faculty-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.faculty-card {
    position: relative;
    overflow: hidden;
    background-color: white;
    transition: var(--transition-smooth);
    display: block;
    border: 1px solid #eee;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faculty-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.faculty-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image-wrapper img {
    transform: scale(1.05);
}

.faculty-name-bar {
    background-color: white;
    padding: 18px 10px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.faculty-name-bar h3 {
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .faculty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faculty-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
}

/* Professor Profile Specifics */
.profile-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.profile-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 120px;
}

.profile-img-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.profile-img-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.profile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-social-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.profile-social-item:hover {
    background-color: var(--logo-orange);
    color: white;
    transform: translateY(-3px);
}

.cv-content h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.cv-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--logo-orange);
}

.cv-content h3 {
    font-size: 1.4rem;
    color: var(--logo-orange);
    margin: 40px 0 20px;
    text-transform: none;
    letter-spacing: 0;
}

.cv-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cv-list {
    list-style: none;
    padding-left: 0;
}

.cv-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
}

.cv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--logo-orange);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .profile-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

.profile-quote-card {
    padding: 30px;
}

.profile-quote-title {
    color: var(--logo-orange);
    margin-bottom: 15px;
}

.profile-quote-text {
    font-style: italic;
    margin-bottom: 0;
}

/* Scroll-to-Top Button */
#scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--logo-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
}

#scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top-btn:hover {
    background-color: #d17520;
    transform: scale(1.1) rotate(5deg);
}

#scroll-top-btn i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    #scroll-top-btn {
        bottom: 110px !important;
        right: 20px !important;
        width: 45px;
        height: 45px;
        opacity: 1 !important; /* Ensure visibility if logic is active */
        z-index: 1500 !important;
    }
    .whatsapp-fixed {
        bottom: 170px !important;
        right: 20px !important;
        z-index: 1500 !important;
    }
}

/* Page Transition Fade-in */
body.page-loading {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.page-loaded {
    opacity: 1;
}

@keyframes fadeInOverlay {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

main, section {
    animation: fadeInOverlay 0.8s ease-out;
}

/* Optimization Utilities */

/* Simple dark footer */
.footer-simple {
    background: var(--bg-dark);
    padding: 30px 0;
    text-align: center;
}

/* Large icons for hero/placeholder sections */
.icon-hero-large {
    width: 80px;
    height: 80px;
    color: var(--logo-orange);
    margin-bottom: 30px;
}

/* Delay classes for fade-in animations */
.delay-2 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-4 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-6 { animation-delay: 0.6s; transition-delay: 0.6s; }

/* Blog special alert card */
.blog-alert-card {
    background: rgba(255,128,0,0.05); 
    border-left: 5px solid var(--logo-orange);
    padding: 30px;
}

.mt-60 { margin-top: 60px; }
.p-30 { padding: 30px; }

.form-header img {
    margin-bottom: 20px;
}

/* ==========================================================================
   STUDENT AREA & DASHBOARD
   ========================================================================== */

.student-area-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #010c26, #000);
    padding: 40px 20px;
}

/* Login Card Case */
.login-card {
    max-width: 450px;
    width: 100%;
    padding: 50px;
    text-align: center;
}

/* Dashboard Layout */
.dashboard-container {
    display: none; /* Hidden by default */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Video Player section */
.video-section {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

/* Lesson Sidebar */
.lesson-sidebar {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
}

.lesson-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.module-group {
    margin-bottom: 25px;
}

.module-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--logo-orange);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 5px;
}

.lesson-item:hover {
    background: rgba(255,255,255,0.05);
}

.lesson-item.active {
    background: rgba(232, 128, 36, 0.1);
    border: 1px solid var(--logo-orange);
}

.lesson-icon {
    color: var(--text-gray);
    flex-shrink: 0;
}

.active .lesson-icon {
    color: var(--logo-orange);
}

.lesson-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lesson-info span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.caps-warning {
    display: none;
    font-size: 0.75rem;
    color: var(--logo-orange);
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.spinner-large {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--logo-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhancing inputs */
.login-card input:focus {
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 3px rgba(232, 128, 36, 0.2);
    outline: none;
}

/* --- Course Landing Page & Grid Styles --- */
.course-card-grid {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
.course-card-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.course-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.course-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.course-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* --- Global Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sticky Bottom CTA (Mobile Only) --- */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(1, 12, 38, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary-gold);
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
    }
    .sticky-cta-mobile .btn {
        flex: 1;
        margin-left: 10px;
    }
    .sticky-cta-mobile .price-label {
        text-align: left;
    }
    .sticky-cta-mobile .price-label span {
        display: block;
        font-size: 0.75rem;
        color: #ccc;
    }
    .sticky-cta-mobile .price-label strong {
        font-size: 1.1rem;
        color: var(--primary-gold);
    }
}

/* --- Course Grid Utility Classes --- */
.badge-practice { background: var(--primary-gold); color: #fff; margin-bottom: 10px; }
.badge-soon { background: #ccc; color: #333; margin-bottom: 10px; }
.course-title { color: var(--primary-dark); margin-bottom: 15px; }
.course-card-desc { color: #666; font-size: 0.95rem; margin-bottom: 25px; }
.course-placeholder-bg { background: var(--primary-dark); display: flex; align-items: center; justify-content: center; }
.placeholder-icon { width: 60px; height: 60px; color: var(--primary-gold); }
.disabled-cta { opacity: 0.5; pointer-events: none; }
