:root {
    --gold: #FFD700;
    --orange: #FF8C00;
    --dark-orange: #FF6B00;
    --deep-orange: #FF4500;
    --black: #0a0a0a;
    --dark-bg: #121212;
    --dark-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-intense: 0 8px 40px rgba(255, 140, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
}

.logo-icon {
    font-size: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

.hero-left {
    padding-top: 20px;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
}

.announcement-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.subtitle {
    display: block;
    font-size: 38px;
    margin-top: 12px;
    color: var(--text-secondary);
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Hero Features */
.hero-features {
    margin-bottom: 50px;
}

.hero-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-value::after {
    content: '%';
    font-size: 24px;
}

.stat-item:nth-child(2) .stat-value::after {
    content: '/7';
}

.stat-item:nth-child(3) .stat-value::after {
    content: '%';
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--gold);
    font-size: 16px;
}

/* Hero Right - Form Container */
.hero-right {
    position: sticky;
    top: 20px;
}

.form-container,
.content-container-educational {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-intense);
    position: relative;
    overflow: hidden;
}

.form-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1642543492950-e764c57e0e55?w=600&h=800&fit=crop') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.form-content {
    position: relative;
    z-index: 1;
}

.form-container::before,
.content-container-educational::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 2;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--black);
    margin: 0 auto 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
    font-size: 14px;
}

.form-group input {
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.submit-btn {
    padding: 16px 35px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-intense);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Message */
.form-message {
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    display: block;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 12px;
    color: var(--text-secondary);
}

.form-footer i {
    color: var(--gold);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-dialog {
    width: 100%;
    max-width: 480px;
    background: #121212;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-intense);
    padding: 32px 28px 28px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-overlay.is-visible .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 26px;
    margin: 0 auto 18px;
}

.modal-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.modal-form {
    margin-top: 10px;
}

.modal-privacy {
    margin-top: 18px;
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
}

.modal-submit-btn {
    width: 100%;
}

/* Image Showcase Section */
.image-showcase {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.showcase-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.showcase-item {
    position: relative;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 140, 0, 0.4) 50%, rgba(255, 69, 0, 0.3) 100%);
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .image-overlay {
    opacity: 0.7;
}

.showcase-item:hover .showcase-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 50px rgba(255, 140, 0, 0.6);
}

.showcase-image {
    transition: all 0.4s ease;
}

.showcase-label {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.showcase-label i {
    font-size: 20px;
    color: var(--gold);
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.3);
    position: relative;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 0;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.3) 50%, rgba(255, 69, 0, 0.2) 100%);
    mix-blend-mode: multiply;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--black));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.about-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: rgba(26, 26, 26, 0.9);
}

.about-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: rgba(26, 26, 26, 0.9);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.3);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-left {
    padding-right: 20px;
}

.why-list {
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.why-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Success Image Card */
.success-image-card {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.success-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 140, 0, 0.35) 50%, rgba(255, 69, 0, 0.25) 100%);
    mix-blend-mode: multiply;
}

/* Testimonial Card */
.testimonial-card {
    padding: 35px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 30px;
}

.testimonial-header {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 22px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Stats Box */
.stats-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-box-item {
    padding: 25px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-box-item i {
    font-size: 32px;
    color: var(--gold);
}

.stats-box-value {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-box-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 60px;
}

.bottom-cta {
    padding: 60px 0 20px;
    text-align: center;
}

.bottom-cta-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bottom-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
}

.glow-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: glow-pulse 2s ease-in-out infinite;
}

.glow-cta-btn i {
    font-size: 16px;
}

.glow-cta-btn:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: translateY(-1px);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
        transform: translateY(-2px);
    }
}

/* Mobile Form Container - Hidden on Desktop */
.mobile-form-container {
    display: none;
    margin: 30px 0;
}

.mobile-form-container .content-container-educational {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-intense);
    position: relative;
    overflow: hidden;
}

.mobile-form-container .content-container-educational::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 32px;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-right {
        position: static;
        display: none; /* Hide original form on mobile */
    }
    
    .form-container,
    .content-container-educational {
        max-width: 550px;
        margin: 0 auto;
    }
    
    /* Show mobile form on tablets and below */
    .mobile-form-container {
        display: block;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .form-container,
    .content-container-educational {
        padding: 30px 25px;
    }
    
    .mobile-form-container .content-container-educational {
        padding: 25px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .about-hero-image {
        height: 250px;
    }
    
    .image-showcase {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
}


@media (min-width: 768px) {
    .mobile-form-container{
        display:none!important;
        
    }
   
    }