/* ===== ULTRA-PREMIUM VIP TAKSI THEME ===== */

:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --gold: #E6B800;
    --gold-dim: rgba(230, 184, 0, 0.15);
    --gold-glow: rgba(230, 184, 0, 0.4);
    --white: #fafafa;
    --gray: #888;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    z-index: -1;
}

.navbar.scrolled::before {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled { padding: 12px 5%; }

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 42px;
    height: 42px;
    transition: transform 0.4s ease;
}

.logo:hover .logo-svg { transform: rotate(8deg) scale(1.1); }

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--white);
}

.logo-highlight {
    color: var(--gold);
}

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

.nav-right .phone-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
}

.nav-right .phone-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-menu.open {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

.fullscreen-menu nav a {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    letter-spacing: 2px;
}

.fullscreen-menu nav a:hover {
    color: var(--gold);
    letter-spacing: 6px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Particle Canvas */
#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Animated Gradient Orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -20%; left: -10%;
    animation: orbFloat1 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #b8860b 0%, transparent 70%);
    bottom: -15%; right: -5%;
    animation: orbFloat2 12s ease-in-out infinite alternate;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation: orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, -40px) scale(1.1); }
}
@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(0.9); }
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 8px 24px;
    border: 1px solid rgba(230, 184, 0, 0.3);
    border-radius: 50px;
    background: rgba(230, 184, 0, 0.05);
    backdrop-filter: blur(10px);
    animation: fadeUp 1s 0.2s both;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeUp 1s 0.4s both;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), #fff, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

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

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s 0.6s both;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.8s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--gold-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-4px);
}

.icon-svg {
    flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 5%;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== MAIN CONTENT ===== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 184, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--gold-dim);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-card h3, .service-card h4, .service-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== REGIONS GRID ===== */
.regions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.region-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.4s ease;
    cursor: default;
}

.region-tag:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 0 5%;
    margin: 40px 0;
}

.cta-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(230, 184, 0, 0.1), rgba(230, 184, 0, 0.03));
    border: 1px solid rgba(230, 184, 0, 0.2);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner-text p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(230, 184, 0, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-card > p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author strong {
    color: var(--white);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-author span::before {
    content: '— ';
}

/* ===== FOOTER (Multi-Column) ===== */
footer {
    background: var(--bg-card);
    padding: 60px 5% 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-phone {
    color: var(--gold) !important;
    font-weight: 700;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}
.faq-section { margin-top: 40px; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(230, 184, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-question .faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.float-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.float-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.float-btn:hover {
    transform: scale(1.15);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SUBPAGE STYLES ===== */
.page-section {
    padding: 140px 5% 80px;
    min-height: 80vh;
    max-width: 900px;
    margin: 0 auto;
}

.page-section h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

.page-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.page-section p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* ===== 404 ERROR PAGE ===== */
.error-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: var(--bg-dark);
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 60px var(--gold-glow);
}

.error-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.error-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-card { padding: 24px 20px; }
    .cta-banner-inner { padding: 40px 24px; flex-direction: column; text-align: center; }
    .cta-banner-actions { justify-content: center; }
    .cta-banner-text h2 { font-size: 1.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav-right .phone-link { display: none; }
    .fullscreen-menu nav a { font-size: 1.5rem; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.8rem; }
    .logo-text, .logo-highlight { font-size: 1.1rem; }
    .footer-inner { grid-template-columns: 1fr; }
}
