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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #DAD3C2;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    color: #2C2C2C;
    letter-spacing: 0.2px;
}

.banner-link {
    color: #2C2C2C;
    text-decoration: underline;
    font-weight: 500;
}

.banner-link:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: transparent;
    backdrop-filter: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger-menu span {
    width: 26px;
    height: 2px;
    background-color: #FFFFFF;
    display: block;
    border-radius: 2px;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
}

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

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-btn-login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.nav-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.nav-btn-signup {
    background-color: #FF6B6B;
    color: #FFFFFF;
    border: 2px solid #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-btn-signup:hover {
    background-color: #FF5252;
    border-color: #FF5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* User Profile Menu */
.user-profile-menu {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.profile-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.profile-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
}

.profile-btn span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    stroke: currentColor;
    fill: none;
}

.profile-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1000;
    padding: 8px;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dropdown-item:visited,
.dropdown-item:link,
.dropdown-item:active {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    text-decoration: none !important;
    transform: translateX(4px);
    padding-left: 22px;
}

.dropdown-item svg {
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    opacity: 0.85;
    width: 16px;
    height: 16px;
}

.dropdown-item:hover svg {
    opacity: 1;
}

.dropdown-item.logout {
    color: rgba(255, 107, 107, 0.9);
}

.dropdown-item.logout:hover {
    background: rgba(255, 107, 107, 0.1);
    color: rgba(255, 107, 107, 1);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    margin: 8px 12px;
}

/* Enrollment Modal */
.enrollment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
}

.enrollment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enrollment-modal {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.enrollment-modal-overlay.active .enrollment-modal {
    transform: translateY(0) scale(1);
}

.enrollment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.enrollment-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enrollment-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.enrollment-modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    transform: rotate(90deg);
}

.enrollment-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.enrollment-modal-body {
    padding: 40px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.enrollment-modal-body::-webkit-scrollbar {
    width: 8px;
}

.enrollment-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.enrollment-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.enrollment-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Enrollment Form Styles */
.enrollment-form-section {
    margin-bottom: 32px;
}

.enrollment-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.enrollment-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.enrollment-form-field {
    display: flex;
    flex-direction: column;
}

.enrollment-form-field.full-width {
    grid-column: 1 / -1;
}

.enrollment-form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.enrollment-form-label.required::after {
    content: " *";
    color: rgba(255, 107, 107, 1);
}

.enrollment-form-input,
.enrollment-form-select,
.enrollment-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.enrollment-form-input::placeholder,
.enrollment-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.enrollment-form-input:focus,
.enrollment-form-select:focus,
.enrollment-form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(88, 86, 214, 0.5);
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
}

.enrollment-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.enrollment-form-select option {
    background: #1a1a24;
    color: #FFFFFF;
    padding: 12px;
}

.enrollment-form-select option:hover {
    background: #2a2a34;
}

.enrollment-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.enrollment-file-input {
    display: none;
}

.enrollment-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
}

.enrollment-file-label:hover {
    border-color: rgba(88, 86, 214, 0.5);
    background: rgba(88, 86, 214, 0.1);
}

.enrollment-file-label.has-file {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.1);
}

.enrollment-file-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    color: rgba(255, 255, 255, 0.7);
}

.enrollment-file-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.enrollment-help-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.enrollment-error-message {
    background: rgba(255, 107, 107, 0.15);
    color: rgba(255, 107, 107, 1);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid rgba(255, 107, 107, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.enrollment-level-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.enrollment-level-checkbox {
    display: none;
}

.enrollment-level-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.enrollment-level-label:hover {
    border-color: rgba(88, 86, 214, 0.4);
    background: rgba(88, 86, 214, 0.1);
    transform: translateY(-2px);
}

.enrollment-level-checkbox:checked + .enrollment-level-label {
    border-color: rgba(88, 86, 214, 0.6);
    background: rgba(88, 86, 214, 0.15);
    box-shadow: 0 4px 20px rgba(88, 86, 214, 0.3);
}

.enrollment-level-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.enrollment-level-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.enrollment-total-amount {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    margin: 24px 0;
    padding: 24px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
}

.enrollment-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #5856D6 0%, #7B68EE 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 32px;
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.3);
}

.enrollment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88, 86, 214, 0.4);
    background: linear-gradient(135deg, #6B68E5 0%, #8B7AF5 100%);
}

.enrollment-submit-btn:active {
    transform: translateY(0);
}

