/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Color Palette - Premium Professional (Midnight Gold) */
    --primary: #F2B827; /* Rich Gold */
    --primary-light: #FAD058;
    --primary-dark: #C6941A;
    --secondary: #D4AF37; /* Warm Gold */
    --secondary-glow: rgba(242, 184, 39, 0.4);
    --dark-bg: #080808; /* Deep Charcoal Black */
    --darker-bg: #000000;
    --card-bg: rgba(18, 18, 18, 0.75); /* Zinc 900 equivalent */
    --light-text: #f8fafc;
    --gray-text: #a1a1aa;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-glow: linear-gradient(90deg, var(--primary), #fef08a, var(--primary));
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(14, 165, 233, 0.25);
}

/* ==========================================================================
   Premium Utility Classes
   ========================================================================== */
.glass-card {
    background: var(--card-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;
}

.hover-glow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.hover-glow:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--secondary-glow) !important;
    border-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
    text-shadow: 0 0 15px var(--secondary-glow);
}

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

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.35;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary-glow);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    word-break: break-word;
}

p {
    text-align: justify;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 120px 0;
}

.bg-darker {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 245, 212, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--light-text);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(0, 245, 212, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 245, 212, 0.2);
}

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

/* ==========================================================================
   Navigation (Glassmorphism)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

/* Custom Branding Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.brand-icon {
    font-size: 2.2rem;
    color: var(--primary);
    text-shadow: 0 0 15px var(--secondary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 2px;
}

.brand-title .cursive-with {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: lowercase;
}

.brand-title .highlight-gold {
    color: var(--primary);
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.brand-subtitle .line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--secondary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-text);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

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

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-wrapper:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   Statistics
   ========================================================================== */
.statistics {
    background: linear-gradient(90deg, rgba(10,10,10,0.8) 0%, rgba(30,20,40,0.8) 50%, rgba(10,10,10,0.8) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.stat-item p {
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
    text-align: center;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
    text-shadow: 0 0 20px var(--secondary-glow);
}

/* ==========================================================================
   Courses Section
   ========================================================================== */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
    justify-content: center;
}

.course-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
}

.course-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(0, 245, 212, 0.4);
}

.course-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.15);
}

.course-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--card-bg), transparent);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.course-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.course-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.course-card:hover .course-info h3 {
    color: var(--secondary);
}

.course-info p {
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--light-text);
}

/* ==========================================================================
   CTA / Contact Section
   ========================================================================== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 50px;
    border-radius: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-text);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-form input {
    flex-grow: 1;
    padding: 18px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}

.cta-form input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #030303;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--gray-text);
    margin: 25px 0;
    max-width: 350px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(10deg);
    color: var(--dark-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-links h4, .footer-contact h4 {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.footer-bottom p {
    text-align: center;
}

/* ==========================================================================
   Animations & Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--darker-bg);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 15px var(--secondary-glow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--primary);
    cursor: pointer;
}

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

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 25px var(--secondary-glow);
    color: var(--darker-bg);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.5rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .cta-content { padding: 60px 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-icon {
        display: block;
        z-index: 1001;
    }
    
    /* Global Spacing & Typography Fixes */
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .highlight { white-space: normal !important; display: inline !important; }
    .inner-header { padding: 120px 0 50px !important; }
    .btn { max-width: 100% !important; white-space: normal !important; }
    h1, h2, h3 { line-height: 1.3; }
    
    .hero { padding-top: 130px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto 30px; font-size: 1rem; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .hero-image { margin-top: 40px; }
    
    .course-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; gap: 30px; }
    .rules-box { padding: 25px; }
    .pricing-track { flex-direction: column; gap: 30px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .footer-about p { margin: 20px auto; }
    .social-links { justify-content: center; }
    .footer-links h4::after, .footer-contact h4::after { left: 25%; width: 50%; }
    .cta-form { flex-direction: column; }
    .cta-form button { width: 100%; }
    .cta-content { padding: 40px 20px; }
    .cta-content h2 { font-size: 2rem; }
}

/* ==========================================================================
   Inner Page Elements & Features
   ========================================================================== */
