.elementor-807 .elementor-element.elementor-element-a9e3348{--display:flex;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-807 .elementor-element.elementor-element-8b74c26{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fcd5bd7 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color Palette */
    --deep-navy: #1a2332;
    --charcoal: #2d3748;
    --slate-dark: #1e293b;
    
    /* Accent Colors */
    --gold-primary: #d4af37;
    --gold-light: #f0d77c;
    --amber: #f59e0b;
    --burnt-orange: #dc6b2f;
    
    /* Secondary Accents */
    --burgundy: #7c2d3a;
    --wine: #9b2c2c;
    --emerald: #047857;
    --teal: #0d9488;
    --success-green: #10b981;
    --error-red: #ef4444;
    
    /* Neutral Tones */
    --cream: #fefcf3;
    --warm-white: #faf8f3;
    --light-gray: #f7f7f5;
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --text-light: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Navigation */
header {
    background: var(--deep-navy);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-primary) !important;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo span {
    color: var(--text-light) !important;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-primary) !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-header {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    color: var(--text-dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* ===========================
   HERO SECTION - 2 COLUMN LAYOUT
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--slate-dark) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* 2 Column Grid Layout */
.hero-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column - Content */
.hero-content-left {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-light) !important;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-main-title {
    font-family: 'Crimson Pro', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-light) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--gold-primary) !important;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold-primary) !important;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 500;
}

.hero-price-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 15px;
    margin: 20px 0 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-primary) !important;
}

.hero-price-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn-primary, .hero-btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    color: var(--text-dark) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Right Column - Form */
.hero-form-column {
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 45px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--amber) 50%, var(--burnt-orange) 100%);
}

.hero-form-heading {
    font-family: 'Crimson Pro', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark) !important;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-form-subheading {
    text-align: center;
    color: var(--text-gray) !important;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 8px 20px;
    background: rgba(220, 107, 47, 0.1);
    border-radius: 30px;
    display: inline-block;
    width: 100%;
}

/* Elementor Form Styling - Hero Section Only */
.hero-form-container .elementor-form-fields-wrapper {
    width: 100%;
}

.hero-form-container .elementor-field-group {
    margin-bottom: 18px;
}

.hero-form-container .elementor-field {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark) !important;
}

.hero-form-container .elementor-field:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.hero-form-container .elementor-field::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

/* Form Submit Button - Hero Section Only */
.hero-form-container .hero-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%) !important;
    color: var(--text-dark) !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    margin-top: 10px;
}

.hero-form-container .hero-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.hero-form-container .elementor-button-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-form-container .elementor-button-text {
    font-weight: 700;
}

/* Hide screen reader labels */
.hero-form-container .elementor-screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Form Messages - Hero Section Only */
.hero-form-container .elementor-message-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error-red);
    padding: 12px;
    border-radius: 8px;
    color: var(--error-red) !important;
    margin-top: 15px;
    font-size: 13px;
}

.hero-form-container .elementor-message-success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success-green);
    padding: 12px;
    border-radius: 8px;
    color: var(--success-green) !important;
    margin-top: 15px;
    font-size: 13px;
}

/* ===========================
   END HERO SECTION
   =========================== */

/* Section Styles */
.section-light {
    background: var(--warm-white);
    padding: 40px 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate-dark) 100%);
    padding: 40px 0;
}

.section-accent {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
    padding: 40px 0;
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gold-primary) !important;
    color: var(--text-dark) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge-dark {
    background: rgba(212, 175, 55, 0.2) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-light {
    color: var(--text-light) !important;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Enhanced Why Different Section */
.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.point-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    transition: width 0.3s ease;
}

.point-card.error-card::before {
    background: linear-gradient(180deg, var(--error-red) 0%, #dc2626 100%);
}

.point-card.success-card::before {
    background: linear-gradient(180deg, var(--success-green) 0%, var(--emerald) 100%);
}

.point-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.point-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-card h3 .icon {
    font-size: 32px;
    flex-shrink: 0;
}

.error-card h3 .icon {
    color: var(--error-red);
}

.success-card h3 .icon {
    color: var(--success-green);
}

.point-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.point-card li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: var(--text-gray) !important;
    line-height: 1.7;
    font-size: 15px;
}

.point-card li:last-child {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    color: var(--text-light) !important;
    padding: 50px;
    border-radius: 25px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(4, 120, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.highlight-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light) !important;
    position: relative;
    z-index: 1;
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    color: var(--text-light) !important;
    position: relative;
    z-index: 1;
}

/* Enhanced Product Features Section */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--amber) 100%);
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.feature-card .feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feature-card .feature-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.7;
}