.enrollment-loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.enrollment-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(88, 86, 214, 1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 16px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .enrollment-modal {
        margin: 20px;
        border-radius: 20px;
    }
    
    .enrollment-modal-header {
        padding: 24px;
    }
    
    .enrollment-modal-title {
        font-size: 22px;
    }
    
    .enrollment-modal-body {
        padding: 24px;
    }
    
    .enrollment-form-row {
        grid-template-columns: 1fr;
    }
    
    .enrollment-level-options {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0F0F14;
}

/* Background Gradient */
.hero-background-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(88, 86, 214, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(58, 123, 213, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: transform 0.05s ease-out;
}

/* Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    padding: 140px 80px 80px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content Section */
.hero-content-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: hero-fade-in 0.8s ease-out 0.1s backwards;
    transition: transform 0.05s ease-out;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    width: fit-content;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    backdrop-filter: blur(12px);
}

.label-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Heading */
.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-heading-line {
    display: block;
}

.hero-heading-gradient {
    background: linear-gradient(135deg, #5856D6 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-heading-gradient::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #5856D6, #FF6B6B);
    border-radius: 2px;
    opacity: 0.6;
}

/* Hero Text */
.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #5856D6 0%, #7B68EE 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88, 86, 214, 0.4);
}

.hero-btn-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-play {
    opacity: 0.7;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.metric-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-separator {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Hero Visual Section */
.hero-visual-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-fade-in 0.8s ease-out 0.3s backwards;
    transition: transform 0.05s ease-out;
}

/* Visual Card */
.visual-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.visual-card:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.visual-card-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 50% 50%, rgba(88, 86, 214, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.visual-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 15, 20, 0.3) 100%);
    pointer-events: none;
}

/* Floating Indicators */
.floating-indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float-indicator 4s ease-in-out infinite;
}

.indicator-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.indicator-2 {
    bottom: 15%;
    right: -8%;
    animation-delay: -1.5s;
}

@keyframes float-indicator {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #5856D6, #FF6B6B);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.indicator-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.indicator-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.indicator-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 120px 40px;
    background: #0F0F14;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(88, 86, 214, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.stats-header {
    margin-bottom: 80px;
    text-align: center;
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.stats-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Card Blue */
.card-blue {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.15) 0%, rgba(88, 86, 214, 0.05) 100%);
}

.card-blue:hover {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.2) 0%, rgba(88, 86, 214, 0.08) 100%);
}

/* Card Video */
.card-video {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.card-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

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

.card-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 15, 20, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Card Green */
.card-green {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.card-green:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.08) 100%);
}

/* Card Image */
.card-image {
    padding: 0;
    overflow: hidden;
    background: transparent;
}

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

.card-image:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #0F0F14;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.card-content {
    margin-top: auto;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Languages Scroller Section */
.languages-section {
    position: relative;
    padding: 100px 0;
    background: #0F0F14;
    overflow: hidden;
}

