/* ====================================
   MAKORI TEAM - STYLES.CSS COMPLETO
   ==================================== */

/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --success: #10b981;
    --error: #ef4444;
}

[data-theme="dark"] {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --background: #111827;
    --surface: #1f2937;
    --border: #374151;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    background: rgba(17, 24, 39, 0.95);
}
.nav {
    padding: 1rem 2.5rem;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem; /* antes 2rem, más compacto pero limpio */
    align-items: center;
    flex-wrap: nowrap;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem; /* separa mejor Iniciar Sesión y Registrarse */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.theme-toggle {
    background: none;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Estilo para el botón de Registrarse */
.reg {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #a084dc);
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Hover elegante */
.reg:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-character {
    width: 400px;
    height: 400px;
    object-fit: contain;
    animation: bounce 3s ease-in-out infinite;
}

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

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float-icon 6s ease-in-out infinite;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .floating-icon {
    background: rgba(31, 41, 55, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

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

.floating-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.floating-icons-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes float-icon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(1deg); 
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Essence Section - NUEVA Y MEJORADA */
.essence {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .essence {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.essence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.essence-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.essence-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.essence-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.essence-content {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.essence-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.essence-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

[data-theme="dark"] .essence-card {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.essence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.essence-card:hover::before {
    left: 100%;
}

.essence-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.essence-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.essence-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.essence-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.essence-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.essence-logo-container {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.essence-logo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.essence-logo-container::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

.essence-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 2;
}

.essence-motto {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

[data-theme="dark"] .essence-motto {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.essence-motto p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.essence-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-element 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.essence-floating-element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.essence-floating-element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.essence-floating-element-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

.essence-floating-element-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 6s;
}

.essence-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out;
}

[data-theme="dark"] .stat-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes float-element {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.1); 
        opacity: 1;
    }
}

/* Metodology Section */
.methodology {
    padding: 6rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.methodology-header {
    text-align: center;
    margin-bottom: 4rem;
}

.methodology-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out;
}

.methodology h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.methodology-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Orbital Diagram */
.orbital-diagram {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 4rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.orbital-center img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.orbital-point {
    position: absolute;
    width: 160px;
    height: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orbital-point:hover {
    transform: scale(1.1);
}

.orbital-point-1 {
    top: 0;
    right: 0;
    animation: float 8s ease-in-out infinite;
}

.orbital-point-2 {
    top: 0;
    left: 0;
    animation: float 8s ease-in-out infinite 2s;
}

.orbital-point-3 {
    bottom: 0;
    left: 0;
    animation: float 8s ease-in-out infinite 4s;
}

.orbital-point-4 {
    bottom: 0;
    right: 0;
    animation: float 8s ease-in-out infinite 6s;
}

.orbital-shape {
    width: 100%;
    height: 100%;
    position: relative;
}

.orbital-shape svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.step-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Tooltips */
.tooltip {
    position: absolute;
    background: var(--background);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 4;
    min-width: 200px;
    text-align: center;
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-1 {
    top: -80px;
    right: -100px;
}

.tooltip-2 {
    top: -80px;
    left: -100px;
}

.tooltip-3 {
    bottom: -80px;
    left: -100px;
}

.tooltip-4 {
    bottom: -80px;
    right: -100px;
}

/* Learning Types Section */
.learning-types {
    margin-top: 6rem;
    padding: 4rem 0;
    background: var(--surface);
    border-radius: 30px;
}

.learning-types h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.learning-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}

.learning-card:hover::before {
    left: 100%;
}

.learning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.learning-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.learning-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.learning-card .subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.learning-card .description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ambassadors Section */
.ambassadors {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.ambassadors-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.floating-crown {
    position: absolute;
    font-size: 2rem;
    animation: floatCrown 8s ease-in-out infinite;
    opacity: 0.7;
}

.floating-crown-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-crown-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-crown-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-crown-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.floating-crown-5 {
    top: 50%;
    left: 5%;
    animation-delay: 6s;
}

@keyframes floatCrown {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg) scale(1.05); 
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) rotate(2deg) scale(1.15); 
        opacity: 1;
    }
}

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

/* Header Styles */
.ambassadors-header {
    text-align: center;
    margin-bottom: 4rem;
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s ease-in-out infinite;
}

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

.ambassadors-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.ambassadors-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ambassador-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Countdown Styles */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.countdown-text {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.spots-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.counter-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.urgency-text {
    color: #ef4444;
    font-weight: 600;
    font-size: 1rem;
}

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

/* Main Content Layout */
.ambassadors-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Kori Visual */
.ambassadors-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kori-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kori-ambassador {
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 3;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
    animation: floatKori 4s ease-in-out infinite;
}

@keyframes floatKori {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.kori-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

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

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-duration: 15s;
}

.ring-2 {
    width: 320px;
    height: 320px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation-duration: 25s;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Benefit Icons */
.benefit-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    animation: floatBenefit 6s ease-in-out infinite;
}

.benefit-float-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.benefit-float-2 {
    left: -25%;
    top: 50%;
    animation-delay: 2s;
}

.benefit-float-3 {
    bottom: 15%;
    right: -15%;
    animation-delay: 4s;
}

@keyframes floatBenefit {
    0%, 100% { transform: translateY(0px); opacity: 0.9; }
    50% { transform: translateY(-10px); opacity: 1; }
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    color: #ffffff;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fbbf24;
}

.gift-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-benefit {
    animation: slideInBenefit 0.6s ease-out forwards;
}

@keyframes slideInBenefit {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}

.benefit-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fbbf24;
}

.benefit-card p {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Call to Action */
.ambassadors-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 30px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
}

.disclaimer-icon {
    font-size: 1.1rem;
    animation: blink 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .ambassadors-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .benefit-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .ambassadors {
        padding: 4rem 1rem;
    }

    .ambassadors-title {
        font-size: 2.5rem;
    }

    .kori-container {
        width: 250px;
        height: 250px;
    }

    .kori-ambassador {
        width: 150px;
        height: 150px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .floating-crown {
        font-size: 1.5rem;
    }
}
.pricing {
    padding: 6rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.pricing-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

[data-theme="dark"] .plan-card {
    background: rgba(31, 41, 55, 0.9);
    border: 2px solid rgba(55, 65, 81, 0.3);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Plan Specific Styles */
.free-plan:hover {
    border-color: #10b981;
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
}

.basic-plan:hover {
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.premium-plan {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

.premium-plan:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 35px 70px rgba(245, 158, 11, 0.3);
}

.enterprise-plan:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.plan-badge.premium {
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* Plan Image */
.plan-image-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 25px 25px 0 0;
    position: relative;
    overflow: hidden;
}

.plan-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
    z-index: 2;
}

.plan-card:hover .plan-image {
    transform: scale(1.1) rotate(5deg);
}

/* Plan Content */
.plan-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.check {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.cross {
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Plan Buttons */
.plan-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.plan-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-basic {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-basic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-enterprise {
    background: linear-gradient(135deg, var(--secondary-color), #7c3aed);
    color: white;
}

.btn-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Pricing Footer */
.pricing-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-guarantee,
.pricing-support,
.pricing-updates {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

[data-theme="dark"] .pricing-guarantee,
[data-theme="dark"] .pricing-support,
[data-theme="dark"] .pricing-updates {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.pricing-guarantee:hover,
.pricing-support:hover,
.pricing-updates:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

.guarantee-icon,
.support-icon,
.updates-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-content h4,
.support-content h4,
.updates-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guarantee-content p,
.support-content p,
.updates-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Floating Elements */
.pricing-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-element 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
}

.pricing-floating-element-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.pricing-floating-element-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
}

.pricing-floating-element-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
}

.pricing-floating-element-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 6s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-plan {
        transform: scale(1);
    }
    
    .premium-plan:hover {
        transform: translateY(-15px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 4rem 1rem;
    }

    .pricing-title {
        font-size: 2.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-plan {
        transform: scale(1);
    }

    .plan-content {
        padding: 1.5rem;
    }

    .plan-image-container {
        height: 150px;
    }

    .plan-image {
        width: 100px;
        height: 100px;
    }

    .pricing-floating-element {
        display: none;
    }

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

    .pricing-guarantee,
    .pricing-support,
    .pricing-updates {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .testimonials {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.testimonials-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.testimonial-card {
    width: 25%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

/* Testimonial Image */
.testimonial-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3px;
    transition: all 0.3s ease;
}

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.testimonial-badge {
    margin-top: 1rem;
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1.2rem;
    color: #fbbf24;
    animation: twinkle 2s ease-in-out infinite;
}

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

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Testimonial Content */
.testimonial-content {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-info {
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .carousel-btn {
    background: rgba(31, 41, 55, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.carousel-btn:hover svg {
    color: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.carousel-prev {
    left: -80px;
}

.carousel-next {
    right: -80px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-prev {
        left: -60px;
    }
    
    .carousel-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .carousel-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }

    .carousel-prev {
        left: -20px;
        width: 50px;
        height: 50px;
    }
    
    .carousel-next {
        right: -20px;
        width: 50px;
        height: 50px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .quote-icon {
        font-size: 3rem;
        top: -1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-prev,
    .carousel-next {
        display: none;
    }

    .carousel-container {
        padding: 0;
    }

    .testimonial-card {
        margin: 0;
    }
}
.about-us {
    padding: 6rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.about-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

[data-theme="dark"] .team-member {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

/* Member Image */
.member-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.team-member:hover .member-social {
    transform: translateY(0);
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Member Content */
.member-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .team-stat-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.team-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-content .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Floating Elements */
.about-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-element 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
}

.about-floating-element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.about-floating-element-2 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.about-floating-element-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
}

.about-floating-element-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: 6s;
}

/* Responsive Design for About Us */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 1rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .member-image-container {
        height: 250px;
    }

    .member-content {
        padding: 2rem;
    }

    .about-floating-element {
        display: none;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-stat-card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Courses Section */
.courses {
    padding: 4rem 2rem;
    background: var(--surface);
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.courses h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--background);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.course-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.course-content {
    padding: 2rem;
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.course-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--background);
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: slideInScale 0.3s ease;
}

@keyframes slideInScale {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}




                  /* Responsive Design for About Us */
@media (max-width: 1200px) {
  .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-us {
      padding: 4rem 1rem;
  }

  .about-title {
      font-size: 2.5rem;
  }

  .team-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .member-image-container {
      height: 250px;
  }

  .member-content {
      padding: 2rem;
  }

  .about-floating-element {
      display: none;
  }

  .team-stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .team-stat-card {
      padding: 2rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
  }
}

/* Social Media Section */
.social-media {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.social-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.social-header {
  text-align: center;
  margin-bottom: 4rem;
}

.social-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  animation: slideInDown 1s ease-out;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.social-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  animation: slideInUp 1s ease-out 0.2s both;
  line-height: 1.1;
}

.social-description {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Social Networks Grid */
.social-networks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-card:hover::before {
  left: 100%;
}

.social-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Platform-specific colors */
.social-instagram:hover {
  border-color: #E4405F;
  box-shadow: 0 25px 50px rgba(228, 64, 95, 0.4);
}

.social-facebook:hover {
  border-color: #1877F2;
  box-shadow: 0 25px 50px rgba(24, 119, 242, 0.4);
}

.social-youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4);
}

.social-tiktok:hover {
  border-color: #FE2C55;
  box-shadow: 0 25px 50px rgba(254, 44, 85, 0.4);
}

.social-linkedin:hover {
  border-color: #0A66C2;
  box-shadow: 0 25px 50px rgba(10, 102, 194, 0.4);
}

.social-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.social-instagram .social-icon {
  background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-facebook .social-icon {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-youtube .social-icon {
  background: linear-gradient(135deg, #FF0000, #FF4444);
}

.social-tiktok .social-icon {
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
}

.social-linkedin .social-icon {
  background: linear-gradient(135deg, #0A66C2, #2196F3);
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-platform-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.social-followers {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.social-description-text {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Videos Section */
.videos-showcase {
  padding: 6rem 2rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.videos-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.videos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.videos-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  animation: slideInDown 1s ease-out;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.videos-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: slideInUp 1s ease-out 0.2s both;
  line-height: 1.1;
}

.videos-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Platform Tabs */
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.platform-tab {
  padding: 1rem 2rem;
  border: 2px solid var(--border);
  border-radius: 25px;
  background: var(--background);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-tab.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.platform-tab:hover:not(.active) {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.videos-grid.hidden {
  opacity: 0;
}

.video-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

[data-theme="dark"] .video-card {
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.3);
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.video-card:hover::before {
  left: 100%;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(239, 68, 68, 0.9);
}

.platform-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  z-index: 3;
}

.badge-youtube {
  background: linear-gradient(135deg, #FF0000, #FF4444);
}

.badge-tiktok {
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
}

.video-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.video-duration {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-weight: 600;
}

/* Floating Elements */
.videos-floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-element 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
}

.videos-floating-element-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.videos-floating-element-2 {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
}

.videos-floating-element-3 {
  bottom: 25%;
  left: 10%;
  animation-delay: 4s;
}

.videos-floating-element-4 {
  bottom: 20%;
  right: 8%;
  animation-delay: 6s;
}

/* Responsive Design for Social Media */
@media (max-width: 1200px) {
  .social-networks {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
  }
  
  .videos-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .social-media {
      padding: 4rem 1rem;
  }

  .social-title,
  .videos-title {
      font-size: 2.5rem;
  }

  .social-networks {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }

  .social-card {
      padding: 1.5rem;
  }

  .social-icon {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
  }

  .videos-showcase {
      padding: 4rem 1rem;
  }

  .videos-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .platform-tabs {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
  }

  .platform-tab {
      width: 100%;
      max-width: 300px;
      justify-content: center;
  }

  .videos-floating-element {
      display: none;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: white;
    line-height: 1.6;
}

/* Work With Us Section */
.work-with-us {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.work-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.floating-work-element {
    position: absolute;
    font-size: 2rem;
    animation: floatWork 8s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

.floating-work-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-work-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-work-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-work-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.floating-work-5 {
    top: 50%;
    left: 5%;
    animation-delay: 6s;
}

@keyframes floatWork {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg) scale(1.05); 
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) rotate(2deg) scale(1.15); 
        opacity: 1;
    }
}

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

.work-header {
    text-align: center;
    margin-bottom: 4rem;
}

.work-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.work-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    animation: slideInUp 1s ease-out 0.4s both;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Kori Work Visual */
.work-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kori-work-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kori-work {
    width: 250px;
    height: 250px;
    object-fit: contain;
    z-index: 3;
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(245, 158, 11, 0.6));
    animation: floatKoriWork 4s ease-in-out infinite;
}

@keyframes floatKoriWork {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.work-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: workGlow 3s ease-in-out infinite;
}

@keyframes workGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.work-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: rotateWorkOrbit 15s linear infinite;
}

.work-orbit-1 {
    width: 320px;
    height: 320px;
    animation-duration: 20s;
}

.work-orbit-2 {
    width: 360px;
    height: 360px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.work-orbit-3 {
    width: 400px;
    height: 400px;
    animation-duration: 30s;
}

@keyframes rotateWorkOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Work Information */
.work-info {
    color: white;
}

.work-benefits-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fbbf24;
}

.work-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.work-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.work-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}

.work-benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.work-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.work-benefit-card p {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Open Positions */
.open-positions {
    margin-bottom: 3rem;
}

.positions-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.position-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.position-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.position-info p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.position-badge {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.cta-work-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-work-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.work-social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.work-social-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.linkedin-btn {
    background: linear-gradient(135deg, #0A66C2, #2196F3);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #34D399, #10B981);
    color: white;
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #FD1D1D);
    color: white;
}

.work-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.work-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-style: italic;
}

.work-disclaimer-icon {
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .work-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .work-with-us {
        padding: 4rem 1rem;
    }

    .work-title {
        font-size: 2.5rem;
    }

    .work-benefits-grid {
        grid-template-columns: 1fr;
    }

    .work-social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .work-social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .floating-work-element {
        display: none;
    }

    .kori-work-container {
        width: 250px;
        height: 250px;
    }

    .kori-work {
        width: 180px;
        height: 180px;
    }
}
/* Footer */
.footer {
    background: var(--surface);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .essence-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .essence-center {
        order: -1;
    }

    .essence-side {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .essence-card {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-main-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-character {
        width: 300px;
        height: 350px;
        order: 1;
    }

    .hero-right-content {
        order: 2;
    }

    .floating-icons-row {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .floating-icon img {
        width: 24px;
        height: 24px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 80%;
        max-width: 280px;
    }

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

    .essence {
        padding: 4rem 1rem;
    }

    .essence-title {
        font-size: 2.5rem;
    }

    .essence-logo-container {
        width: 250px;
        height: 250px;
    }

    .essence-logo {
        width: 150px;
        height: 150px;
    }

    .essence-side {
        flex-direction: column;
    }

    .essence-card {
        max-width: none;
    }

    .essence-floating-element {
        display: none;
    }

    .essence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .methodology h2 {
        font-size: 2.2rem;
    }

    .orbital-diagram {
        width: 400px;
        height: 400px;
    }

    .orbital-center {
        width: 150px;
        height: 150px;
    }

    .orbital-center img {
        width: 100px;
        height: 100px;
    }

    .orbital-point {
        width: 120px;
        height: 120px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Animation utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Success/Error messages */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}


 /* Reset y configuración base */
 .makori-essence * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.makori-essence {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
}

.makori-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: 
        radial-gradient(circle at 25% 75%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
}

/* Efectos de fondo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: floatAnimation 6s ease-in-out infinite;
}

.orb-1 { width: 60px; height: 60px; top: 10%; left: 10%; animation-delay: 0s; animation-duration: 8s; }
.orb-2 { width: 40px; height: 40px; top: 20%; right: 15%; animation-delay: 2s; animation-duration: 6s; }
.orb-3 { width: 80px; height: 80px; bottom: 20%; left: 5%; animation-delay: 4s; animation-duration: 10s; }
.orb-4 { width: 30px; height: 30px; top: 60%; right: 10%; animation-delay: 1s; animation-duration: 7s; }
.orb-5 { width: 50px; height: 50px; bottom: 10%; right: 20%; animation-delay: 3s; animation-duration: 9s; }
.orb-6 { width: 70px; height: 70px; top: 40%; left: 15%; animation-delay: 5s; animation-duration: 8s; }

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Contenedor principal */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

/* Avatar del personaje */
.hero-character {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ff006e);
    animation: rotateRing 8s linear infinite;
    opacity: 0.7;
    filter: blur(20px);
}

.character-avatar {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: levitateAvatar 3s ease-in-out infinite;
    box-shadow: 
        0 0 50px rgba(255, 0, 110, 0.4),
        0 0 80px rgba(131, 56, 236, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: glowSweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes levitateAvatar { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
@keyframes glowSweep { 0%, 100% { opacity: 0; transform: translateX(-100%) rotate(45deg); } 50% { opacity: 1; transform: translateX(100%) rotate(45deg); } }

/* Contenido del hero */
.hero-content {
    color: white;
    animation: slideInContent 1s ease-out;
}

@keyframes slideInContent { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* Badge superior */
.content-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeSweep 3s ease-in-out infinite;
}

.badge-emoji {
    font-size: 1.2rem;
    animation: bounceEmoji 1s ease-in-out infinite;
}

.badge-label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); } 50% { box-shadow: 0 0 40px rgba(255, 0, 110, 0.8); } }
@keyframes badgeSweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes bounceEmoji { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* Título principal */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 3s ease-in-out infinite;
}

.title-highlight {
    color: #06ffa5;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

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

/* Descripción */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Grid de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.benefit-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.benefit-title {
    font-weight: 700;
    font-size: 1rem;
    color: #06ffa5;
}

.benefit-desc {
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Botón principal */
.action-section {
    display: flex;
    justify-content: flex-start;
}

.primary-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(255, 0, 110, 0.4);
    font-family: inherit;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 0, 110, 0.6);
}

.primary-button:active {
    transform: translateY(-1px);
}

.button-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.primary-button:hover .button-ripple {
    left: 100%;
}

.button-icon {
    font-size: 1.3rem;
    z-index: 1;
}

.button-text {
    z-index: 1;
}

/* Placeholder para imagen faltante */
.avatar-img[src="Makori-angel.jpeg"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.avatar-img[src="Makori-angel.jpeg"]::before {
    content: "MAKORI";
}

/* RESPONSIVE DESIGN */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        max-width: 800px;
    }

    .character-ring {
        width: 280px;
        height: 280px;
    }

    .character-avatar {
        width: 240px;
        height: 240px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

/* Móviles grandes (480px - 768px) */
@media (max-width: 768px) {
    .makori-hero {
        padding: 1rem 0.5rem;
    }

    .hero-container {
        gap: 2rem;
        padding: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .character-ring {
        width: 240px;
        height: 240px;
    }

    .character-avatar {
        width: 200px;
        height: 200px;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .primary-button {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* Móviles pequeños (max 480px) */
@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .character-ring {
        width: 200px;
        height: 200px;
    }

    .character-avatar {
        width: 160px;
        height: 160px;
    }

    .content-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .benefit-card {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .benefit-title {
        font-size: 0.9rem;
    }

    .benefit-desc {
        font-size: 0.8rem;
    }

    .primary-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-orb {
        opacity: 0.6;
    }
}

/* Móviles muy pequeños (max 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .character-avatar {
        width: 140px;
        height: 140px;
    }

    .character-ring {
        width: 180px;
        height: 180px;
    }
}

/* ===== SECCIÓN DE ORIENTACIÓN PROFESIONAL ===== */

.professional-services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-element 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    font-size: 2rem;
}

.floating-element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.floating-element-3 {
    bottom: 30%;
    left: 3%;
    animation-delay: 4s;
}

.floating-element-4 {
    top: 60%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes float-element {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1); 
        opacity: 1;
    }
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #2d3748;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #4a5568;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Image Container */
.service-image-container {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.service-badge.popular {
    background: #f59e0b;
    color: white;
}

.service-badge.new {
    background: #10b981;
    color: white;
}

.service-badge:not(.popular):not(.new) {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
}

/* Service Content */
.service-content {
    padding: 2rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10b981;
    line-height: 1.3;
}

.service-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.feature-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 18px;
}

/* Service Footer */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
    gap: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
}

.price-currency {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* CTA Section */
.services-cta {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-kori-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: bounce 3s ease-in-out infinite;
    margin-bottom: 2rem;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.cta-primary {
    background: #10b981;
    color: white;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid #4a5568;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-primary:hover {
    background: #059669;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.cta-secondary:hover {
    border-color: #10b981;
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .professional-services {
        padding: 4rem 1rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .whatsapp-button {
        justify-content: center;
        width: 100%;
    }

    .floating-element {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-image-container {
        height: 160px;
    }

    .service-image {
        width: 100px;
        height: 100px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}