/* ===== CSS Custom Properties ===== */
:root {
    /* Brand Colors */
    --deep-purple: #2E1A47;
    --vibrant-pink: #E91E8C;
    --light-purple: #6B5B95;
    --soft-pink: #FFE5F3;
    --dark-navy: #1A1A2E;

    /* Extended Palette */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --body-text: #6B7280;
    --pink-hover: #D4177D;
    --purple-light: rgba(46, 26, 71, 0.05);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--vibrant-pink) 0%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.btn-primary {
    background: var(--vibrant-pink);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--deep-purple);
}

.btn-outline:hover {
    background: var(--deep-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--vibrant-pink);
}

.btn-white:hover {
    background: var(--soft-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 91, 149, 0.1);
    color: var(--light-purple);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--deep-purple);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-purple);
    line-height: 1.7;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Header/Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--deep-purple);
}

.logo-accent {
    color: var(--vibrant-pink);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-pink);
    transition: width var(--transition-medium);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--vibrant-pink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: var(--dark-navy);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-dropdown-btn:hover {
    background: var(--light-gray);
    border-color: var(--vibrant-pink);
}

.lang-current {
    line-height: 1;
}

.lang-arrow {
    width: 16px;
    height: 16px;
    color: var(--dark-navy);
    transition: transform 0.3s ease;
}

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

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

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

.lang-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--deep-purple);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.lang-dropdown-item:hover {
    background: var(--light-gray);
    color: var(--vibrant-pink);
}

.lang-dropdown-item.active {
    background: rgba(233, 30, 140, 0.08);
}

.lang-check {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.lang-dropdown-item.active .lang-check {
    opacity: 1;
    color: var(--vibrant-pink);
}

.mobile-actions {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--dark-navy);
    position: absolute;
    left: 4px;
    transition: all var(--transition-medium);
}

.hamburger {
    top: 15px;
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 560px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 91, 149, 0.1);
    color: var(--light-purple);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--deep-purple);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--white);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 14px;
    color: var(--body-text);
}

.trust-text strong {
    color: var(--deep-purple);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-professional-image {
    max-width: 600px;
    max-height: 600px;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(107, 91, 149, 0.1);
    color: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 20px;
    height: 20px;
}

.floating-icon.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.floating-icon.global {
    background: #E3F2FD;
    color: #2196F3;
}

.card-1 {
    top: 10px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    left: 10px;
    animation-delay: 2s;
}

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

/* ===== Trusted Partners Section ===== */
.partners {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.partners-heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--body-text);
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
    text-transform: none;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 32px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.partner-item {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.partner-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.15);
}

.partner-item img {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}

.partner-item:hover img {
    filter: grayscale(0%) opacity(1);
}

.partner-reference {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    font-weight: 500;
    color: #0066CC;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    white-space: nowrap;
    padding: 12px 16px;
    text-align: center;
    background: rgba(0, 102, 204, 0.05);
    transform: translateY(100%);
}

.partner-item:hover .partner-reference {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.partner-reference:hover {
    color: #004999;
    background: rgba(0, 102, 204, 0.1);
}

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

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.services-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-main-subtitle {
    font-size: 18px;
    color: var(--body-text);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    grid-column: span 2;
}

.services-grid .service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 4 / 6;
}

.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid #E5E7EB;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    background: linear-gradient(135deg, #F5F3FF 0%, #FFF5FA 100%);
    border: 2px solid var(--vibrant-pink);
}

.service-icon-circle {
    width: 64px;
    height: 64px;
    background: #FFE5F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-pink);
    margin-bottom: 20px;
}

.service-card.featured .service-icon-circle {
    background: var(--white);
}

.service-icon-circle svg {
    width: 32px;
    height: 32px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.6;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(107, 91, 149, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-purple);
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.7;
}

/* ===== Process Section - Vertical Timeline ===== */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.process-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 12px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 17px;
    color: var(--body-text);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: var(--vibrant-pink);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Circle */
