1913 lines
35 KiB
CSS
1913 lines
35 KiB
CSS
/* ===== CSS Variables & Reset ===== */
|
|
:root {
|
|
--bg-primary: #0a0e17;
|
|
--bg-secondary: #111827;
|
|
--bg-card: rgba(17, 24, 39, 0.7);
|
|
--bg-glass: rgba(255, 255, 255, 0.05);
|
|
--text-primary: #f1f5f9;
|
|
--text-secondary: #94a3b8;
|
|
--text-muted: #64748b;
|
|
--accent-1: #FF6B6B;
|
|
--accent-2: #FFE66D;
|
|
--accent-3: #4ECDC4;
|
|
--accent-4: #A78BFA;
|
|
--gradient-main: linear-gradient(135deg, #FF6B6B, #FFE66D, #4ECDC4);
|
|
--gradient-text: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
|
|
--shadow-glow: 0 0 40px rgba(78, 205, 196, 0.15);
|
|
--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
--border-glass: 1px solid rgba(255, 255, 255, 0.08);
|
|
--radius-sm: 8px;
|
|
--radius-md: 16px;
|
|
--radius-lg: 24px;
|
|
--radius-xl: 32px;
|
|
--font-display: 'Outfit', 'Noto Sans SC', sans-serif;
|
|
--font-body: 'Noto Sans SC', 'Outfit', sans-serif;
|
|
--nav-height: 72px;
|
|
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--bg-primary: #f8fafc;
|
|
--bg-secondary: #ffffff;
|
|
--bg-card: rgba(255, 255, 255, 0.85);
|
|
--bg-glass: rgba(0, 0, 0, 0.03);
|
|
--text-primary: #0f172a;
|
|
--text-secondary: #475569;
|
|
--text-muted: #94a3b8;
|
|
--shadow-glow: 0 0 40px rgba(78, 205, 196, 0.1);
|
|
--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
|
|
--border-glass: 1px solid rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
scroll-padding-top: var(--nav-height);
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-body);
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
transition: background var(--transition), color var(--transition);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
img { max-width: 100%; display: block; }
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
/* ===== Particle Canvas ===== */
|
|
#particle-canvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* ===== Navbar ===== */
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: var(--nav-height);
|
|
z-index: 1000;
|
|
transition: all var(--transition);
|
|
background: transparent;
|
|
}
|
|
|
|
.navbar.scrolled {
|
|
background: rgba(10, 14, 23, 0.85);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: var(--border-glass);
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
[data-theme="light"] .navbar.scrolled {
|
|
background: rgba(248, 250, 252, 0.9);
|
|
}
|
|
|
|
.nav-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-family: var(--font-display);
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
animation: logoSpin 20s linear infinite;
|
|
}
|
|
|
|
@keyframes logoSpin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.nav-links a {
|
|
padding: 8px 16px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--text-primary);
|
|
background: var(--bg-glass);
|
|
}
|
|
|
|
.nav-cta {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
border: var(--border-glass);
|
|
background: var(--bg-glass);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.2rem;
|
|
transition: all var(--transition);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
transform: scale(1.1);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.mobile-menu-btn {
|
|
display: none;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 8px;
|
|
}
|
|
|
|
.mobile-menu-btn span {
|
|
display: block;
|
|
width: 24px;
|
|
height: 2px;
|
|
background: var(--text-primary);
|
|
border-radius: 2px;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
/* ===== Hero ===== */
|
|
.hero {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items: center;
|
|
gap: 40px;
|
|
padding: calc(var(--nav-height) + 40px) 24px 80px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero-bg-shapes .shape {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
filter: blur(80px);
|
|
opacity: 0.4;
|
|
animation: floatShape 8s ease-in-out infinite;
|
|
}
|
|
|
|
.shape-1 {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: var(--accent-1);
|
|
top: 10%;
|
|
left: -10%;
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.shape-2 {
|
|
width: 300px;
|
|
height: 300px;
|
|
background: var(--accent-3);
|
|
top: 50%;
|
|
right: -5%;
|
|
animation-delay: -3s;
|
|
}
|
|
|
|
.shape-3 {
|
|
width: 250px;
|
|
height: 250px;
|
|
background: var(--accent-2);
|
|
bottom: 10%;
|
|
left: 30%;
|
|
animation-delay: -5s;
|
|
}
|
|
|
|
@keyframes floatShape {
|
|
0%, 100% { transform: translate(0, 0) scale(1); }
|
|
33% { transform: translate(30px, -30px) scale(1.05); }
|
|
66% { transform: translate(-20px, 20px) scale(0.95); }
|
|
}
|
|
|
|
.hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 20px;
|
|
border-radius: 100px;
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 24px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.badge-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #22c55e;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.5; transform: scale(1.5); }
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
line-height: 1.15;
|
|
margin-bottom: 20px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.gradient-text {
|
|
background: var(--gradient-text);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
background-size: 200% auto;
|
|
animation: gradientShift 4s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes gradientShift {
|
|
0%, 100% { background-position: 0% center; }
|
|
50% { background-position: 100% center; }
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 36px;
|
|
max-width: 480px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.hero-actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
margin-bottom: 48px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 14px 28px;
|
|
border-radius: var(--radius-md);
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: all var(--transition);
|
|
font-family: inherit;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--gradient-main);
|
|
color: #0a0e17;
|
|
box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
color: var(--text-primary);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.hero-stats {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
padding: 24px;
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(20px);
|
|
}
|
|
|
|
.stat-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.stat-number {
|
|
font-family: var(--font-display);
|
|
font-size: 2rem;
|
|
font-weight: 800;
|
|
background: var(--gradient-text);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.stat-divider {
|
|
width: 1px;
|
|
height: 40px;
|
|
background: var(--border-glass);
|
|
}
|
|
|
|
/* Globe Visual */
|
|
.hero-visual {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.globe-container {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 420px;
|
|
}
|
|
|
|
.globe-svg {
|
|
width: 100%;
|
|
height: auto;
|
|
animation: globeFloat 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes globeFloat {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-15px); }
|
|
}
|
|
|
|
.orbit-ring {
|
|
animation: orbitSpin 20s linear infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
.orbit-ring-2 {
|
|
animation-direction: reverse;
|
|
animation-duration: 15s;
|
|
}
|
|
|
|
@keyframes orbitSpin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.continent {
|
|
animation: continentPulse 4s ease-in-out infinite;
|
|
}
|
|
|
|
.pulse-dot {
|
|
animation: dotPulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
.pulse-dot:nth-child(2) { animation-delay: 0.5s; }
|
|
.pulse-dot:nth-child(3) { animation-delay: 1s; }
|
|
.pulse-dot:nth-child(4) { animation-delay: 1.5s; }
|
|
|
|
@keyframes dotPulse {
|
|
0%, 100% { r: 5; opacity: 1; }
|
|
50% { r: 8; opacity: 0.6; }
|
|
}
|
|
|
|
.flight-path {
|
|
animation: dashMove 3s linear infinite;
|
|
}
|
|
|
|
@keyframes dashMove {
|
|
to { stroke-dashoffset: -20; }
|
|
}
|
|
|
|
.floating-cards .float-card {
|
|
position: absolute;
|
|
padding: 10px 16px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-md);
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
backdrop-filter: blur(20px);
|
|
box-shadow: var(--shadow-card);
|
|
animation: cardFloat 4s ease-in-out infinite;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.float-card small {
|
|
display: block;
|
|
font-weight: 400;
|
|
color: var(--text-muted);
|
|
font-size: 0.7rem;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.fc-1 { top: 10%; right: -10%; animation-delay: 0s; }
|
|
.fc-2 { bottom: 30%; left: -15%; animation-delay: -1.5s; }
|
|
.fc-3 { bottom: 5%; right: 5%; animation-delay: -3s; }
|
|
|
|
@keyframes cardFloat {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--text-muted);
|
|
font-size: 0.8rem;
|
|
animation: bounce 2s ease-in-out infinite;
|
|
}
|
|
|
|
.scroll-arrow svg {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% { transform: translateX(-50%) translateY(0); }
|
|
50% { transform: translateX(-50%) translateY(8px); }
|
|
}
|
|
|
|
/* ===== Sections ===== */
|
|
.section {
|
|
position: relative;
|
|
padding: 100px 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.section-tag {
|
|
display: inline-block;
|
|
padding: 6px 16px;
|
|
border-radius: 100px;
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
color: var(--accent-3);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.section-header h2 {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(2rem, 4vw, 2.75rem);
|
|
font-weight: 800;
|
|
margin-bottom: 12px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.section-header p {
|
|
color: var(--text-secondary);
|
|
font-size: 1.05rem;
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* ===== Destinations ===== */
|
|
.dest-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
.dest-card {
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
transition: all var(--transition);
|
|
backdrop-filter: blur(20px);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dest-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: var(--shadow-glow);
|
|
border-color: rgba(78, 205, 196, 0.3);
|
|
}
|
|
|
|
.dest-img {
|
|
position: relative;
|
|
height: 180px;
|
|
background: linear-gradient(
|
|
135deg,
|
|
hsl(var(--hue, 170), 60%, 20%),
|
|
hsl(calc(var(--hue, 170) + 40), 50%, 30%)
|
|
);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dest-img::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1), transparent);
|
|
}
|
|
|
|
.dest-emoji {
|
|
font-size: 4rem;
|
|
animation: emojiBounce 3s ease-in-out infinite;
|
|
filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
|
|
}
|
|
|
|
@keyframes emojiBounce {
|
|
0%, 100% { transform: scale(1) rotate(0deg); }
|
|
50% { transform: scale(1.1) rotate(5deg); }
|
|
}
|
|
|
|
.dest-overlay {
|
|
position: absolute;
|
|
bottom: 12px;
|
|
left: 12px;
|
|
}
|
|
|
|
.dest-tag {
|
|
padding: 4px 12px;
|
|
border-radius: 100px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
backdrop-filter: blur(10px);
|
|
font-size: 0.7rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.dest-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.dest-body h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.15rem;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.dest-body > p {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.dest-meta {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.dest-meta span {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
padding: 4px 8px;
|
|
background: var(--bg-glass);
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.dest-rating {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.stars { font-size: 0.75rem; }
|
|
|
|
/* ===== Timeline ===== */
|
|
.lifestyle {
|
|
background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.03), transparent);
|
|
}
|
|
|
|
.timeline {
|
|
position: relative;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.timeline-line {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 4px;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.timeline-svg-line {
|
|
animation: dashFlow 2s linear infinite;
|
|
}
|
|
|
|
@keyframes dashFlow {
|
|
to { stroke-dashoffset: -14; }
|
|
}
|
|
|
|
.timeline-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
margin-bottom: 40px;
|
|
position: relative;
|
|
}
|
|
|
|
.timeline-item:nth-child(even) {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.timeline-item:nth-child(even) .timeline-card {
|
|
text-align: right;
|
|
}
|
|
|
|
.timeline-time {
|
|
flex: 0 0 100px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
color: var(--accent-2);
|
|
font-family: var(--font-display);
|
|
}
|
|
|
|
.timeline-card {
|
|
flex: 1;
|
|
padding: 24px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
position: relative;
|
|
}
|
|
|
|
.timeline-card:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.timeline-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.timeline-card h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.timeline-card p {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* ===== Charts ===== */
|
|
.data-section {
|
|
background: linear-gradient(180deg, transparent, rgba(255, 107, 107, 0.02), transparent);
|
|
}
|
|
|
|
.charts-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
.chart-card {
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
padding: 28px;
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.chart-card:hover {
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.chart-card h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.chart-wrap {
|
|
position: relative;
|
|
height: 280px;
|
|
}
|
|
|
|
.chart-radar {
|
|
height: 300px;
|
|
}
|
|
|
|
.chart-wide {
|
|
grid-column: span 2;
|
|
}
|
|
|
|
/* ===== Tools ===== */
|
|
.tools-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
.tool-card {
|
|
position: relative;
|
|
padding: 32px 24px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tool-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: var(--gradient-main);
|
|
transform: scaleX(0);
|
|
transition: transform var(--transition);
|
|
}
|
|
|
|
.tool-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.tool-card:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.tool-icon-wrap {
|
|
width: 48px;
|
|
height: 48px;
|
|
color: var(--accent-3);
|
|
margin-bottom: 12px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.tool-emoji {
|
|
font-size: 2rem;
|
|
display: block;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.tool-card h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.tool-card > p {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.tool-tags {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.tool-tags span {
|
|
padding: 3px 10px;
|
|
border-radius: 100px;
|
|
font-size: 0.7rem;
|
|
background: var(--bg-glass);
|
|
color: var(--text-muted);
|
|
border: var(--border-glass);
|
|
}
|
|
|
|
/* ===== Community ===== */
|
|
.testimonials {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.testimonial-card {
|
|
padding: 28px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.testimonial-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.testimonial-avatar {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.testimonial-stars {
|
|
font-size: 0.8rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.testimonial-content p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
margin-bottom: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
.testimonial-author strong {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.testimonial-author span {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.cta-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 40px;
|
|
padding: 48px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-xl);
|
|
backdrop-filter: blur(20px);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-banner::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--gradient-main);
|
|
opacity: 0.05;
|
|
}
|
|
|
|
.cta-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cta-content h2 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.cta-content p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.cta-form {
|
|
display: flex;
|
|
gap: 12px;
|
|
position: relative;
|
|
z-index: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.cta-form input {
|
|
padding: 14px 20px;
|
|
border-radius: var(--radius-md);
|
|
border: var(--border-glass);
|
|
background: var(--bg-glass);
|
|
color: var(--text-primary);
|
|
font-family: inherit;
|
|
font-size: 0.9rem;
|
|
width: 280px;
|
|
outline: none;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.cta-form input:focus {
|
|
border-color: var(--accent-3);
|
|
box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
|
|
}
|
|
|
|
.cta-form input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* ===== Footer ===== */
|
|
.footer {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 60px 0 30px;
|
|
border-top: var(--border-glass);
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.footer-brand p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.85rem;
|
|
margin: 16px 0;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.social-links a {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
font-size: 1rem;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.social-links a:hover {
|
|
transform: translateY(-3px);
|
|
background: var(--accent-3);
|
|
color: #0a0e17;
|
|
}
|
|
|
|
.footer-links h4 {
|
|
font-family: var(--font-display);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 16px;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.footer-links a {
|
|
display: block;
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
padding: 6px 0;
|
|
transition: color var(--transition);
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--accent-3);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 30px;
|
|
border-top: var(--border-glass);
|
|
}
|
|
|
|
.footer-bottom p {
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.footer-emoji-bar {
|
|
margin-top: 12px;
|
|
font-size: 1.2rem;
|
|
letter-spacing: 8px;
|
|
animation: emojiScroll 10s linear infinite;
|
|
}
|
|
|
|
@keyframes emojiScroll {
|
|
0%, 100% { letter-spacing: 8px; }
|
|
50% { letter-spacing: 16px; }
|
|
}
|
|
|
|
/* ===== Toast ===== */
|
|
.toast {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
right: 30px;
|
|
padding: 16px 24px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-md);
|
|
backdrop-filter: blur(20px);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
box-shadow: var(--shadow-card);
|
|
transform: translateY(100px);
|
|
opacity: 0;
|
|
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
z-index: 2000;
|
|
}
|
|
|
|
.toast.show {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
/* ===== Reveal Animation ===== */
|
|
.reveal {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.reveal.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* ===== Responsive ===== */
|
|
@media (max-width: 1024px) {
|
|
.hero {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
padding-top: calc(var(--nav-height) + 20px);
|
|
}
|
|
|
|
.hero-subtitle { margin: 0 auto 36px; }
|
|
.hero-actions { justify-content: center; }
|
|
.hero-stats { justify-content: center; }
|
|
.hero-visual { order: -1; }
|
|
.globe-container { max-width: 300px; margin: 0 auto; }
|
|
|
|
.dest-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.tools-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.testimonials { grid-template-columns: 1fr; }
|
|
.footer-grid { grid-template-columns: repeat(2, 1fr); }
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-links { display: none; }
|
|
.nav-links.open {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: var(--nav-height);
|
|
left: 0;
|
|
right: 0;
|
|
background: var(--bg-secondary);
|
|
padding: 20px;
|
|
border-bottom: var(--border-glass);
|
|
}
|
|
|
|
.mobile-menu-btn { display: flex; }
|
|
|
|
.hero-stats {
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.stat-divider {
|
|
width: 40px;
|
|
height: 1px;
|
|
}
|
|
|
|
.dest-grid { grid-template-columns: 1fr; }
|
|
.charts-grid { grid-template-columns: 1fr; }
|
|
.chart-wide { grid-column: span 1; }
|
|
.tools-grid { grid-template-columns: 1fr; }
|
|
|
|
.timeline-item,
|
|
.timeline-item:nth-child(even) {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.timeline-item:nth-child(even) .timeline-card {
|
|
text-align: center;
|
|
}
|
|
|
|
.timeline-line { display: none; }
|
|
.timeline-time { flex: none; }
|
|
|
|
.cta-banner {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding: 32px 24px;
|
|
}
|
|
|
|
.cta-form {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.cta-form input { width: 100%; }
|
|
|
|
.footer-grid { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* ===== Loader ===== */
|
|
.loader {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 9999;
|
|
background: var(--bg-primary);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: opacity 0.6s ease, visibility 0.6s ease;
|
|
}
|
|
|
|
.loader.hidden {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.loader-inner {
|
|
text-align: center;
|
|
}
|
|
|
|
.loader-globe {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.loader-ring {
|
|
animation: loaderSpin 1.5s linear infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
@keyframes loaderSpin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.loader-text {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
font-weight: 800;
|
|
background: var(--gradient-text);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.loader-bar {
|
|
width: 200px;
|
|
height: 3px;
|
|
background: var(--bg-glass);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.loader-progress {
|
|
height: 100%;
|
|
background: var(--gradient-main);
|
|
border-radius: 3px;
|
|
animation: loaderProgress 1.8s ease-in-out forwards;
|
|
}
|
|
|
|
@keyframes loaderProgress {
|
|
from { width: 0; }
|
|
to { width: 100%; }
|
|
}
|
|
|
|
/* ===== Ticker ===== */
|
|
.ticker-bar {
|
|
position: fixed;
|
|
top: var(--nav-height);
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 999;
|
|
background: rgba(10, 14, 23, 0.9);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: var(--border-glass);
|
|
overflow: hidden;
|
|
height: 32px;
|
|
}
|
|
|
|
[data-theme="light"] .ticker-bar {
|
|
background: rgba(248, 250, 252, 0.95);
|
|
}
|
|
|
|
.ticker-track {
|
|
display: flex;
|
|
gap: 60px;
|
|
animation: tickerScroll 30s linear infinite;
|
|
white-space: nowrap;
|
|
padding: 6px 0;
|
|
}
|
|
|
|
.ticker-track span {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
@keyframes tickerScroll {
|
|
from { transform: translateX(0); }
|
|
to { transform: translateX(-50%); }
|
|
}
|
|
|
|
/* Adjust hero for ticker */
|
|
.hero {
|
|
padding-top: calc(var(--nav-height) + 52px);
|
|
}
|
|
|
|
/* ===== Typewriter ===== */
|
|
.typewriter-cursor {
|
|
color: var(--accent-3);
|
|
animation: blink 1s step-end infinite;
|
|
font-weight: 300;
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% { opacity: 0; }
|
|
}
|
|
|
|
/* ===== Map Section ===== */
|
|
.map-section {
|
|
background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.02), transparent);
|
|
}
|
|
|
|
.map-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1.4fr 1fr;
|
|
gap: 32px;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.map-svg-container {
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-xl);
|
|
padding: 24px;
|
|
backdrop-filter: blur(20px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.world-map {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.map-pin {
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.map-pin:hover {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
.map-pin.active circle:nth-child(2) {
|
|
fill: #fff;
|
|
}
|
|
|
|
.pin-pulse {
|
|
animation: pinPulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pinPulse {
|
|
0%, 100% { r: 20; opacity: 0.3; }
|
|
50% { r: 28; opacity: 0.1; }
|
|
}
|
|
|
|
.map-info-panel {
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-xl);
|
|
padding: 32px;
|
|
backdrop-filter: blur(20px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-height: 300px;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.map-info-default {
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.map-info-icon {
|
|
font-size: 3rem;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.map-info-default h3 {
|
|
font-family: var(--font-display);
|
|
color: var(--text-primary);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.map-info-city {
|
|
animation: fadeInUp 0.4s ease;
|
|
}
|
|
|
|
.map-info-city .city-emoji {
|
|
font-size: 3.5rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.map-info-city h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.map-info-city .city-desc {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 20px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.map-info-stats {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 12px;
|
|
}
|
|
|
|
.map-stat {
|
|
padding: 12px;
|
|
background: var(--bg-glass);
|
|
border-radius: var(--radius-md);
|
|
text-align: center;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.map-stat strong {
|
|
display: block;
|
|
font-size: 1.1rem;
|
|
color: var(--accent-3);
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(15px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
/* ===== Destination Filters ===== */
|
|
.dest-filters {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin-bottom: 32px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-search {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 16px;
|
|
background: var(--bg-glass);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-md);
|
|
flex: 1;
|
|
min-width: 200px;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.filter-search svg {
|
|
color: var(--text-muted);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.filter-search input {
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
color: var(--text-primary);
|
|
font-family: inherit;
|
|
font-size: 0.9rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.filter-search input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.filter-tags {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-btn {
|
|
padding: 8px 16px;
|
|
border-radius: 100px;
|
|
border: var(--border-glass);
|
|
background: var(--bg-glass);
|
|
color: var(--text-secondary);
|
|
font-family: inherit;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
transition: all var(--transition);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.filter-btn:hover,
|
|
.filter-btn.active {
|
|
background: var(--accent-3);
|
|
color: #0a0e17;
|
|
border-color: var(--accent-3);
|
|
}
|
|
|
|
.filter-sort select {
|
|
padding: 10px 16px;
|
|
border-radius: var(--radius-md);
|
|
border: var(--border-glass);
|
|
background: var(--bg-glass);
|
|
color: var(--text-primary);
|
|
font-family: inherit;
|
|
font-size: 0.85rem;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
.dest-card.hidden-card {
|
|
display: none;
|
|
}
|
|
|
|
.dest-empty {
|
|
text-align: center;
|
|
padding: 60px 20px;
|
|
color: var(--text-muted);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* ===== Visa Section ===== */
|
|
.visa-section {
|
|
background: linear-gradient(180deg, transparent, rgba(255, 230, 109, 0.02), transparent);
|
|
}
|
|
|
|
.visa-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
.visa-card {
|
|
position: relative;
|
|
padding: 28px;
|
|
background: var(--bg-card);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.visa-card:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: var(--shadow-glow);
|
|
border-color: rgba(255, 230, 109, 0.3);
|
|
}
|
|
|
|
.visa-flag {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.visa-card h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.visa-badge {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
border-radius: 100px;
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.visa-badge.easy { background: rgba(78, 205, 196, 0.2); color: var(--accent-3); }
|
|
.visa-badge.hot { background: rgba(255, 107, 107, 0.2); color: var(--accent-1); }
|
|
.visa-badge.budget { background: rgba(255, 230, 109, 0.2); color: var(--accent-2); }
|
|
.visa-badge.new { background: rgba(167, 139, 250, 0.2); color: var(--accent-4); }
|
|
.visa-badge.pioneer { background: rgba(96, 165, 250, 0.2); color: #60A5FA; }
|
|
|
|
.visa-details {
|
|
list-style: none;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.visa-details li {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
padding: 6px 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.visa-progress {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.progress-bar {
|
|
flex: 1;
|
|
height: 6px;
|
|
background: var(--bg-glass);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-fill {
|
|
height: 100%;
|
|
background: var(--gradient-main);
|
|
border-radius: 3px;
|
|
transition: width 1s ease;
|
|
}
|
|
|
|
.progress-label {
|
|
white-space: nowrap;
|
|
font-weight: 600;
|
|
color: var(--accent-3);
|
|
}
|
|
|
|
/* ===== FAQ ===== */
|
|
.faq-section {
|
|
background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.02), transparent);
|
|
}
|
|
|
|
.faq-list {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.faq-item {
|
|
margin-bottom: 12px;
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(20px);
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.faq-item.active {
|
|
border-color: rgba(78, 205, 196, 0.3);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.faq-question {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 24px;
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-primary);
|
|
font-family: inherit;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: color var(--transition);
|
|
}
|
|
|
|
.faq-question:hover {
|
|
color: var(--accent-3);
|
|
}
|
|
|
|
.faq-chevron {
|
|
flex-shrink: 0;
|
|
transition: transform 0.3s ease;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.faq-item.active .faq-chevron {
|
|
transform: rotate(180deg);
|
|
color: var(--accent-3);
|
|
}
|
|
|
|
.faq-answer {
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height 0.4s ease, padding 0.4s ease;
|
|
}
|
|
|
|
.faq-item.active .faq-answer {
|
|
max-height: 300px;
|
|
}
|
|
|
|
.faq-answer p {
|
|
padding: 0 24px 20px;
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* ===== Modal ===== */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 3000;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(8px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.modal-overlay.open {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.modal {
|
|
background: var(--bg-secondary);
|
|
border: var(--border-glass);
|
|
border-radius: var(--radius-xl);
|
|
max-width: 560px;
|
|
width: 100%;
|
|
max-height: 85vh;
|
|
overflow-y: auto;
|
|
position: relative;
|
|
transform: scale(0.9) translateY(20px);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.modal-overlay.open .modal {
|
|
transform: scale(1) translateY(0);
|
|
}
|
|
|
|
.modal-close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
border: var(--border-glass);
|
|
background: var(--bg-glass);
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all var(--transition);
|
|
z-index: 1;
|
|
}
|
|
|
|
.modal-close:hover {
|
|
background: var(--accent-1);
|
|
color: #fff;
|
|
}
|
|
|
|
.modal-hero {
|
|
height: 200px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.modal-hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(transparent 50%, var(--bg-secondary));
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 24px 32px 32px;
|
|
}
|
|
|
|
.modal-body h2 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.modal-body .modal-tag {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
border-radius: 100px;
|
|
background: var(--bg-glass);
|
|
font-size: 0.75rem;
|
|
color: var(--accent-3);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.modal-body p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
line-height: 1.7;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.modal-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 12px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.modal-stat {
|
|
text-align: center;
|
|
padding: 16px 8px;
|
|
background: var(--bg-glass);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.modal-stat .stat-emoji {
|
|
font-size: 1.5rem;
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.modal-stat strong {
|
|
display: block;
|
|
font-size: 1rem;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.modal-stat span {
|
|
font-size: 0.7rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.modal-highlights h4 {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.modal-highlights ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.modal-highlights li {
|
|
padding: 8px 0;
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
/* ===== Back to Top ===== */
|
|
.back-to-top {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
left: 30px;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
border: var(--border-glass);
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(20px);
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: translateY(20px);
|
|
transition: all var(--transition);
|
|
z-index: 1000;
|
|
box-shadow: var(--shadow-card);
|
|
}
|
|
|
|
.back-to-top.visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.back-to-top:hover {
|
|
background: var(--accent-3);
|
|
color: #0a0e17;
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
/* ===== Nav Active ===== */
|
|
.nav-links a.active {
|
|
color: var(--accent-3);
|
|
background: rgba(78, 205, 196, 0.1);
|
|
}
|
|
|
|
/* ===== Responsive additions ===== */
|
|
@media (max-width: 1024px) {
|
|
.map-wrapper { grid-template-columns: 1fr; }
|
|
.visa-grid { grid-template-columns: repeat(2, 1fr); }
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.ticker-bar { display: none; }
|
|
.hero { padding-top: calc(var(--nav-height) + 20px); }
|
|
.dest-filters { flex-direction: column; align-items: stretch; }
|
|
.filter-search { max-width: none; }
|
|
.filter-tags { justify-content: center; }
|
|
.visa-grid { grid-template-columns: 1fr; }
|
|
.modal-stats { grid-template-columns: 1fr; }
|
|
.back-to-top { bottom: 20px; left: 20px; }
|
|
}
|