/* =========================================
CSS VARIABLES & GLOBAL SETTINGS
========================================= */
:root {
--primary: #FF6600;
--primary-hover: #FF8533;
--bg-base: #060606;
--bg-surface: #111111;
--bg-glass: rgba(17, 17, 17, 0.8);
--text-main: #F4F4F4;
--text-muted: #A0A0A0;
--border-color: rgba(255, 102, 0, 0.2);
--glow: 0 0 20px rgba(255, 102, 0, 0.4);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="light"] {
--primary: #E65C00;
--bg-base: #F5F5F7;
--bg-surface: #FFFFFF;
--bg-glass: rgba(255, 255, 255, 0.95);
--text-main: #1A1A1A;
--text-muted: #555555;
--border-color: rgba(230, 92, 0, 0.25);
--glow: 0 5px 15px rgba(230, 92, 0, 0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-base);
color: var(--text-main);
line-height: 1.6;
overflow-x: hidden;
transition: background-color var(--transition), color var(--transition);
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.text-orange { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.section-padding { padding: 6rem 5%; position: relative; }
.dark-bg {
background-color: var(--bg-surface);
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}
.max-width { max-width: 1200px; margin: 0 auto; width: 100%; }

.glass-card {
background: var(--bg-glass);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 2rem;
transition: var(--transition);
}
.glass-card:hover { border-color: var(--primary); box-shadow: var(--glow); transform: translateY(-5px); }
.btn {
padding: 0.8rem 2.5rem; font-family: 'Outfit', sans-serif; font-weight: 600;
font-size: 1rem; border-radius: 5px; cursor: pointer; transition: var(--transition);
text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-primary { background: var(--primary); color: #000; border: 1px solid var(--primary); box-shadow: 0 0 15px rgba(255, 102, 0, 0.4); }
.btn-primary:hover { background: transparent; color: var(--primary); box-shadow: var(--glow); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--glow); }

/* =========================================
LOADER & CURSOR & PROGRESS
========================================= */
#loader {
position: fixed; inset: 0; background: #050505; z-index: 99999;
display: flex; justify-content: center; align-items: center; transition: opacity 0.5s;
}
.ignition-container { text-align: center; }
.speedometer {
width: 100px; height: 50px; border-top-left-radius: 100px; border-top-right-radius: 100px;
border: 5px solid var(--border-color); border-bottom: 0; position: relative;
margin: 0 auto 1rem; overflow: hidden;
}
.needle {
width: 45px; height: 4px; background: var(--primary); position: absolute;
bottom: 0; left: 5px; transform-origin: right center;
animation: rev 1.5s ease-in-out infinite alternate;
}
@keyframes rev { 0% { transform: rotate(0deg); } 100% { transform: rotate(180deg); box-shadow: var(--glow); } }
.engine-text { color: var(--primary); font-family: 'Outfit'; font-weight: 700; letter-spacing: 3px; animation: pulse 1s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.cursor-glow {
width: 50px; height: 50px; background: radial-gradient(circle, rgba(255,102,0,0.5) 0%, transparent 70%);
border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
transform: translate(-50%, -50%); mix-blend-mode: screen; display: none;
}
@media(hover: hover) { .cursor-glow { display: block; } }
.scroll-progress {
position: fixed; top: 0; left: 0; height: 4px; background: var(--primary);
width: 0%; z-index: 10001; box-shadow: var(--glow);
}

/* =========================================
HEADER & NAVIGATION
========================================= */
header {
position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.5rem 0;
background: transparent; transition: var(--transition);
}
header.scrolled {
background: var(--bg-glass); backdrop-filter: blur(15px);
border-bottom: 1px solid var(--border-color); padding: 1rem 0; box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.logo { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900; letter-spacing: 1px; z-index: 1001; position: relative;}
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; position: relative; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; box-shadow: var(--glow); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; z-index: 1001; position: relative; }
.theme-toggle { background: transparent; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
.theme-toggle:hover { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-main); transition: var(--transition); }
.mobile-menu-btn:hover { color: var(--primary); }
.mobile-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999;
opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* =========================================
HERO SECTION
========================================= */
.hero {
min-height: 100vh; display: flex; align-items: center; justify-content: flex-start;
position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
position: absolute; inset: 0; z-index: 1;
background: url('https://unsplash.com/photos/_A5_WFSxAmM/download?w=1920') center right/cover no-repeat;
}
.hero-overlay {
position: absolute; inset: 0; z-index: 2;
background: linear-gradient(90deg, rgba(6,6,6,0.98) 0%, rgba(6,6,6,0.85) 50%, rgba(6,6,6,0.4) 100%);
}
[data-theme="light"] .hero-overlay {
background: linear-gradient(90deg, rgba(245,245,247,0.98) 0%, rgba(245,245,247,0.9) 50%, rgba(245,245,247,0.5) 100%);
}
#sparksCanvas { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.7; }
.hero-container { position: relative; z-index: 4; width: 100%; padding: 0 5%; }
.hero-content { max-width: 750px; }
.hero-content .tagline {
display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem;
background: rgba(255, 102, 0, 0.1); border: 1px solid var(--border-color);
border-radius: 50px; color: var(--primary); font-weight: 600; margin-bottom: 1.5rem;
box-shadow: var(--glow);
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 0.5rem; }
.hero h2 { font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--text-main); margin-bottom: 1.5rem; font-weight: 500; height: 35px; }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }
.cursor { color: var(--primary); animation: blink 1s infinite; font-weight: 400; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================
SOCIAL ICONS
========================================= */
.floating-socials {
position: fixed; left: 20px; top: 50%; transform: translateY(-50%); z-index: 100;
display: flex; flex-direction: column; gap: 1rem;
}
.floating-socials a, .footer-socials a {
width: 45px; height: 45px; background: var(--bg-glass); border: 1px solid var(--border-color);
border-radius: 50%; display: flex; justify-content: center; align-items: center;
color: var(--text-main); text-decoration: none; transition: var(--transition);
backdrop-filter: blur(5px); font-size: 1.2rem;
}
.floating-socials a:hover, .footer-socials a:hover { transform: translateX(5px); color: #fff; }
.footer-socials a:hover { transform: translateY(-3px); }

/* Brand Colors on hover */
.icon-email:hover { background: #EA4335; border-color: #EA4335; box-shadow: 0 0 15px rgba(234, 67, 53, 0.5); }
.icon-whatsapp:hover { background: #25D366; border-color: #25D366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
.icon-telegram:hover { background: #0088cc; border-color: #0088cc; box-shadow: 0 0 15px rgba(0, 136, 204, 0.5); }
.icon-instagram:hover { background: #E1306C; border-color: #E1306C; box-shadow: 0 0 15px rgba(225, 48, 108, 0.5); }
.icon-wechat:hover { background: #07C160; border-color: #07C160; box-shadow: 0 0 15px rgba(7, 193, 96, 0.5); }
.icon-line:hover { background: #00C300; border-color: #00C300; box-shadow: 0 0 15px rgba(0, 195, 0, 0.5); }

/* =========================================
SECTIONS
========================================= */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 2.5rem); letter-spacing: 1px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.5rem; }
.header-line { width: 80px; height: 4px; background: var(--primary); margin: 1rem auto 0; box-shadow: var(--glow); border-radius: 5px; }

/* About & Pillars & Timelines */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; }
.quote-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; opacity: 0.3; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.stat-box h3 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: 0.2rem; }
.stat-box span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; }
.future-goals { background: linear-gradient(145deg, var(--bg-surface), rgba(255,102,0,0.05)); }
.future-goals h3 { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
.goal-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.goal-icon { width: 45px; height: 45px; background: rgba(255,102,0,0.1); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; }
.goal-item h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.pillar-card { padding: 2rem 1.5rem; }
.pillar-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pillar-icon { font-size: 2rem; color: var(--primary); filter: drop-shadow(0 0 8px rgba(255,102,0,0.5)); }
.pillar-header h3 { font-size: 1.2rem; line-height: 1.2; }
.pillar-list { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.pillar-list li { margin-bottom: 0.8rem; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 8px; color: var(--text-muted); }
.progress-bg { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }[data-theme="light"] .progress-bg { background: rgba(0,0,0,0.1); }
.progress-bar { height: 100%; background: var(--primary); border-radius: 10px; width: 0; box-shadow: 0 0 10px rgba(255,102,0,0.8); transition: width 1.5s ease-in-out; }

.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; width: 2px; height: 100%; background: var(--border-color); }
.timeline-item { position: relative; padding-left: 70px; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: 16px; top: 6px; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; box-shadow: var(--glow); border: 3px solid var(--bg-base); }
.timeline-content { padding: 2rem; }
.timeline-header-flex { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.timeline-date { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; display: block; text-transform: uppercase; letter-spacing: 1px; }
.timeline-title { font-size: 1.5rem; margin-bottom: 0.2rem; }
.timeline-header-info .timeline-company { font-size: 1.1rem; font-weight: 500; margin-bottom: 0; }
.timeline-location { background: rgba(255, 102, 0, 0.1); color: var(--primary); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border-color); }
.timeline-content ul { list-style: none; margin-left: 0; }
.timeline-content li { position: relative; padding-left: 20px; margin-bottom: 0.6rem; color: var(--text-muted); font-size: 0.95rem; }
.timeline-content li::before { content: '▹'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.edu-card { text-align: center; }
.edu-icon { width: 60px; height: 60px; background: rgba(255,102,0,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--primary); margin: 0 auto 1.5rem; border: 1px solid var(--border-color); }
.edu-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.edu-school { font-weight: 600; margin-bottom: 0.5rem; }
.edu-date { display: inline-block; margin-top: 1rem; padding: 0.3rem 1rem; background: var(--bg-base); border: 1px solid var(--border-color); border-radius: 50px; font-size: 0.85rem; color: var(--primary); }


/* =========================================
LEAFLET GEOJSON MAP CUSTOMIZATION
========================================= */
#realTravelMap { 
    height: 500px; 
    width: 100%; 
    border-radius: 10px; 
    z-index: 1; 
    background: var(--bg-surface);
}

/* Hover Tooltips Style */
.custom-leaflet-tooltip {
    background: var(--bg-surface) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    box-shadow: var(--glow) !important;
    padding: 15px !important;
    white-space: normal !important;
    width: max-content !important;
    max-width: 280px !important;
    backdrop-filter: blur(12px) !important;
    font-family: 'Inter', sans-serif;
}

/* Hide the little triangle arrow from default leaflet tooltips */
.leaflet-tooltip.custom-leaflet-tooltip::before {
    display: none !important;
}

/* Text formatting inside tooltip */
.map-tooltip-custom h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-tooltip-custom p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 5px;
}
.map-tooltip-custom strong {
    color: var(--text-main);
}

/* Contact & QR */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.contact-card { display: flex; align-items: center; gap: 1.5rem; text-decoration: none; color: var(--text-main); }
.contact-icon { width: 60px; height: 60px; background: rgba(255,102,0,0.1); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); }
.contact-text h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.contact-text p { word-break: break-all; }
.qr-container { padding: 3rem 2rem; }
.qr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 2rem; justify-items: center; }
.qr-item { text-align: center; }
.qr-bg { background: #fff; padding: 10px; border-radius: 10px; display: inline-block; border: 3px solid var(--border-color); transition: var(--transition); }
.qr-bg:hover { border-color: var(--primary); box-shadow: var(--glow); transform: scale(1.05); }

/* Footer */
footer { background: var(--bg-base); padding: 4rem 5% 2rem; text-align: center; border-top: 1px solid var(--border-color); }
.footer-socials { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: #000; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; box-shadow: var(--glow); z-index: 100; opacity: 0; pointer-events: none; transition: var(--transition); }
.back-to-top.active { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-5px); background: #fff; }

/* =========================================
RESPONSIVE DESIGN (MOBILE & TABLET)
========================================= */
@media (max-width: 992px) {
.about-grid { grid-template-columns: 1fr; }
.floating-socials { display: none; } 
.section-padding { padding: 4rem 5%; }
}
@media (max-width: 768px) {
.mobile-menu-btn { display: block; }
.nav-links { position: fixed; top: 75px; right: -100%; width: 280px; height: calc(100vh - 75px); flex-direction: column; justify-content: flex-start; align-items: center; background: var(--bg-surface); padding-top: 3rem; transition: right 0.4s ease-in-out; border-top: 1px solid var(--border-color); box-shadow: -5px 0 20px rgba(0,0,0,0.5); z-index: 1000; display: flex; }
.nav-links.active { right: 0; }
.nav-links li { margin: 1.5rem 0; width: 100%; text-align: center; }
.nav-links a { font-size: 1.2rem; display: block; padding: 0.5rem; }
.hero-overlay { background: linear-gradient(180deg, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.8) 60%, rgba(6,6,6,0.3) 100%); }[data-theme="light"] .hero-overlay { background: linear-gradient(180deg, rgba(245,245,247,0.98) 0%, rgba(245,245,247,0.9) 60%, rgba(245,245,247,0.4) 100%); }
.hero-content { text-align: center; }
.hero-buttons { justify-content: center; }
.timeline::before { left: 15px; }
.timeline-item { padding-left: 40px; }
.timeline-dot { left: 6px; }
.timeline-header-flex { flex-direction: column; gap: 0.5rem; }
.contact-card { flex-direction: column; text-align: center; padding: 1.5rem 1rem; }
.qr-container { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
.qr-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.hero h1 { font-size: 2.5rem; }
.stats-grid { grid-template-columns: 1fr; } 
.btn { width: 100%; } 
}