.languages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(88, 86, 214, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.languages-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.languages-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.languages-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.languages-scroller {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.languages-track {
    display: flex;
    gap: 24px;
    animation: scroll-languages 40s linear infinite;
    width: fit-content;
}

.languages-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-languages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.language-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 32px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-item:hover {
    transform: scale(1.05);
}

.language-flag {
    display: none;
}

.language-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.language-item:hover .language-name {
    color: #FFFFFF;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 120px 40px;
    background: #0F0F14;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(88, 86, 214, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Elfsight Google Reviews Widget Custom Styling */
.reviews-container .elfsight-app-ad6dc947-01cb-4763-80dd-61a3ef96d046 {
    width: 100%;
    min-height: 400px;
}

/* Override Elfsight widget styles to match site theme */
.reviews-container [class*="elfsight-app"] {
    --elfsight-text-color: rgba(255, 255, 255, 0.9);
    --elfsight-background-color: rgba(255, 255, 255, 0.02);
    --elfsight-border-color: rgba(255, 255, 255, 0.08);
}

/* Ensure widget fits the container */
.reviews-container iframe,
.reviews-container [id*="elfsight"],
.reviews-container [class*="elfsight"] {
    border-radius: 20px;
    overflow: hidden;
}

/* Widget wrapper styling */
.reviews-container > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 120px 40px;
    background: #0F0F14;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(88, 86, 214, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 16px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.contact-info-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-info-text:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(12px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(88, 86, 214, 0.5);
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
}

.form-select option {
    background: #1a1a24;
    color: #FFFFFF;
    padding: 12px;
}

.form-select option:hover {
    background: #2a2a34;
}

.form-select option:checked {
    background: rgba(88, 86, 214, 0.3);
    color: #FFFFFF;
}

/* Global select dropdown styling for better contrast */
select option {
    background: #1a1a24 !important;
    color: #FFFFFF !important;
    padding: 8px !important;
}

select {
    color: #FFFFFF !important;
}

select:focus {
    outline: none;
    border-color: rgba(88, 86, 214, 0.5) !important;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #5856D6 0%, #7B68EE 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.3);
    margin-top: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88, 86, 214, 0.4);
}

.form-submit-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Footer Section */
.footer {
    position: relative;
    background: #0A0A0E;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 40px 32px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(88, 86, 214, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin: 0;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.reviews-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 24px;
    animation: star-pulse 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5856D6, #FF6B6B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.review-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.review-stars .star {
    font-size: 16px;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.review-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Loading Placeholder */
.review-card-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.placeholder-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 32px;
    }
    
    .nav-links {
        gap: 32px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-wrapper {
        padding: 120px 60px 60px;
        gap: 60px;
    }
    
    .visual-card {
        max-width: 480px;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-card {
        height: 400px;
    }
    
    .card-number {
        font-size: 60px;
    }
    
    .languages-section {
        padding: 80px 0;
    }
    
    .languages-header {
        margin-bottom: 50px;
    }
    
    .language-item {
        padding: 0 28px;
    }
    
    .language-name {
        font-size: 22px;
    }
    
    .reviews-section {
        padding: 100px 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .contact-section {
        padding: 100px 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 18px 24px;
    }
    
    .nav-links {
        gap: 28px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-btn {
        font-size: 13px;
        padding: 9px 24px;
    }
    
    .hero-wrapper {
        padding: 100px 40px 50px;
        gap: 50px;
    }
    
    .visual-card {
        max-width: 420px;
    }
    
    .floating-indicator {
        padding: 10px 16px;
    }
    
    .indicator-title {
        font-size: 13px;
    }
    
    .indicator-subtitle {
        font-size: 11px;
    }
    
    .stats-section {
        padding: 80px 32px;
    }
    
    .stats-header {
        margin-bottom: 60px;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        height: 380px;
        padding: 32px;
    }
    
    .card-number {
        font-size: 56px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .languages-section {
        padding: 70px 0;
    }
    
    .language-item {
        padding: 0 24px;
    }
    
    .language-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 340px;
        background: rgba(15,15,20,0.98);
        backdrop-filter: blur(12px);
        box-shadow: -12px 0 40px rgba(0,0,0,0.4);
        padding: 80px 24px 24px;
        flex-direction: column;
        gap: 16px;
        z-index: 1001;
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .hero-wrapper {
        padding: 100px 24px 40px;
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content-section {
        text-align: center;
        align-items: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .visual-card {
        max-width: 400px;
    }
    
    .floating-indicator {
        padding: 10px 14px;
    }
    
    .indicator-1 {
        left: 0;
    }
    
    .indicator-2 {
        right: 0;
    }
    
    .stats-section {
        padding: 60px 24px;
    }
    
    .stats-header {
        margin-bottom: 50px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-card {
        height: 350px;
        padding: 28px;
        transform: rotate(0deg);
    }
    
    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        transform: rotate(0deg);
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
    }
    
    .card-number {
        font-size: 52px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .card-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .card-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .languages-section {
        padding: 60px 0;
    }
    
    .languages-header {
        margin-bottom: 40px;
    }
    
    .language-item {
        padding: 0 20px;
        gap: 10px;
    }
    
    .language-name {
        font-size: 18px;
    }
    
    .reviews-section {
        padding: 80px 24px;
    }
    
    .reviews-header {
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Elfsight Widget Responsive */
    .reviews-container .elfsight-app-ad6dc947-01cb-4763-80dd-61a3ef96d046 {
        min-height: 350px;
    }
    
    .contact-section {
        padding: 80px 24px;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-item {
        padding: 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .footer {
        padding: 60px 24px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .navbar {
        padding: 12px 16px;
        top: 0;
    }
    
    .logo {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .nav-btn {
        font-size: 12px;
        padding: 7px 16px;
    }
    
    .hero-wrapper {
        padding: 80px 20px 40px;
        gap: 40px;
    }
    
    .hero-heading {
        font-size: 40px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .metric-separator {
        display: none;
    }
    
    .visual-card {
        max-width: 100%;
    }
    
    .floating-indicator {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .indicator-title {
        font-size: 12px;
    }
    
    .indicator-subtitle {
        font-size: 10px;
    }
    
    .stats-section {
        padding: 50px 16px;
    }
    
    .stats-header {
        margin-bottom: 40px;
    }
    
    .stat-card {
        height: 320px;
        padding: 24px;
        border-radius: 24px;
    }
    
    .card-number {
        font-size: 48px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-overlay {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
    
    .card-badge {
        font-size: 11px;
        padding: 8px 16px;
        letter-spacing: 0.5px;
    }
    
    .languages-section {
        padding: 50px 0;
    }
    
    .languages-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .languages-track {
        gap: 12px;
    }
    
    .language-item {
        padding: 0 16px;
        gap: 8px;
    }
    
    .language-name {
        font-size: 16px;
    }
    
    .reviews-section {
        padding: 60px 16px;
    }
    
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    /* Elfsight Widget Mobile */
    .reviews-container .elfsight-app-ad6dc947-01cb-4763-80dd-61a3ef96d046 {
        min-height: 300px;
    }
    
    .contact-section {
        padding: 60px 16px;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info-item {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-select {
        padding-right: 40px;
        background-position: right 16px center;
    }
    
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 50px 16px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .hero-wrapper {
        padding: 160px 80px 100px;
    }
}

/* Loading Screen - Modern & Elegant */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0F0F14 50%, #0a0a14 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 86, 214, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 104, 238, 0.15) 0%, transparent 50%);
    animation: pulseBackground 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loading-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #5856D6 0%, #7B68EE 30%, #9B87F5 60%, #FF6B6B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    letter-spacing: 4px;
    animation: logoShimmer 3s ease-in-out infinite, logoFloat 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.loading-logo::after {
    content: 'IFLA';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #5856D6 0%, #7B68EE 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.loading-spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    position: relative;
}

.loading-spinner::before,
.loading-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loading-spinner::before {
    width: 100px;
    height: 100px;
    border-top-color: #5856D6;
    border-right-color: #7B68EE;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 0 20px rgba(88, 86, 214, 0.3);
}

.loading-spinner::after {
    width: 70px;
    height: 70px;
    top: 15px;
    left: 15px;
    border-bottom-color: #7B68EE;
    border-left-color: #FF6B6B;
    animation: spinReverse 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 0 15px rgba(123, 104, 238, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}

/* Central orb effect */
.loading-spinner {
    background: radial-gradient(circle, rgba(88, 86, 214, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(88, 86, 214, 0.3), inset 0 0 30px rgba(88, 86, 214, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(88, 86, 214, 0.5), inset 0 0 40px rgba(88, 86, 214, 0.2);
    }
}

.loading-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

.loading-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5856D6, #7B68EE);
    animation: dotPulse 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 15px rgba(88, 86, 214, 0.5);
    position: relative;
}

.loading-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #5856D6, #7B68EE);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
    animation: dotRipple 1.6s ease-out infinite;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(1)::before {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(2)::before {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-dot:nth-child(3)::before {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.4) translateY(-8px);
        opacity: 1;
    }
}

@keyframes dotRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textFade 2.5s ease-in-out infinite;
    position: relative;
}

.loading-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5856D6, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        width: 60px;
    }
    50% {
        opacity: 1;
        width: 100px;
    }
}

.loading-progress {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.loading-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5856D6 0%, #7B68EE 50%, #FF6B6B 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressBar 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite, progressGradient 3s linear infinite;
    box-shadow: 0 0 20px rgba(88, 86, 214, 0.6), 0 0 40px rgba(88, 86, 214, 0.3);
    position: relative;
    overflow: hidden;
}

.loading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 1.5s ease-in-out infinite;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes progressShine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes progressShimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Loading screen fade out animation */
.loading-screen.fade-out {
    animation: fadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
    }
}

/* Floating particles effect */
.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.8), transparent);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .loading-logo {
        font-size: 48px;
        letter-spacing: 3px;
    }
    
    .loading-spinner {
        width: 80px;
        height: 80px;
    }
    
    .loading-spinner::before {
        width: 80px;
        height: 80px;
    }
    
    .loading-spinner::after {
        width: 55px;
        height: 55px;
        top: 12.5px;
        left: 12.5px;
    }
    
    .loading-text {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .loading-progress {
        width: 220px;
    }
    
    .loading-dots {
        gap: 12px;
    }
    
    .loading-dot {
        width: 12px;
        height: 12px;
    }
}