.timeline-circle {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--vibrant-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.2);
    transition: all var(--transition-medium);
    grid-column: 2;
}

.timeline-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
}

.timeline-circle svg {
    width: 30px;
    height: 30px;
    color: var(--deep-purple);
    stroke-width: 2.5;
}

/* Timeline Content */
.timeline-content {
    display: flex;
    align-items: center;
}

/* Connector Line */
.timeline-connector {
    width: 50px;
    height: 2px;
    background: var(--vibrant-pink);
    flex-shrink: 0;
}

/* Timeline Card */
.timeline-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
}

.timeline-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.timeline-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-card-desc {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.6;
    margin: 0;
}

/* Left Timeline Items */
.timeline-item--left .timeline-content {
    grid-column: 1;
    justify-content: flex-end;
}

.timeline-item--left .timeline-card {
    text-align: right;
}

/* Right Timeline Items */
.timeline-item--right .timeline-content {
    grid-column: 3;
    justify-content: flex-start;
}

.timeline-item--right .timeline-card {
    text-align: left;
}

/* CTA */
.process-cta {
    text-align: center;
}

/* ===== Trainers Section ===== */
.trainers {
    padding: var(--section-padding);
    background: var(--white);
}

.trainers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.trainers-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 16px;
    line-height: 1.2;
}

.trainers-subtitle {
    font-size: 18px;
    color: var(--body-text);
    line-height: 1.6;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trainer-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.trainer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
}

.trainer-placeholder svg {
    width: 80px;
    height: 80px;
    color: #D1D5DB;
}

.trainer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background: rgba(46, 26, 71, 0.92);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.trainer-photo:hover .trainer-overlay {
    transform: translateY(0);
}

.trainer-overlay-name {
    display: none;
}

.trainer-overlay-title {
    display: none;
}

.trainer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.trainer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-medium);
}

.trainer-social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trainer-social-icon svg {
    width: 18px;
    height: 18px;
}

.trainer-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 6px;
}

.trainer-title {
    font-size: 14px;
    color: var(--body-text);
    margin-bottom: 16px;
}

.trainer-view-profile {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--vibrant-pink);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s, gap 0.2s;
}

.trainer-view-profile:hover {
    color: var(--deep-purple);
}

/* ===== Stats Section ===== */
.stats {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.stats-headline {
    flex: 1;
    max-width: 500px;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-purple);
    line-height: 1.3;
}

.stats-numbers {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--deep-purple);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value span {
    font-size: 32px;
    color: var(--light-purple);
}

.stat-desc {
    font-size: 13px;
    color: var(--body-text);
    line-height: 1.4;
    max-width: 120px;
}

/* World Map */
.world-map {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('../images/vecteezy_dotted-world-map_36643421.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
}

.flag-marker {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--light-purple);
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.contact-form-card {
    background: #F8F9FA;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.contact-info-col {
    flex: 0 0 40%;
    width: 40%;
}

.contact-info-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--deep-purple);
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--vibrant-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    stroke: var(--white);
}

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

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--body-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-purple);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(46, 26, 71, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-purple);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.contact-social-btn svg {
    width: 18px;
    height: 18px;
}

.contact-social-btn:hover {
    background: var(--vibrant-pink);
    color: var(--white);
}

/* Right Column */
.contact-form-col {
    flex: 1;
    min-width: 0;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--deep-purple);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-pink);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

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

.services-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.checkbox-wrapper:hover {
    background-color: rgba(233, 30, 140, 0.05);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--vibrant-pink);
    margin: 0;
    flex-shrink: 0;
}

.checkbox-wrapper span {
    font-size: 14px;
    color: var(--deep-purple);
    font-weight: 500;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px 32px;
    background: var(--vibrant-pink);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 8px;
}

.contact-form .btn-primary:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* ===== Office Location Map Section ===== */
.contact-map-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-map-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-map-heading {
    margin-bottom: 24px;
}

.contact-map-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 6px;
}

.contact-map-heading p {
    font-size: 16px;
    color: var(--body-text);
}

