* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #1f2937; background: #fff; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar { background: #111827; color: #d1d5db; font-size: 12px; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 6px; color: #d1d5db; transition: color 0.2s; }
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts i { color: #60a5fa; font-size: 12px; }
.topbar-hours { color: #9ca3af; }

/* Header */
.header { background: #fff; padding: 16px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #f3f4f6; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; color: #1f2937; }
.logo-icon { width: 28px; height: 28px; background: #2563eb; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 14px; font-weight: 500; color: #4b5563; transition: color 0.2s; }
.nav a:hover, .nav a.active { color: #2563eb; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-outline { background: transparent; color: #2563eb; border: 1px solid #dbeafe; }

/* Hero */
.hero { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-title { font-size: 48px; font-weight: 800; line-height: 1.15; color: #111827; margin-bottom: 20px; }
.hero-desc { font-size: 16px; color: #6b7280; max-width: 420px; margin-bottom: 32px; line-height: 1.6; }
.hero-features { display: flex; gap: 32px; margin-top: 48px; }
.hero-feature { display: flex; align-items: center; gap: 12px; }
.hero-feature i { color: #2563eb; font-size: 20px; }
.hero-feature-text { font-size: 13px; }
.hero-feature-text strong { display: block; font-weight: 600; color: #1f2937; font-size: 14px; }
.hero-feature-text span { color: #9ca3af; font-size: 12px; }

.hero-collage { position: relative; height: 420px; }
.collage-img { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.collage-img img { width: 100%; height: 100%; object-fit: cover; }
.collage-1 { width: 220px; height: 160px; top: 0; left: 20px; z-index: 3; }
.collage-2 { width: 200px; height: 180px; top: 40px; right: 0; z-index: 2; }
.collage-3 { width: 180px; height: 140px; bottom: 60px; left: 0; z-index: 1; }
.collage-4 { width: 200px; height: 120px; bottom: 0; right: 40px; z-index: 4; }
.collage-plane { position: absolute; top: -30px; right: 60px; font-size: 60px; color: #93c5fd; transform: rotate(-15deg); z-index: 5; }
.collage-badge { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: #fff; padding: 16px 24px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 12px; z-index: 6; }
.collage-badge i { width: 40px; height: 40px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #2563eb; font-size: 18px; }
.collage-badge-text strong { display: block; font-size: 18px; font-weight: 700; color: #1f2937; }
.collage-badge-text span { font-size: 12px; color: #9ca3af; }

/* Features bar */
.features-bar { padding: 40px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.feature-item { text-align: center; padding: 24px 16px; border-radius: 16px; transition: all 0.2s; }
.feature-item:hover { background: #f9fafb; }
.feature-icon { width: 48px; height: 48px; background: #eff6ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #2563eb; font-size: 20px; }
.feature-item h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.feature-item p { font-size: 12px; color: #9ca3af; line-height: 1.5; }

/* How it works */
.how { padding: 60px 0; background: #f9fafb; }
.section-title { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.steps::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; border-top: 2px dashed #d1d5db; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 48px; height: 48px; background: #2563eb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; margin: 0 auto 20px; }
.step-icon { width: 48px; height: 48px; background: #dbeafe; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #2563eb; font-size: 20px; }
.step h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 12px; color: #9ca3af; max-width: 200px; margin: 0 auto; }

/* Destinations */
.destinations { padding: 60px 0; background: #fff; }
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }
.dest-card { position: relative; border-radius: 16px; overflow: hidden; height: 260px; cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.dest-info { position: absolute; bottom: 16px; left: 16px; color: #fff; }
.dest-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.dest-info p { font-size: 13px; opacity: 0.9; }
.dest-btn-wrap { text-align: center; }
.link-btn { color: #2563eb; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.link-btn:hover { text-decoration: underline; }

/* Why us */
.why { padding: 60px 0; background: #f9fafb; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { display: flex; gap: 16px; }
.why-icon { width: 44px; height: 44px; background: #eff6ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #2563eb; font-size: 18px; flex-shrink: 0; }
.why-text h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.why-text p { font-size: 12px; color: #9ca3af; line-height: 1.5; }

/* FAQ */
.faq { padding: 60px 0; background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #f3f4f6; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 500; }
.faq-question i { color: #9ca3af; font-size: 14px; transition: transform 0.2s; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: #2563eb; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* Footer */
.footer { background: #111827; color: #d1d5db; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand span { font-weight: 800; font-size: 18px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col p, .footer-col li { font-size: 13px; color: #9ca3af; margin-bottom: 10px; line-height: 1.6; }
.footer-col a { font-size: 13px; color: #9ca3af; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col li { display: flex; align-items: flex-start; gap: 8px; }
.footer-col li i { color: #60a5fa; font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-legal { font-size: 12px; color: #6b7280; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid #374151; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 14px; transition: all 0.2s; }
.footer-socials a:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; margin-top: 0; border-top: 1px solid #1f2937; font-size: 12px; color: #6b7280; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: #9ca3af; }
.footer-bottom-links a:hover { color: #fff; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; background: #111827; color: #e5e7eb; padding: 16px 20px; box-shadow: 0 -4px 24px rgba(0,0,0,0.15); transform: translateY(120%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13px; color: #d1d5db; max-width: 760px; line-height: 1.5; }
.cookie-banner a { color: #60a5fa; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn-accept { background: #2563eb; color: #fff; padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; }
.cookie-banner .btn-accept:hover { background: #1d4ed8; }

/* Inner page hero */
.page-hero { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); padding: 48px 0; }
.page-hero h1 { font-size: 34px; font-weight: 800; color: #111827; margin-bottom: 8px; }
.breadcrumbs { font-size: 13px; color: #9ca3af; }
.breadcrumbs a { color: #2563eb; }

/* Generic content page */
.content-section { padding: 56px 0; }
.content-section.narrow .container { max-width: 860px; }
.content-section h2 { font-size: 24px; font-weight: 700; margin: 32px 0 14px; color: #111827; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-size: 17px; font-weight: 600; margin: 20px 0 8px; color: #1f2937; }
.content-section p { font-size: 15px; color: #4b5563; margin-bottom: 14px; line-height: 1.7; }
.content-section ul { margin: 0 0 14px 0; }
.content-section ul li { font-size: 15px; color: #4b5563; line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: 8px; }
.content-section ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #2563eb; font-size: 11px; position: absolute; left: 0; top: 5px; }
.content-section ol { margin: 0 0 14px 22px; }
.content-section ol li { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 8px; }

/* Requisites table */
.requisites { border-collapse: collapse; width: 100%; margin: 16px 0 28px; font-size: 14px; }
.requisites tr { border-bottom: 1px solid #f3f4f6; }
.requisites td { padding: 10px 12px; color: #4b5563; }
.requisites td:first-child { color: #9ca3af; width: 42%; }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.contact-card { background: #f9fafb; border-radius: 16px; padding: 28px; }
.contact-card .contact-icon { width: 44px; height: 44px; background: #eff6ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #2563eb; font-size: 18px; margin-bottom: 16px; }
.contact-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.contact-card p, .contact-card a { display: block; font-size: 14px; color: #4b5563; margin-bottom: 4px; }
.contact-card a:hover { color: #2563eb; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; height: 380px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Blog / tours cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.simple-card { border-radius: 16px; overflow: hidden; border: 1px solid #f3f4f6; transition: box-shadow 0.2s; }
.simple-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.simple-card img { height: 180px; object-fit: cover; width: 100%; }
.simple-card-body { padding: 20px; }
.simple-card-tag { font-size: 11px; font-weight: 700; color: #2563eb; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; display: block; }
.simple-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.simple-card p { font-size: 13px; color: #9ca3af; margin-bottom: 0; }
.simple-card .price { color: #2563eb; font-weight: 700; font-size: 15px; margin-top: 10px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-collage { display: none; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .nav { display: none; }
    .hero-title { font-size: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .topbar-contacts { gap: 12px; }
    .card-grid { grid-template-columns: 1fr; }
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}
