/* ═══════════════════════════════════════════════════
   SAIL LA VIE — Clean, Readable Stylesheet
   "Jedrenje kao način života"
   ═══════════════════════════════════════════════════ */
:root {
  --navy: #0F2043;
  --navy-light: #1a3260;
  --sand: #F7F1E8;
  --gold: #C8A96E;
  --turquoise: #2ABFBF;
  --coral: #D4654A;
  --coral-hover: #c05540;
  --white: #FFFFFF;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1140px;
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.25; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h5 { font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
p { margin-bottom: 16px; }
a { color: var(--gold); transition: color 0.2s; }
a:hover { color: var(--coral); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; top: -50px; left: 16px; background: var(--navy); color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 4px; }
.skip-link:focus { top: 8px; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(15,32,67,0.92); backdrop-filter: blur(10px); transition: background 0.3s; }
.nav.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo .logo-img { height: 95px; width: auto; }
.footer-logo .logo-img-footer { height: 220px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links li a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links li a:hover { color: var(--gold); }
.btn-nav { background: var(--coral) !important; color: #fff !important; padding: 8px 20px !important; border-radius: 6px; font-size: 0.85rem !important; font-weight: 600 !important; }
.btn-nav:hover { background: var(--coral-hover) !important; }
.lang-switch { display: flex; gap: 4px; font-size: 0.8rem !important; }
.lang-switch a { padding: 2px 6px; border-radius: 3px; color: rgba(255,255,255,0.5) !important; font-size: 0.8rem !important; }
.lang-switch a.active { color: var(--gold) !important; font-weight: 700; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; flex-direction: column; align-items: flex-start; background: var(--navy); padding: 80px 32px 32px; gap: 24px; transition: right 0.35s ease; z-index: 999; }
  .nav-links.active { right: 0; }
}

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background-image: url('../hero-poster-mobile.webp'); background-size: cover; background-position: center; }
@media (min-width: 769px) { .hero { background-image: url('../hero-poster-tablet.webp'); } }
@media (min-width: 1201px) { .hero { background-image: url('../hero-poster-desktop.webp'); } }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(15,32,67,0.4), rgba(15,32,67,0.55)); z-index: 1; }
.hero-content { max-width: 700px; }
.hero-overline { font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.hero-title { color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.hero-description { color: rgba(255,255,255,0.8); font-size: 1.15rem; line-height: 1.8; margin-bottom: 32px; }
.hero-media, .hero-placeholder { display: none; }

/* ── HERO MINI ── */
.hero-mini { background: var(--navy); padding: 120px 24px 50px; text-align: center; }
.hero-mini-content h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 8px; }
.hero-mini-content .breadcrumb, .hero-mini-content nav.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.hero-mini-content .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.hero-mini-content .breadcrumb a:hover { color: var(--gold); }
.breadcrumb { color: var(--text-light); font-size: 0.85rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.85); }
.section--light, .section--white, .section-light { background: var(--white); }
.section--cta { background: var(--navy); padding: 80px 0; text-align: center; }
.section--cta h2 { color: #fff; }
.section--cta p { color: rgba(255,255,255,0.85); }
.section--cta .btn, .section--cta .btn--primary { background: var(--gold); color: var(--navy); }
.section--social { padding: 40px 0; text-align: center; background: var(--sand); }
.section--rya-banner { background: var(--navy); padding: 60px 0; text-align: center; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 52px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.section-subtitle, .section-intro, .intro-text { color: var(--text-light); line-height: 1.7; max-width: 650px; margin: 0 auto 48px; text-align: center; }
.overline { text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; color: var(--gold); font-weight: 700; margin-bottom: 12px; display: block; }
.overline--gold { color: var(--gold); }
.section--navy .overline { color: var(--gold); }
.h2--white { color: var(--white) !important; }
.section-cta, .section-footer { text-align: center; margin-top: 40px; }
.link-arrow { color: var(--gold); text-decoration: none; font-weight: 600; }
.link-arrow:hover { color: var(--coral); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 48px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item { padding: 8px; }
.trust-stat { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.trust-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 600px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; font-family: var(--font-body); font-size: 1rem; }
.btn-primary, .btn--primary { background: var(--coral); color: #fff; }
.btn-primary:hover, .btn--primary:hover { background: var(--coral-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--coral); color: #fff; border: 2px solid var(--coral); }
.btn-secondary:hover { background: var(--coral-hover); color: #fff; border-color: var(--coral-hover); }
.btn-hero, .btn-cta { background: var(--coral); color: #fff; font-size: 1.1rem; padding: 16px 40px; }
.btn-hero:hover, .btn-cta:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,101,74,0.3); }
.btn-lg, .btn-large { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm, .btn-small { padding: 8px 20px; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-gold, .btn-white { background: var(--gold); color: var(--navy); }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold); opacity: 0.5; display: block; margin-bottom: 12px; line-height: 1; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.steps-grid .step { counter-increment: none; }
.steps-grid .step::before { display: none; }
.step-number { font-family: var(--font-display); font-size: 3rem; color: var(--gold); font-weight: 300; line-height: 1; margin-bottom: 12px; }
.step-details { margin-top: 16px; }
.step-details ul { padding-left: 20px; list-style: disc; }
.step-details li { margin-bottom: 6px; color: var(--text-light); font-size: 0.9rem; }
@media (max-width: 768px) { .steps, .steps-grid { grid-template-columns: 1fr; } }

/* ── CARDS ── */
.dest-cards, .fleet-cards, .blog-cards, .destinations-grid, .fleet-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dest-card, .fleet-card, .blog-card, .destination-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.dest-card:hover, .fleet-card:hover, .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-card-placeholder, .blog-card-placeholder, .card-image { height: 200px; background: linear-gradient(135deg, #e8f4f8, #cfe8f0); }
.dest-card h3, .fleet-card h3, .blog-card h3 { padding: 0 24px; margin-top: 20px; }
.dest-card p, .fleet-card p, .blog-card p { padding: 0 24px; color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.dest-card-link { display: block; padding: 16px 24px; color: var(--gold); font-weight: 600; text-decoration: none; }
.card-content { padding: 24px; }
.card-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.card-overlay { position: absolute; inset: 0; background: rgba(15,32,67,0.2); }
.fleet-card-image img, .boat-image, .blog-image { width: 100%; height: 200px; object-fit: cover; }
.fleet-name, .boat-name { color: var(--gold); font-weight: 600; padding: 0 24px; font-size: 0.9rem; }
.fleet-specs, .boat-specs { color: var(--text-light); font-size: 0.85rem; padding: 0 24px 20px; }
.boat-info { padding: 20px 24px; }
.boat-cta, .read-more { color: var(--gold); font-weight: 600; text-decoration: none; }
.blog-content, .blog-intro, .blog-section { padding: 24px; }
.blog-teaser { color: var(--text-light); line-height: 1.6; }
.filter-buttons, .fleet-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; border: 2px solid var(--border); border-radius: 30px; background: var(--white); color: var(--text); cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.fleet-intro, .rya-intro, .destination-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; line-height: 1.7; color: var(--text-light); }
.fleet-section, .rya-section, .destinations-section { padding: 80px 0; }
@media (max-width: 768px) { .dest-cards, .fleet-cards, .blog-cards, .destinations-grid, .fleet-grid, .blog-grid { grid-template-columns: 1fr; } }

/* Mobilni prikaz: sve dvokolonske i trokolonske inline grid/flex sekcije idu odozgo na dole */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── USP ── */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-card { padding: 32px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); background: rgba(255,255,255,0.05); }
.usp-card h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 8px; }
.usp-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.testimonials, .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial, .testimonial-card, .testimonial-box { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial-stars, .star { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author, .author-name { font-weight: 700; color: var(--navy); }
.testimonial-meta, .author-location { color: var(--text-light); font-size: 0.85rem; }
.testimonials-section { padding: 80px 0; }
.rating-summary { display: flex; align-items: center; gap: 24px; padding: 32px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 48px; }
.rating-score { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 1.5rem; }
.rating-count, .rating-text { color: var(--text-light); }
.rating-card { background: var(--white); padding: 24px; border-radius: var(--radius); }
@media (max-width: 768px) { .testimonials, .testimonials-grid { grid-template-columns: 1fr; } .rating-summary { flex-direction: column; text-align: center; } }

/* ── BLOG (clean, no-image cards, testimonial-style) ── */
.blog-grid--clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card-clean { background: var(--white); padding: 36px 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card-clean:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-clean .blog-category { display: inline-block; color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.blog-card-clean h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.25; margin: 0 0 16px; padding: 0; }
.blog-card-clean h3 a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.blog-card-clean h3 a:hover { color: var(--coral); }
.blog-card-clean .blog-teaser { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.blog-card-clean .read-more { color: var(--coral); font-weight: 600; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.3px; align-self: flex-start; transition: transform 0.2s; }
.blog-card-clean .read-more:hover { transform: translateX(4px); }
@media (max-width: 960px) { .blog-grid--clean { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid--clean { grid-template-columns: 1fr; gap: 20px; } .blog-card-clean { padding: 28px 24px; } .blog-card-clean h3 { font-size: 1.35rem; } }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card { background: var(--white); border-radius: var(--radius); padding: 40px 28px; text-align: center; border: 2px solid var(--border); transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-featured { border-color: var(--coral); box-shadow: 0 8px 30px rgba(212,101,74,0.15); transform: scale(1.03); }
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card-header { margin-bottom: 24px; }
.pricing-card-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.pricing-card-subtitle { color: var(--text-light); font-size: 0.9rem; }
.pricing-card-label { display: inline-block; background: var(--coral); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-card-price { font-family: var(--font-display); font-size: 3rem; color: var(--navy); font-weight: 700; line-height: 1.1; }
.pricing-unit { font-size: 0.9rem; color: var(--text-light); }
.pricing-subtext, .price-info { color: var(--text-light); font-size: 0.85rem; margin-top: 4px; }
.pricing-features { text-align: left; margin: 24px 0; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ── CTA ── */
.cta-section { background: var(--navy); padding: 80px 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-phone { margin-top: 16px; color: rgba(255,255,255,0.6); }
.cta-phone a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-row, .form-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select, textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--white); transition: border-color 0.2s; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(200,169,110,0.2); }
textarea { min-height: 120px; resize: vertical; }
input.error, select.error, textarea.error { border-color: var(--coral); }
.required { color: var(--coral); }
.quote-form, .quote-form-wrapper, .contact-form, .contact-form-wrapper { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; }
.newsletter-section, .newsletter-card { max-width: 500px; margin: 0 auto; text-align: center; }
@media (max-width: 768px) { .form-row, .form-rows { grid-template-columns: 1fr; } .newsletter-form { flex-direction: column; } }

/* ── FAQ ── */
.faq-grid { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1rem; color: var(--text); background: none; border: none; width: 100%; font-family: var(--font-body); text-align: left; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-cta, .faq-phone { text-align: center; margin-top: 40px; }
.faq-phone a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── VALUES / STATS ── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.value-card { padding: 36px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.value-card h3 { color: var(--navy); margin-bottom: 12px; }
.value-card p { color: var(--text-light); line-height: 1.7; margin: 0; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-header { text-align: center; margin-bottom: 48px; }
.stat-item { padding: 8px; }
.stat-number, [data-count] { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); font-weight: 700; line-height: 1.2; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ── INCLUDED ── */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.included-item { padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
.included { color: var(--gold); }
.not-included { color: var(--text-light); }
.check-icon { color: var(--gold); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr; } }

/* ── DESTINATIONS DETAIL ── */
.destination-image { width: 100%; height: 300px; object-fit: cover; }
.destination-content { padding: 32px; }
.destination-desc { line-height: 1.8; margin-bottom: 24px; }
.destination-highlights { margin-bottom: 24px; }
.destination-info { padding: 24px; background: var(--sand); border-radius: var(--radius); margin-bottom: 24px; }
.destination-itinerary, .day-schedule { margin-top: 32px; }
.destination-tagline { font-style: italic; color: var(--text-light); margin-bottom: 16px; }
.destination-weather { margin-top: 24px; }
.custom-destination-content { line-height: 1.8; }
.weather-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.weather-item { text-align: center; padding: 16px; background: var(--white); border-radius: 8px; border: 1px solid var(--border); }
.weather-content { margin-top: 4px; color: var(--text-light); font-size: 0.85rem; }
.itinerary { margin-top: 32px; }
.itinerary-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.itinerary-schedule { color: var(--text-light); font-size: 0.85rem; }
.highlights-grid, .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.highlight-card, .highlight-item, .info-card { padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.overview { line-height: 1.8; margin-bottom: 32px; }

/* ── RYA ── */
.rya-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.rya-card { background: var(--white); border-radius: var(--radius); padding: 32px; border-left: 4px solid var(--gold); box-shadow: var(--shadow); }
.rya-banner-content { color: var(--white); }
.rya-banner-content h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 12px; }
.rya-banner-content p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.course-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.course-body { color: var(--text-light); line-height: 1.7; }
.course-duration { background: var(--sand); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.course-requirement { color: var(--text-light); font-size: 0.85rem; margin-top: 12px; font-style: italic; }
.shore-section { margin-top: 64px; }
.shore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.shore-card { background: var(--white); padding: 32px; border-radius: var(--radius); border-left: 4px solid var(--gold); box-shadow: var(--shadow); }
.partners-section { padding: 64px 0; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.partner-card { padding: 32px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
@media (max-width: 768px) { .partners-grid { grid-template-columns: 1fr; } }

/* ── CONTACT ── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info { padding: 32px 0; }
.contact-details { margin-bottom: 32px; }
.contact-detail { margin-bottom: 24px; }
.contact-detail-title { font-weight: 700; margin-bottom: 4px; font-size: 0.9rem; }
.contact-additional { margin-top: 32px; color: var(--text-light); }
@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }

/* ── SOCIAL ── */
.social-links { display: flex; gap: 20px; justify-content: center; }
.social-links a { color: var(--text-light); text-decoration: none; font-size: 1.1rem; }
.social-links a:hover { color: var(--gold); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 64px 0 0; border-top: 3px solid var(--gold); margin-top: 0; }
main + .footer { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h5 { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 1px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; color: var(--white) !important; margin-bottom: 12px; margin-left: -20px; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin: 0; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── PHONE FLOAT ── */
.phone-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--coral); color: #fff; border-radius: 50px; padding: 14px 22px; display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 20px rgba(212,101,74,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.phone-float:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(212,101,74,0.45); color: #fff; }
.phone-float svg { flex-shrink: 0; }
@media (max-width: 600px) { .phone-float span { display: none; } .phone-float { padding: 14px; border-radius: 50%; } }

/* ── LEGAL ── */
.legal-content { max-width: 750px; margin: 0 auto; padding: 40px 0; line-height: 1.8; }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; }
.legal-content p { color: var(--text-light); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.main-content { padding-top: 68px; }
.full-width { width: 100%; }
body.menu-open { overflow: hidden; }

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 120px 0 60px; }
  .hero .container h1 { font-size: clamp(1.8rem, 8vw, 2.5rem) !important; max-width: 100% !important; }
  .hero .container p { font-size: 1rem !important; max-width: 100% !important; }
  .hero-video { min-height: 100%; }
  .nav-logo .logo-img { height: 95px; }
  .nav-inner { height: 100px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 50px; }
  .hero .container h1 { font-size: 1.8rem !important; }
  .nav-logo .logo-img { height: 95px; }
  .trust-stat { font-size: 1.6rem; }
  .section { padding: 48px 0; }
}

/* ── PRINT ── */
@media print { .nav, .phone-float, .mobile-overlay, .hamburger { display: none !important; } .hero { min-height: auto; padding: 40px 24px; } .section { padding: 40px 0; } }

/* ============================================================
   GALERIJA BRODA + LIGHTBOX
   ============================================================ */
.boat-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.boat-gallery .gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f1ec;
}
.boat-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.boat-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.boat-gallery .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
@media (max-width: 640px) {
  .boat-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .boat-gallery .gallery-item.featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 20px;
}
@media (max-width: 640px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}
