/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #facc15;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --text-main: #334155;
    --text-dark: #0f172a;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow {
    max-width: 800px;
}

/* Typography */
h1, h2, h3 {
    color: var(--text-dark);
    font-weight: 700;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background-color: var(--bg-alt);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.logo img {
    height: 60px;
    width: auto;
    flex-shrink: 0; }

.logo-text {
    /*position: absolute;
    left: -9999px;*/
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #fef9c3;
    color: #854d0e;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 35px;
    color: #64748b;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 10px;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.image-wrapper:hover {
    transform: rotate(0deg);
}

.image-wrapper img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.floating-badge strong {
    display: block;
    font-size: 1.1rem;
}

.floating-badge span {
    font-size: 0.85rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #bae6fd;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Table */
.table-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: var(--primary);
    color: white;
    text-align: left;
    padding: 15px 25px;
    font-weight: 700;
}

.schedule-table td {
    padding: 15px 25px;
    border-bottom: 1px solid #f1f5f9;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table td:first-child,
#ke-stazeni a {
    font-weight: 600;
    color: var(--primary);
    width: 150px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
}

.pricing-card.featured {
    background: var(--primary);
    color: white;
}

.pricing-card.featured h3 { color: white; }

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-item summary::after {
    content: '↓';
    color: var(--primary);
}

.faq-content {
    padding: 0 20px 20px;
    color: #64748b;
}

/* EU Section */
section#eu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
}

/* Contact */
.contact-section {
    background-color: #0f172a;
    color: white;
}

.contact-section h2, 
.contact-section a { color: white; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    margin-top: 40px;
    display: grid;
    gap: 25px;
}

.method {
    display: flex;
    gap: 15px;
    align-items: center;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method strong {
    display: block;
    font-size: 1.1rem;
}

.method span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.map-placeholder {
    height: 100%;
    min-height: 300px;
    background: #1e293b;
    background-image: url(images/mapa.webp);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    border: 1px solid #334155;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #020617;
    border-top: 1px solid #0f172a;
    color: hsl(215, 19%, 65%);
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: hsl(215, 19%, 65%);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-container, .features-grid, .pricing-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.2rem; }
    .hero { text-align: center; }
    .hero-actions { justify-content: center; }
    .image-wrapper { margin-top: 40px; }
    .footer-container { flex-direction: column; gap: 20px; }
}