.inner-header {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.circular-frame {
    border-radius: 50% !important;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3) !important;
}

.circular-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Mentorship Visuals Layout */
.mentorship-visuals {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentorship-visuals .mentorship-hero-img {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.mentorship-visuals .mentorship-hero-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-card {
    position: absolute;
    width: 290px;
    padding: 25px;
    border-radius: 20px;
    z-index: 2;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.6;
}

.floating-card.top-right {
    top: -10px;
    right: -15px;
}

.floating-card.bottom-left {
    bottom: -10px;
    left: -15px;
}

.floating-card .feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

@media (max-width: 1200px) {
    .floating-card.top-right {
        right: 0;
    }
    .floating-card.bottom-left {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .mentorship-visuals {
        display: flex;
        flex-direction: column;
        gap: 25px;
        min-height: auto;
        margin-top: 30px;
    }
    .mentorship-visuals .mentorship-hero-img {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .floating-card {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        bottom: auto;
    }
}

.hero-subtitle-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--secondary-glow);
}

/* Features Grid (About Page) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-glow);
}

.check-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.feature-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Program Grid (Mind Gym) */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.program-content .lead {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.info-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--primary);
    padding: 25px;
    border-radius: 20px;
}

.info-box h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.lead-sm {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Pricing Section (Mentorship) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-header .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.pricing-header .duration {
    color: var(--gray-text);
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-body ul {
    list-style: none;
}

.pricing-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-text);
    font-size: 1.05rem;
}

.pricing-body ul li i {
    color: var(--secondary);
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

/* ==========================================================================
   Pricing 4 Columns (Mind Gym Page)
   ========================================================================== */
.pricing-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.pricing-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
}

.price-strike {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.stats-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-light);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   Video Placeholder
   ========================================================================== */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.video-placeholder:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.2);
}

.play-button-glow {
    font-size: 4rem;
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary-glow);
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover .play-button-glow {
    transform: scale(1.1);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* ==========================================================================
   Bonus Section
   ========================================================================== */
.bonus-box {
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.6) 0%, rgba(20, 20, 25, 0.6) 100%);
    backdrop-filter: blur(15px);
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-glow);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.bonus-item:hover {
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.bonus-item span {
    font-weight: 500;
    color: var(--light-text);
    font-size: 1.05rem;
}

.bonus-item strong {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    /* Auto-fit handles grids now */
}

@media (max-width: 768px) {
    /* Auto-fit handles grids now */
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 20px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Rules Box Section
   ========================================================================== */
.rules-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-subtle);
}

.rules-box ol {
    padding-left: 20px;
}

.rules-box ol li {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ==========================================================================
   Floating WhatsApp Button (Circular FAB)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}



@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Header Mobile WhatsApp Styles
   ========================================================================== */
.nav-right-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-right-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .whatsapp-nav-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50%;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        transition: var(--transition);
    }
    
    .whatsapp-nav-mobile:hover {
        background-color: #128c7e;
        transform: scale(1.05);
        color: #fff;
    }
}

/* ==========================================================================
   Page Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.logo-loader-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    border-radius: 50%;
    animation: spin-loader 1.5s linear infinite;
}

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

/* ==========================================================================
   Testimonials Grid (Home Page)
   ========================================================================== */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.testimonials-track .testimonial-card {
    flex-shrink: 0;
    box-sizing: border-box;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Card hover Web3 Glow (updates via JS variables) */
.course-card:hover, .feature-card:hover, .pricing-card:hover, .testimonials-track .testimonial-card:hover {
    background: radial-gradient(circle 180px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.08), transparent 100%), var(--card-bg);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.user-info-meta {
    flex-grow: 1;
}

.user-info-meta h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--light-text);
}

.user-role {
    font-size: 0.85rem;
    color: var(--secondary);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.25);
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 5px;
    color: #e0b034; /* soft gold stars */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

/* Category Badges */
.badge-wealth {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.badge-mindset {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.1);
}

.badge-relation {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.1);
}

.badge-family {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.1);
}

.badge-career {
    background: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
    border-color: rgba(26, 188, 156, 0.3);
    box-shadow: 0 0 10px rgba(26, 188, 156, 0.1);
}