.contact-map-frame {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--deep-purple);
    padding: 80px 0 32px;
    color: var(--white);
}

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

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-medium);
}

.social-link:hover {
    background: var(--vibrant-pink);
    transform: translateY(-4px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--vibrant-pink);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.contact-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--vibrant-pink);
}

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

/* Footer Language Dropdown */
.footer-lang .lang-dropdown-btn {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-lang .lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trainers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .stats-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stats-headline {
        max-width: 100%;
    }

    .stats-title {
        font-size: 28px;
    }

    .stats-numbers {
        gap: 32px;
    }

    .world-map {
        height: 400px;
    }

    .flag-circle {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .mobile-actions .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .mobile-actions .lang-dropdown-menu {
        right: 0;
        min-width: 100px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicator {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        grid-column: span 1;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .timeline-card {
        max-width: 350px;
        padding: 24px;
    }

    .timeline-card-title {
        font-size: 19px;
    }

    .timeline-card-desc {
        font-size: 14px;
    }

    .timeline-connector {
        width: 40px;
    }

    .timeline-circle {
        width: 55px;
        height: 55px;
    }

    .timeline-circle svg {
        width: 28px;
        height: 28px;
    }

    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-form-card {
        padding: 60px 48px;
        gap: 48px;
    }

    .contact-info-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners-heading {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .partners-track {
        gap: 24px;
    }

    .partner-item {
        width: 240px;
        height: 140px;
        padding: 20px;
    }

    .partner-item img {
        width: 160px;
        height: 70px;
    }

    .partner-reference {
        font-size: 13px;
        padding: 10px 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-main-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        grid-column: span 1;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
        margin: 0;
    }

    .service-card {
        padding: 28px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trainers-title {
        font-size: 32px;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process {
        padding: 50px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-title {
        font-size: 26px;
    }

    .process-subtitle {
        font-size: 15px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    /* Mobile Timeline - Simple Vertical */
    .timeline {
        margin-bottom: 30px;
        padding: 0 0 0 85px;
        max-width: 100%;
    }

    .timeline-line {
        left: 30px;
        transform: none;
        top: 30px;
        bottom: 30px;
    }

    .timeline-item {
        display: block;
        margin-bottom: 40px;
        position: relative;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-circle {
        position: absolute;
        left: -85px;
        top: 0;
        width: 55px;
        height: 55px;
    }

    .timeline-circle svg {
        width: 24px;
        height: 24px;
    }

    .timeline-content {
        display: block;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-card {
        padding: 18px;
        margin: 0;
        width: 100%;
    }

    .timeline-item--left .timeline-card,
    .timeline-item--right .timeline-card {
        text-align: left;
    }

    .timeline-card-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .timeline-card-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .process-cta {
        margin-top: 30px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stats-numbers {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-value span {
        font-size: 24px;
    }

    .stat-desc {
        font-size: 12px;
    }

    .world-map {
        height: 300px;
    }

    .flag-circle {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 40px 24px;
        border-radius: 16px;
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-col {
        flex: none;
        width: 100%;
    }

    .contact-info-heading {
        font-size: 28px;
    }

    .contact-info-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .contact-info-items {
        margin-bottom: 28px;
    }

    .services-checkboxes {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        padding: 60px 0;
    }

    .contact-map-heading h3 {
        font-size: 24px;
    }

    .contact-map-frame {
        height: 320px;
        border-radius: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-card {
        padding: 12px 16px;
        font-size: 12px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;
    }

    .floating-icon svg {
        width: 16px;
        height: 16px;
    }

    .card-2 {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .partners-track {
        gap: 20px;
    }

    .partner-item {
        width: 200px;
        height: 120px;
        padding: 16px;
    }

    .partner-item img {
        width: 140px;
        height: 60px;
    }

    .partner-reference {
        font-size: 12px;
        padding: 8px 12px;
    }

    .btn-lg {
        padding: 14px 28px;
        width: 100%;
    }

    .hero-professional-image {
        max-width: 400px;
        max-height: 400px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
