/* ========================================
   Zagreb Taxi - Version 4: One-Page Scroll
   ======================================== */

:root {
    --taxi-yellow: #FFD700;
    --taxi-yellow-dark: #E6C200;
    --taxi-black: #0a0a0a;
    --taxi-dark: #111111;
    --taxi-gray: #1a1a1a;
    --taxi-gray-medium: #2a2a2a;
    --taxi-gray-light: #888888;
    --taxi-white: #ffffff;
    --nav-height: 72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--taxi-black);
    color: var(--taxi-white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--taxi-white);
    font-size: 1.15rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--taxi-yellow);
    color: var(--taxi-black);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--taxi-gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--taxi-white);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--taxi-yellow);
    color: var(--taxi-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s;
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

.nav-cta:hover {
    background: var(--taxi-yellow-dark);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--taxi-white);
    transition: all 0.3s;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--taxi-dark);
    padding: 2rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-links {
    list-style: none;
    margin-bottom: 1.5rem;
}

.mobile-links li {
    margin-bottom: 1rem;
}

.mobile-links a {
    color: var(--taxi-white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--taxi-yellow);
    color: var(--taxi-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
}

.mobile-phone svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255, 215, 0, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-text {
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(2.75rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
}

.hero-line.accent {
    color: var(--taxi-yellow);
}

.hero p {
    font-size: 1.15rem;
    color: var(--taxi-gray-light);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--taxi-yellow);
    color: var(--taxi-black);
}

.btn-primary:hover {
    background: var(--taxi-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
}

.btn-secondary {
    background: var(--taxi-gray);
    color: var(--taxi-white);
}

.btn-secondary:hover {
    background: var(--taxi-gray-medium);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 500px;
}

.stat {
    padding: 1rem;
    background: var(--taxi-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--taxi-yellow);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--taxi-gray-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--taxi-gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--taxi-yellow);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: 6rem 0;
    background: var(--taxi-dark);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--taxi-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    display: none;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.about-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-content > p {
    font-size: 1.05rem;
    color: var(--taxi-gray-light);
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-weight: 500;
}

.about-list svg {
    width: 20px;
    height: 20px;
    color: var(--taxi-yellow);
    flex-shrink: 0;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background: var(--taxi-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s;
}

.service-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--taxi-yellow);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--taxi-gray-light);
    font-size: 0.95rem;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: 6rem 0;
    background: var(--taxi-dark);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--taxi-gray-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--taxi-gray);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method:hover {
    background: var(--taxi-gray-medium);
    transform: translateY(-2px);
}

.contact-method.whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.contact-method.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--taxi-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--taxi-black);
}

.contact-method.whatsapp .method-icon {
    background: #25D366;
}

.contact-method.whatsapp .method-icon svg {
    color: white;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.85rem;
    color: var(--taxi-gray-light);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--taxi-white);
}

/* Hours Card */
.hours-card {
    padding: 2rem;
    background: var(--taxi-gray);
    border-radius: 20px;
}

.hours-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-time {
    color: var(--taxi-yellow);
    font-weight: 600;
}

.hours-note {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    color: var(--taxi-yellow);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--taxi-gray-light);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--taxi-gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--taxi-white);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--taxi-gray-light);
    font-size: 0.9rem;
}

/* ========================================
   WhatsApp Float
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

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

    .about-image {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Animations
   ======================================== */

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