.badge-health {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.1);
}

.testimonial-text {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Highlight inside review text */
.highlight-text {
    color: var(--primary-light);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* Carousel Footer Navigation & Dot Styles */
.carousel-footer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(16, 18, 27, 0.6);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .testimonials-track {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-track {
        gap: 0;
    }
    .testimonials-track .testimonial-card {
        padding: 22px 18px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   Background Particle Canvas
   ========================================================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* ==========================================================================
   Testimonials Carousel, Badges & Avatars
   ========================================================================== */
.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.user-info-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-info-meta h5 {
    margin-bottom: 2px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark-bg);
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.stars {
    color: #e0b034;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(224, 176, 52, 0.3);
    text-align: left;
}

/* Glowing Badges */
.badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.badge-wealth {
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-light);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.badge-mindset {
    background: rgba(108, 92, 231, 0.12);
    color: #b388ff;
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.15);
}

.badge-relation {
    background: rgba(255, 0, 127, 0.12);
    color: #ff80ab;
    border-color: rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.15);
}

.badge-family {
    background: rgba(0, 180, 216, 0.12);
    color: #90e0ef;
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.15);
}

.badge-career {
    background: rgba(0, 245, 212, 0.12);
    color: #80ffec;
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.15);
}

.badge-health {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.15);
}

.highlight-text {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(243, 229, 171, 0.2);
}

/* Carousel Layout */
.testimonials-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.testimonials-track .testimonial-card {
    flex-shrink: 0;
    box-sizing: border-box;
    height: auto;
    min-height: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonials-track .testimonial-card .testimonial-text {
    margin-bottom: 0;
    flex-grow: 1;
    text-align: left;
}

/* Testimonials Header Layout */
.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonials-title-area {
    flex: 1;
}

.testimonials-nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

/* Controls */
.carousel-footer-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
    .testimonials-track .testimonial-card {
        width: 100%;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .testimonials-title-area h2.section-title {
        font-size: 1.6rem !important;
    }

    .testimonials-nav-buttons {
        gap: 10px;
    }

    .testimonials-nav-buttons .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .testimonials-carousel-wrapper {
        padding: 10px 0;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials-track .testimonial-card {
        width: 100%;
        min-height: auto;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .carousel-footer-controls {
        gap: 15px;
        margin-top: 25px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 22px;
    }
}

/* ==========================================================================
   Testimonial Modal Styles
   ========================================================================== */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.modal-wrapper {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 2001;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-modal.active .modal-wrapper {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Custom Scrollbar for Modal content */
.modal-wrapper::-webkit-scrollbar {
    width: 6px;
}

.modal-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.modal-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.modal-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.4);
}

.modal-body-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-text);
    text-align: left;
    margin-top: 15px;
}

/* Read More Link inside Testimonial Cards */
.read-more-link {
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    transition: var(--transition);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
    align-self: flex-start;
}

.read-more-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* CSS Clamping */
.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}









/* ==========================================================================
   Videos Carousel & Modal Styles
   ========================================================================== */
.videos-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.videos-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.videos-track .video-card {
    width: calc(33.333% - 20px);
    flex-shrink: 0;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    transition: transform 0.3s ease, color 0.3s ease;
}

.video-card:hover .play-overlay i {
    transform: scale(1.1);
    color: #fff;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    z-index: 3001;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .videos-track .video-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .videos-track .video-card {
        width: 100%;
    }
    .video-modal-close {
        top: 10px;
        right: 10px;
        z-index: 3002;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-track {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: auto !important;
    }
    .video-track .video-card {
        flex: 0 0 100% !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
}

/* ==========================================================================
   Video Carousel & Popup Styles
   ========================================================================== */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 5;
    border: 2px solid rgba(255,255,255,0.3);
}

.video-card:hover .play-btn-overlay {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(242, 184, 39, 0.5);
    border-color: white;
}