/* Enhanced Program Design Section */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    padding: 45px 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--amber) 100%);
}

.program-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--burnt-orange) 0%, var(--wine) 100%);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

.program-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark) !important;
    line-height: 1.3;
}

.program-card ul {
    list-style: none;
    margin-top: 25px;
}

.program-card li {
    padding: 14px 0 14px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    color: var(--text-gray) !important;
    position: relative;
    line-height: 1.6;
}

.program-card li:last-child {
    border-bottom: none;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--gold-primary) !important;
    font-size: 18px;
}

/* Enhanced Courses Section */
.courses-container {
    margin-top: 50px;
}

.course-module {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 45px;
    border-radius: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--amber) 50%, var(--burnt-orange) 100%);
}

.course-module:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.course-module h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary) !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-module h3::before {
    content: '📚';
    font-size: 32px;
}

.course-module h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 25px 0 15px 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.course-module ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.course-module li {
    padding: 12px 15px 12px 45px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.course-module li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.course-module li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--gold-primary) !important;
    font-weight: bold;
    font-size: 16px;
}

/* Mentors Section */
.mentor-category {
    margin-bottom: 60px;
}

.mentor-category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-primary) !important;
    text-align: center;
    margin-bottom: 40px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mentors-grid.center-last-row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mentors-grid.center-last-row > .mentor-card:nth-last-child(-n+2):nth-child(odd) {
    grid-column: span 1;
}

@media (min-width: 900px) {
    .mentors-grid.center-last-row {
        justify-content: center;
    }
    
    .mentors-grid.center-last-row > .mentor-card:nth-last-child(-n+2) {
        width: 100%;
        max-width: 350px;
        justify-self: center;
    }
}

.mentor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.mentor-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mentor-card:hover .mentor-image {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mentor-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light) !important;
    margin-bottom: 10px;
}

.mentor-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6;
}

/* Results Section - Enhanced */
.results-carousel-container {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.results-carousel {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 30px;
}

.results-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.result-item {
    min-width: 280px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.result-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-bottom: 15px;
}

.result-percentile {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    font-weight: 900;
    color: var(--gold-primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Crimson Pro', serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray) !important;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark) !important;
}

.testimonial-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-gray) !important;
}

/* Pricing Section */
.pricing-card {
    max-width: 650px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pricing-amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--gold-primary) !important;
    margin-bottom: 10px;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 18px;
    margin-bottom: 40px;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin: 40px 0;
}

.pricing-includes li {
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-includes li::before {
    content: '✓';
    color: var(--gold-primary) !important;
    font-weight: bold;
    font-size: 20px;
}

.limited-seats {
    background: rgba(220, 107, 47, 0.2);
    color: #fca5a5;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
}

/* Enhanced Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--amber) 50%, var(--burnt-orange) 100%);
}

.contact-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.contact-item:hover::after {
    transform: scale(1);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.contact-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.contact-icon {
    font-size: 42px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.contact-item h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: var(--text-gray) !important;
    font-size: 16px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.contact-item a {
    color: var(--gold-primary) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--amber) 100%);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: var(--amber) !important;
    transform: translateY(-2px);
}

.contact-item a:hover::after {
    width: 100%;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    padding: 40px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 40px;
}

.final-cta .btn-primary {
    background: var(--deep-navy);
    color: var(--text-light) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.final-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: var(--deep-navy);
    padding: 40px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--gold-primary);
    text-decoration: none;
}

footer a:hover {
    color: var(--gold-light);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet & Small Desktop */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-navy);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero Section - Stack to Single Column */
    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    .hero-form-heading {
        font-size: 28px;
    }
    
    .hero-form-container {
        padding: 40px 35px;
    }

    .section-title {
        font-size: 32px;
    }

    .point-card h3 {
        font-size: 22px;
    }

    .point-card {
        padding: 35px 30px;
    }

    .highlight-box h3 {
        font-size: 26px;
    }

    .highlight-box {
        padding: 40px 30px;
    }

    .points-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .pricing-amount {
        font-size: 56px;
    }

    .results-carousel {
        animation: scroll 25s linear infinite;
    }

    .result-percentile {
        font-size: 32px !important;
    }

    .result-name {
        font-size: 20px !important;
    }

    .program-cards {
        grid-template-columns: 1fr;
    }

    .program-card h3 {
        font-size: 24px;
    }

    .course-module h3 {
        font-size: 24px;
    }

    .course-module {
        padding: 35px 30px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 40px 30px;
    }
}

