:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    
    --primary-main: #64748b;
    --primary-dark: #334155;
    --accent: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #64748b 0%, #475569 100%);
    --gradient-accent: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 16px;
    --container-width: 1280px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background-color: var(--bg-dark); }

body { font-family: var(--font-body); color: var(--text-main); background-color: var(--bg-dark); overflow-x: hidden; line-height: 1.6; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section { padding: 6rem 1rem; }
.section-container { max-width: var(--container-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.section-desc { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 500; font-family: var(--font-body); text-decoration: none; transition: var(--transition-base); cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.4); background: var(--gradient-accent); }
.btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--text-main); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.navbar { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.5rem 0; transition: var(--transition-base); background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%); }
.navbar.scrolled { padding: 1rem 0; background: rgba(9, 9, 11, 0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.nav-container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.logo span { color: var(--primary-main); }
.logo i { color: var(--primary-main); font-size: 1.75rem; text-shadow: none; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 1rem; transition: var(--transition-fast); position: relative; text-shadow: 0 2px 4px rgba(0,0,0,0.9); }
.nav-links a:hover { color: var(--primary-main); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background: var(--gradient-primary); transition: var(--transition-fast); }
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--text-main); font-size: 1.75rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: rgba(24, 24, 27, 0.98); backdrop-filter: blur(20px); z-index: 90; padding: 6rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; transition: var(--transition-base); border-left: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-menu.active { right: 0; }
.mobile-link { color: #fff; text-decoration: none; font-size: 1.25rem; font-weight: 500; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; z-index: 1; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; background: var(--bg-dark); }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.6; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-dark) 0%, rgba(9, 9, 11, 0.4) 50%, transparent 100%); z-index: 1; }
.hero-content { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-title { font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1.5rem; max-width: 800px; text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7); }
.hero-title .text-gradient { color: #ffffff; background: none; -webkit-background-clip: initial; -webkit-text-fill-color: initial; }
.hero-subtitle { font-size: 1.25rem; color: #f8fafc; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); max-width: 600px; margin-bottom: 2.5rem; font-weight: 500; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 4rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; background: rgba(24, 24, 27, 0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 2.5rem; border-radius: var(--border-radius); max-width: max-content; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.75rem; color: #fff; margin-bottom: 0.25rem; }
.stat-label { color: var(--text-muted); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 30px; background: rgba(255, 255, 255, 0.2); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--border-radius); padding: 2.5rem 2rem; transition: var(--transition-base); position: relative; overflow: hidden; z-index: 1; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, rgba(100, 116, 139, 0.1), transparent 70%); opacity: 0; transition: var(--transition-base); z-index: -1; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(100, 116, 139, 0.3); box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; border-radius: 12px; background: rgba(100, 116, 139, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary-main); font-size: 2rem; transition: var(--transition-base); }
.service-card:hover .service-icon { background: var(--gradient-primary); color: #fff; }
.service-title { font-size: 1.5rem; margin-bottom: 1rem; }
.service-text { color: var(--text-muted); }

.about { position: relative; padding: 8rem 1rem; background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(24, 24, 27, 0.5) 100%); }
.about-container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; }
.about-text { font-size: 1.25rem; color: var(--text-muted); margin: 0 auto 3rem auto; line-height: 1.8; max-width: 800px; text-align: center; }
.about-features { display: flex; flex-direction: column; gap: 1.5rem; text-align: left; list-style: none; max-width: 700px; margin: 3rem auto 0 auto; }
.about-features li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; line-height: 1.6; }
.about-features i { color: var(--primary-main); font-size: 1.25rem; margin-top: 0.25rem; flex-shrink: 0; }
.about-features strong { display: inline; color: #fff; font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.about-features span { color: var(--text-muted); font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; background: var(--bg-card); padding: 4rem; border-radius: var(--border-radius); border: 1px solid rgba(255, 255, 255, 0.05); }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { background: rgba(255, 255, 255, 0.05); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-main); font-size: 1.5rem; flex-shrink: 0; }
.info-item h4 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.info-item p { color: var(--text-muted); }
.form-group { margin-bottom: 1.5rem; }
.form-input { width: 100%; background: rgba(9, 9, 11, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 1rem 1.25rem; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: var(--transition-fast); }
.form-input:focus { outline: none; border-color: var(--primary-main); background: rgba(9, 9, 11, 0.8); }
.submit-btn { width: 100%; }

.footer { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem 0; text-align: center; color: var(--text-muted); }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; padding: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .stat-divider { width: 100%; height: 1px; }

}
/* Hero Organizer Badge Overlay */
.hero-organizer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    width: fit-content;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.organizer-badge {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.organizer-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.organizer-tag {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 99px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.organizer-note {
    display: flex;
    flex-direction: column;
}

.organizer-note strong { color: #fff; font-size: 1.05rem; letter-spacing: 0.5px; }
.organizer-note span { color: rgba(255, 255, 255, 0.9); font-size: 0.8rem; line-height: 1.4; margin-top: 0.25rem; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .hero-organizer { width: 100%; border-radius: 16px; align-items: flex-start; }
}
/* --- Cars Section --- */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.car-card {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
}
.car-card:hover {
    border-color: var(--primary-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.car-image {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-card);
}
.car-content {
    padding: 1.5rem;
}
.car-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-bottom: 1rem;
}
.car-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 1rem;
}
.car-desc {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}
.car-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: #fff;
    text-decoration: none;
    transition: var(--transition-fast);
}
.car-btn:hover {
    background: var(--primary-main);
    color: var(--text-dark);
}
/* --- Highlighted Nav Link --- */
.nav-highlight {
    background: rgba(100, 116, 139, 0.15);
    color: var(--text-main) !important;
    border: 1px solid rgba(100, 116, 139, 0.5);
    border-radius: 99px;
    padding: 0.5rem 1.25rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-highlight i {
    font-size: 1.25rem;
    color: #4ade80; /* green accent for cars */
}

.nav-highlight:hover {
    background: rgba(100, 116, 139, 0.3);
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
}

.mobile-link.nav-highlight {
    margin: 1rem 2rem;
    justify-content: center;
}

/* Pl�duriuojantis skambinimo mygtukas mobiliesiems */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    z-index: 999;
    font-size: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phone-pulse 2s infinite;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
}

@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
}

/* --- Naujas Kontakt� i�d�stymas (Formos atsisakymas, skambu�io fokusas ir lokacijos gidas) --- */
.contact-new-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.contact-card-info {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-phone-highlight {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.contact-phone-highlight .phone-tag {
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone-highlight .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.contact-phone-highlight .phone-number:hover {
    color: #4ade80;
    transform: translateX(2px);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    background: rgba(255,255,255,0.05);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-detail-content a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-detail-content a:hover {
    color: #fff;
}

.contact-location-guide {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-list-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.location-row-new:hover {
    border-color: rgba(100, 116, 139, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(2px);
}

.location-name-new {
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-name-new i {
    color: var(--primary-main);
}

.location-time-info-new {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.location-time-info-new .dist-new {
    color: var(--text-muted);
}

.location-time-info-new .time-new {
    color: #4ade80;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact-new-grid {
        grid-template-columns: 1fr;
    }
}