/* ==========================================================================
   New Testimonial Styles (Clean, Dark Cards, Quote Icon)
   ========================================================================== */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.testimonials-nav-buttons {
    display: flex;
    gap: 15px;
}
.testimonials-nav-buttons .carousel-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.testimonials-nav-buttons .carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.testimonials .testimonial-card {
    background: var(--card-bg) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-sizing: border-box;
}
.testimonials .testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c9a43a;
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
}
.testimonials .testimonial-text {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}
.testimonials .avatar-circle,
.testimonials .badge,
.testimonials .stars {
    display: inline-flex !important;
}
.testimonials .testimonial-card-header {
    display: flex !important;
    align-items: center;
    gap: 12px;
    order: 3;
    padding-top: 0;
    margin-top: auto;
}
.testimonials .user-info-meta h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.testimonials .user-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

/* ==========================================================================
   Critical Mobile Fixes (Overrides for late-declared grids & Header/Footer)
   ========================================================================== */
@media (max-width: 768px) {
    /* Grid overrides */
    .features-grid, 
    .program-grid, 
    .pricing-grid, 
    .bonus-grid,
    .about-features,
    .course-grid,
    .stats-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Disable JS Pricing Slider and Stack Vertically on Mobile */
    .pricing-carousel-wrapper {
        overflow: visible !important;
    }
    .pricing-track {
        flex-direction: column !important;
        transform: none !important;
        gap: 30px !important;
        width: 100% !important;
    }
    .pricing-track .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    #pricing-dots, #pricing-prev, #pricing-next,
    .pricing-carousel-wrapper ~ .carousel-footer-controls,
    .pricing .carousel-footer-controls {
        display: none !important;
    }

    /* Testimonials: horizontal slide carousel on mobile */
    .testimonials-carousel-wrapper {
        overflow: hidden !important;
    }
    .testimonials-track {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: auto !important;
    }
    .testimonials-track .testimonial-card {
        flex-shrink: 0 !important;
    }
    .testimonials-carousel-wrapper ~ .carousel-footer-controls,
    .testimonials .carousel-footer-controls {
        display: flex !important;
    }
    
    /* Header overrides */
    .brand-title {
        font-size: 1.1rem !important;
    }
    .brand-title .cursive-with {
        font-size: 0.85rem !important;
    }
    .brand-icon i {
        font-size: 1.6rem !important;
    }
    .brand-logo {
        gap: 6px !important;
    }
    .nav-right-mobile {
        gap: 10px;
    }
    .whatsapp-nav-mobile {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    /* Footer overrides */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        gap: 35px !important;
    }
    .footer-about p {
        margin: 15px 0 !important;
    }
    .social-links {
        justify-content: flex-start !important;
    }
    .footer-links h4::after, .footer-contact h4::after {
        left: 0 !important;
        width: 50px !important;
    }
    .footer-contact p {
        word-break: normal;
        overflow-wrap: break-word;
    }
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* YouTube Video Modal Mobile Fixes */
    #youtube-modal .modal-wrapper {
        width: 95% !important;
        padding: 0 !important;
        border-radius: 10px !important;
        background: transparent !important;
    }
    #youtube-modal .modal-close {
        top: -45px !important;
        right: 0 !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
        touch-action: manipulation;
    }
    #youtube-modal .video-container {
        border-radius: 10px !important;
    }
}

/* ==========================================================================
   Payment Modal Specific Styles
   ========================================================================== */
#payment-modal .modal-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.05) !important;
}

#payment-form input, #payment-form textarea {
    transition: var(--transition);
}

#payment-form input:focus, #payment-form textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(242, 184, 39, 0.3) !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

#payment-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

#payment-modal-close:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

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

@media (max-width: 768px) {
    /* Responsive Modals (Payment & YouTube) */
    .testimonial-modal {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonial-modal .modal-wrapper {
        margin: 20px auto !important;
        max-height: none !important;
        width: 95% !important;
        padding: 24px 16px !important;
        transform: scale(0.9) translateY(10px);
    }
    
    .testimonial-modal.active .modal-wrapper {
        transform: scale(1) translateY(0);
    }

    #payment-modal-close {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Make success buttons and code blocks fully responsive */
    #success-whatsapp-btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    #payment-modal-success-view code,
    #payment-modal-success-view span,
    #payment-modal-success-view p {
        word-break: break-all !important;
        white-space: normal !important;
    }
}