/* Mobile Devices */
@media (max-width: 640px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-two-column {
        gap: 40px;
    }
    
    .hero-main-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-form-container {
        padding: 35px 25px;
    }
    
    .hero-form-heading {
        font-size: 24px;
    }
    
    .hero-form-subheading {
        font-size: 13px;
        padding: 6px 15px;
    }
    
    .hero-form-container .elementor-field {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .hero-form-container .hero-submit-btn {
        padding: 15px 30px !important;
        font-size: 15px !important;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .point-card h3 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .point-card h3 .icon {
        font-size: 28px;
    }

    .point-card li {
        font-size: 14px;
        padding: 12px 0;
    }

    .point-card {
        padding: 30px 25px;
    }

    .highlight-box {
        padding: 35px 25px;
    }

    .highlight-box h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .highlight-box p {
        font-size: 15px;
    }

    .logo {
        font-size: 16px;
    }

    .logo span {
        display: block;
        font-size: 12px;
    }

    .cta-header {
        padding: 8px 16px;
        font-size: 12px;
    }

    .program-card,
    .point-card {
        padding: 30px 25px;
    }

    .program-card h3 {
        font-size: 20px;
    }

    .program-icon {
        font-size: 42px;
    }

    .final-cta h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .final-cta p {
        font-size: 15px;
    }

    .results-carousel {
        animation: scroll 20s linear infinite;
    }

    .result-percentile {
        font-size: 28px !important;
    }

    .result-name {
        font-size: 18px !important;
    }

    .result-item {
        min-width: 240px;
        padding: 30px 20px;
    }

    .section-light,
    .section-dark,
    .section-accent {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .final-cta {
        padding: 40px 0;
    }

    .course-module {
        padding: 30px 20px;
    }

    .course-module h3 {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .course-module h3::before {
        font-size: 24px;
    }

    .course-module h4 {
        font-size: 14px;
        padding: 10px 15px;
    }

    .course-module li {
        font-size: 14px;
        padding: 10px 12px 10px 38px;
    }

    .course-module li::before {
        left: 12px;
        font-size: 14px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-card .feature-text {
        font-size: 14px;
    }

    .feature-card .feature-icon {
        font-size: 32px;
    }

    .mentor-category-title {
        font-size: 24px;
        padding: 12px;
    }

    .mentor-image {
        width: 110px;
        height: 110px;
    }

    .mentor-name {
        font-size: 19px;
    }

    .mentor-title {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .pricing-amount {
        font-size: 48px;
    }

    .pricing-includes li {
        font-size: 14px;
        padding: 12px 0;
    }

    .contact-item {
        padding: 40px 25px;
    }

    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .contact-icon {
        font-size: 36px;
    }

    .contact-item h4 {
        font-size: 20px;
    }

    .contact-item p {
        font-size: 15px;
    }

    .contact-item a {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-price-tag {
        padding: 12px 25px;
    }

    .hero-price {
        font-size: 28px;
    }

    .hero-price-label {
        font-size: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .point-card h3 {
        font-size: 16px;
    }

    .highlight-box h3 {
        font-size: 18px;
    }

    .course-module h3 {
        font-size: 18px;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .mentor-category-title {
        font-size: 20px;
    }

    .contact-item h4 {
        font-size: 18px;
    }

    .pricing-amount {
        font-size: 42px;
    }
    
    .hero-form-heading {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .hero-price {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}
/* Force Stats to Stay Horizontal on Mobile */
@media (max-width: 640px) {
    .hero-stats {
        flex-direction: row !important;
        gap: 15px !important;
        justify-content: space-between;
    }
    
    .hero-stat-item {
        flex: 1;
        text-align: center;
    }
    
    .hero-stat-number {
        font-size: 28px !important;
    }
    
    .hero-stat-label {
        font-size: 11px !important;
        line-height: 1.3;
    }
}

/* For Very Small Phones */
@media (max-width: 380px) {
    .hero-stat-number {
        font-size: 24px !important;
    }
    
    .hero-stat-label {
        font-size: 10px !important;
    }
}
/* ===========================
   GLOBAL BUTTON STYLES (For All Sections)
   =========================== */

/* Primary Button - Used Throughout Page */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--amber) 100%);
    color: var(--text-dark) !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* Secondary Button - Used Throughout Page */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Button on Light Backgrounds */
.section-light .btn-primary {
    color: var(--text-dark) !important;
}

.section-light .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark) !important;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.section-light .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

/* Button on Dark Backgrounds */
.section-dark .btn-primary,
.pricing-card .btn-primary {
    color: var(--text-dark) !important;
}

.final-cta .btn-primary {
    background: var(--deep-navy);
    color: var(--text-light) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive Buttons */
@media (max-width: 640px) {
    .btn-primary,
    .btn-secondary {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */