:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #fbbf24;
    --accent: #00d9ff;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --surface: #1a1a1a;
    --surface-light: #252525;
    --border: #2a2a2a;
    --border-light: #3a3a3a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --text-dim: #707070;
    --success: #00C896;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-custom.scrolled {
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
    border-bottom-color: var(--primary);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
}

.logo-box {
    width: 200px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.3rem;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nav-link-custom {
    color: black !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 80%;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        var(--bg-black);
    margin-top: 70px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    background: #dc2626;
    bottom: -250px;
    right: -250px;
    animation-delay: 2s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.05;
    border-radius: 20px;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(10deg);
    }
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 80px rgba(255, 107, 53, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.quick-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.quick-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.quick-badge:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.quick-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.quick-badge span {
    font-weight: 600;
}

/* Section Styling */
.section-dark {
    background: var(--bg-dark);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
}

/* Trust Stats */
.trust-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.trust-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

/* Custom Contact Form */
.custom-contact-form {
    animation: fadeIn 0.5s ease;
}

.form-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-custom,
.form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control-custom:focus,
.form-select:focus {
    background: var(--surface-light);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    color: var(--text);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-dim);
}

.form-select option {
    background: var(--surface);
    color: var(--text);
}

.form-check-input {
    background-color: var(--bg-dark);
    border-color: var(--border);
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
}

.form-check-label {
    cursor: pointer;
    user-select: none;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPop 0.5s ease-out;
}

.success-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success-message h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--surface-light);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
}

.info-card-title i {
    color: var(--primary);
}

/* Contact Methods */
.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.contact-method h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--secondary);
}

/* Quick Action Buttons */
.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    color: var(--text);
}

.quick-action-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.quick-action-btn.call:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-color: transparent;
}

.quick-action-btn.courses:hover {
    border-color: var(--primary);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.quick-action-btn.whatsapp .action-icon {
    background: #25D366;
}

.quick-action-btn strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.quick-action-btn span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Trust Items */
.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trust-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

/* FAQ Accordion */
.accordion-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: transparent;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 1.5rem 1.5rem;
}

/* Risk Disclosure Card */
.risk-disclosure-card {
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.risk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.risk-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.risk-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.risk-body p strong {
    color: var(--text);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Override Bootstrap text-muted for dark theme */
.text-muted {
    color: var(--text-muted) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quick-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-badge {
        width: 100%;
        justify-content: center;
    }

    .trust-stat-number {
        font-size: 2rem;
    }

    .contact-form-card,
    .info-card {
        padding: 2rem 1.5rem;
    }

    .quick-action-btn {
        padding: 1rem;
    }

    .action-icon,
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .risk-disclosure-card {
        padding: 2rem;
    }

    .risk-header {
        flex-direction: column;
        text-align: center;
    }
}