/* Extra small viewport overrides (e.g. <360px) */
@media (max-width: 360px) {
    .brand-title {
        font-size: 0.95rem !important;
    }
    .brand-icon i {
        font-size: 1.4rem !important;
    }
}

/* ==========================================================================
   Blog Section — Premium Dark/Gold Theme
   ========================================================================== */

/* Blog Hero */
.blog-hero {
    padding-top: 160px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
}

.blog-hero-content h1 {
    margin-bottom: 15px;
}

/* Category Filter Pills */
.blog-filter-section {
    padding: 20px 0 0;
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 5px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    background: rgba(242, 184, 39, 0.08);
    border-color: rgba(242, 184, 39, 0.2);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(242, 184, 39, 0.3);
}

/* Blog Card Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--card-bg), transparent);
    pointer-events: none;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242,184,39,0.08) 0%, rgba(18,18,18,0.9) 100%);
    font-size: 3rem;
    color: rgba(242, 184, 39, 0.2);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-text);
}

.blog-card-meta i {
    color: var(--primary);
    font-size: 0.85rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--gray-text);
    font-size: 0.93rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-state .empty-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(242, 184, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: rgba(242, 184, 39, 0.3);
}

.blog-empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-empty-state p {
    color: var(--gray-text);
    font-size: 1rem;
    text-align: center;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(242, 184, 39, 0.08);
    border-color: rgba(242, 184, 39, 0.2);
    color: var(--primary);
}

.page-btn.active {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(242, 184, 39, 0.3);
}

/* ==========================================================================
   Blog Post Page
   ========================================================================== */

/* Blog Post Hero */
.blog-post-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-top: 100px;
}

.blog-post-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(8, 8, 8, 0.3) 0%, 
        rgba(8, 8, 8, 0.6) 40%, 
        rgba(8, 8, 8, 0.95) 100%);
}

.blog-post-cover-empty {
    background: linear-gradient(135deg, rgba(242,184,39,0.05) 0%, rgba(8,8,8,1) 100%);
}

.blog-post-hero-content {
    position: relative;
    z-index: 2;
}

.blog-post-category-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(242, 184, 39, 0.3);
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.blog-post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.blog-post-meta-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.blog-post-meta-bar i {
    color: var(--primary);
}

/* Blog Article Content */
.blog-post-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(248, 250, 252, 0.85);
}

.blog-article h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--light-text);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(242, 184, 39, 0.15);
}

.blog-article h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-article p {
    margin-bottom: 20px;
    text-align: justify;
}

.blog-article img {
    max-width: 100%;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.blog-article blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: rgba(242, 184, 39, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--light-text);
    font-size: 1.15rem;
    line-height: 1.8;
}

.blog-article ul, .blog-article ol {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-article li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.blog-article li::marker {
    color: var(--primary);
}

.blog-article a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-article a:hover {
    color: var(--primary-light);
}

.blog-article strong, .blog-article b {
    color: var(--light-text);
    font-weight: 700;
}

/* Share Bar */
.blog-share-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-label {
    color: var(--gray-text);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-text);
    font-family: var(--font-body);
}

.whatsapp-share:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.facebook-share:hover {
    background: rgba(59, 89, 152, 0.15);
    border-color: rgba(59, 89, 152, 0.3);
    color: #3b5998;
}

.copy-share:hover {
    background: rgba(242, 184, 39, 0.1);
    border-color: rgba(242, 184, 39, 0.2);
    color: var(--primary);
}

/* Related Blogs */
.related-blogs-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Blog Listing Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-hero {
        min-height: 350px;
        padding-top: 100px;
    }

    .blog-post-meta-bar {
        gap: 15px;
    }

    .blog-share-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-article h2 {
        font-size: 1.6rem;
    }

    .blog-article blockquote {
        padding: 20px;
    }

    .filter-pill {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-post-title {
        font-size: 1.6rem;
    }

    .blog-post-hero {
        min-height: 300px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}
