/* ═══════════════════════════════════════════
   EURO DUTCH — Shared Stylesheet
   Brand: Navy #0F1C35 | Orange #E85D26
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy:        #0F1C35;
  --navy-light:  #16284A;
  --navy-mid:    #1E3460;
  --orange:      #E85D26;
  --orange-h:    #F07242;
  --cream:       #F7F4F0;
  --white:       #FFFFFF;
  --text:        #1A2035;
  --muted:       #6B7280;
  --border:      rgba(15,28,53,0.10);
  --border-light:rgba(255,255,255,0.10);
  --shadow-sm:   0 2px 12px rgba(15,28,53,0.07);
  --shadow-md:   0 8px 40px rgba(15,28,53,0.12);
  --shadow-lg:   0 20px 60px rgba(15,28,53,0.16);
  --radius:      6px;
  --transition:  0.32s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.12; }

/* ── UTILITIES ── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,93,38,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after { content: '→'; font-size: 1rem; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── FADE IN ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0 48px;
}

.navbar.transparent { background: transparent; }

.navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo SVG */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 56px; width: auto; transition: all var(--transition); }

.navbar.transparent .nav-logo .logo-text { fill: white; }
.navbar.transparent .nav-logo .logo-sub { fill: rgba(255,255,255,0.65); }
.navbar.solid .nav-logo .logo-text { fill: var(--navy); }
.navbar.solid .nav-logo .logo-sub { fill: var(--muted); }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar.transparent .nav-link { color: rgba(255,255,255,0.85); }
.navbar.transparent .nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.navbar.solid .nav-link { color: var(--navy); }
.navbar.solid .nav-link:hover { color: var(--orange); background: rgba(232,93,38,0.06); }

.nav-link.active { color: var(--orange) !important; }

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
  opacity: 0.6;
}

.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15,28,53,0.18);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--navy);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s;
}

.dropdown a:hover { background: var(--cream); color: var(--orange); }

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: rgba(232,93,38,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
}
.nav-cta:hover {
  background: var(--orange-h) !important;
  box-shadow: 0 6px 20px rgba(232,93,38,0.35) !important;
}

/* ══════════════════════════
   PAGE HERO (inner pages)
══════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,93,38,0.12), transparent);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 2; max-width: 700px; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--orange-h); }
.page-hero-breadcrumb span { color: var(--orange-h); }

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: white;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--orange-h); }

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  background: var(--navy);
  padding: 80px 48px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-top: 18px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-h);
  font-weight: 600;
  margin-bottom: 22px;
  font-family: 'DM Sans', sans-serif;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-text a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════
   CARDS
══════════════════════════ */
.card {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-orange-top { border-top: 3px solid transparent; }
.card-orange-top:hover { border-top-color: var(--orange); }

/* ══════════════════════════
   CONTACT FORM
══════════════════════════ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.form-control:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,93,38,0.08);
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* LOGO SVG SHARED */
.logo-mark-orange { fill: #E85D26; }
.logo-mark-orange-fade { fill: #E85D26; opacity: 0.45; }

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE — Euro Dutch
   Full breakpoint coverage
══════════════════════════════════════════════ */

/* Language Switcher */
.lang-switcher-wrap { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.82rem;
  border-radius: 4px;
  transition: all var(--transition);
}

.navbar.transparent .lang-current { color: rgba(255,255,255,0.85); }
.navbar.solid .lang-current { color: var(--navy); }
.navbar.transparent .lang-current:hover { background: rgba(255,255,255,0.1); }
.navbar.solid .lang-current:hover { background: var(--cream); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15,28,53,0.18);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.lang-switcher-wrap:hover .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.83rem;
  color: var(--navy);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s;
}

.lang-option:hover { background: var(--cream); color: var(--orange); }
.lang-option.active { color: var(--orange); font-weight: 500; }

.lang-flag-emoji { font-size: 1.1rem; line-height: 1; }

/* Mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: white;
  z-index: 999;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(15,28,53,0.2);
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
}

.mobile-nav-links {
  padding: 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: block;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 400;
  transition: all 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--cream);
  color: var(--orange);
}

.mobile-nav-section {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 12px 16px 6px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 8px 0;
}

.mobile-lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.mobile-lang-btn:hover { background: var(--cream); border-color: var(--border); }
.mobile-lang-btn.active { border-color: var(--orange); background: rgba(232,93,38,0.06); }

.mobile-lang-btn .flag { font-size: 1.4rem; line-height: 1; }
.mobile-lang-btn .code { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.mobile-lang-btn.active .code { color: var(--orange); }

.mobile-menu-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-cta-btn:hover { background: var(--orange-h); }

/* Hamburger button */
.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.transparent .hamburger-btn { color: white; }
.navbar.solid .hamburger-btn { color: var(--navy); }

/* ── LARGE TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: flex; }
  .navbar { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-grid,
  .about-story-grid { gap: 60px; }
  .services-cards,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── TABLET (max 768px) ── */
@media (max-width: 768px) {
  section { padding: 70px 20px; }
  .container, .container-wide { padding: 0 20px; }

  /* Nav */
  .navbar { padding: 0 16px; }
  .navbar-inner { height: 64px; }
  .nav-logo svg { height: 44px; }

  /* Hero Slider */
  .slide-content { padding: 0 24px; padding-bottom: 120px; }
  .slide-inner h1 { font-size: clamp(1.9rem, 7vw, 3rem) !important; }
  .slide-inner p { font-size: 0.9rem; }
  .slider-controls { left: 24px; bottom: 30px; }
  .scroll-indicator { display: none; }
  .slide-actions { flex-direction: column; gap: 10px; }
  .slide-actions .btn { width: 100%; justify-content: center; }

  /* Trust bar — horizontal scroll */
  .trust-bar {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 20px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .trust-item { flex-shrink: 0; }
  .trust-divider { display: none; }

  /* Two-col → single */
  .intro-grid,
  .about-story-grid,
  .contact-grid,
  .maritimes-intro-inner,
  .compliance-intro-inner,
  .bahamas-content,
  .why { grid-template-columns: 1fr !important; gap: 40px; }

  /* Three-col → single */
  .services-cards,
  .blog-cards,
  .services-grid,
  .breakdown-grid,
  .maritime-cards { grid-template-columns: 1fr !important; }

  /* Four-col → two-col */
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Service blocks */
  .service-block-inner,
  .service-block-inner.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Positioned cards */
  .intro-stat-card,
  .intro-stat-card-2 { position: static; margin: 12px 0; display: inline-block; }
  .about-float-card { position: static; margin-top: 16px; display: inline-block; }
  .intro-visual { margin-top: 20px; }

  /* Blog sidebar */
  .blog-layout-inner { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }

  /* Blog cards */
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { height: 180px; }

  /* Timeline mobile */
  .timeline::before { left: 20px; transform: none; }
  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .timeline-item .tl-empty { display: none; }
  .timeline-item:nth-child(even) .tl-content,
  .timeline-item:nth-child(odd) .tl-content { order: unset; text-align: left; }
  .tl-dot { width: 40px; height: 40px; font-size: 0.75rem; }

  /* Page hero */
  .page-hero { padding: 100px 20px 56px; }
  .page-hero h1 { font-size: 2rem !important; }

  /* Maritime full hero */
  .maritime-hero-img { padding: 100px 24px 60px; min-height: 100svh; align-items: flex-end; }

  /* Contact form */
  .contact-form-col { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* CTA actions */
  .cta-actions,
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn,
  .hero-actions .btn { justify-content: center; }

  /* About visual */
  .about-main-img { aspect-ratio: 4/3; }

  /* Services header */
  .services-preview-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .blog-preview-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  section { padding: 56px 16px; }

  h1 { font-size: 1.8rem !important; line-height: 1.15 !important; }
  h2 { font-size: 1.55rem !important; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.58rem; }
  .stat-item { padding: 18px 14px; }

  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .bahamas-feats { grid-template-columns: 1fr 1fr; }

  .trust-bar { gap: 16px; }
  .trust-item { gap: 10px; }
  .trust-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .trust-text strong { font-size: 0.72rem; }
  .trust-text span { font-size: 0.6rem; }

  .btn { padding: 12px 18px; font-size: 0.74rem; }
  .svc-card, .service-card { padding: 28px 22px; }

  .intro-stat-card .big { font-size: 2.2rem; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .maritime-cards { grid-template-columns: 1fr; }

  .footer { padding: 52px 16px 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── RTL Support (Arabic) ── */
html[dir="rtl"] .section-tag::before { margin-right: 0; margin-left: 10px; }
html[dir="rtl"] .btn-arrow::after { content: '←'; }
html[dir="rtl"] .mobile-menu { right: auto; left: -100%; }
html[dir="rtl"] .mobile-menu.open { left: 0; right: auto; }
html[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
html[dir="rtl"] .service-block-inner.reverse { direction: ltr; }
html[dir="rtl"] .detail-list li::before,
html[dir="rtl"] .service-list li::before { content: '←'; }
html[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .timeline::before { right: 20px; left: auto; }


/* ══════════════════════════
   HOME — HERO SLIDER
══════════════════════════ */
.hero-slider { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: all; }
.slide-1 { background: linear-gradient(to right, rgba(10,20,40,0.82) 40%, rgba(10,20,40,0.3) 100%), url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1800&q=80') center/cover no-repeat; }
.slide-2 { background: var(--navy); }
.slide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; z-index: 0; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,20,40,0.88) 40%, rgba(10,20,40,0.5) 100%); }
.slide-3 { background: linear-gradient(to right, rgba(10,20,40,0.82) 40%, rgba(10,20,40,0.3) 100%), url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=1800&q=80') center/cover no-repeat; }
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; padding: 0 10%; }
.slide-inner { max-width: 680px; transform: translateY(20px); opacity: 0; transition: transform 1s 0.4s ease, opacity 1s 0.4s ease; }
.slide.active .slide-inner { transform: translateY(0); opacity: 1; }
.slide-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange-h); margin-bottom: 20px; font-weight: 500; }
.slide-tag::before { content: ''; display: block; width: 30px; height: 1.5px; background: var(--orange); }
.slide-inner h1 { font-size: clamp(2.8rem, 5vw, 5rem); color: white; line-height: 1.08; margin-bottom: 22px; font-weight: 400; }
.slide-inner h1 em { font-style: italic; color: var(--orange-h); }
.slide-inner p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 520px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-controls { position: absolute; bottom: 40px; left: 10%; display: flex; align-items: center; gap: 24px; z-index: 10; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--orange); width: 44px; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow { width: 42px; height: 42px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 1rem; transition: all 0.25s; background: transparent; }
.slider-arrow:hover { border-color: var(--orange); background: rgba(232,93,38,0.2); color: var(--orange-h); }
.scroll-indicator { position: absolute; bottom: 40px; right: 10%; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; z-index: 10; }
.scroll-line { width: 1.5px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--orange); transition: width 0.1s linear; z-index: 10; }

/* Trust Bar */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 22px 48px; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 42px; height: 42px; background: rgba(232,93,38,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.8rem; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.trust-text span { font-size: 0.72rem; color: var(--muted); }
.trust-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Intro section */
.intro { padding: 110px 48px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1260px; margin: 0 auto; }
.intro-text h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--navy); margin-bottom: 22px; }
.intro-text h2 em { font-style: italic; color: var(--orange); }
.intro-text p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.intro-visual { position: relative; }
.intro-img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.intro-stat-card { position: absolute; bottom: -20px; left: -20px; background: white; border-radius: 8px; padding: 20px 28px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.intro-stat-card .big { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.intro-stat-card .small { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.intro-stat-card-2 { position: absolute; top: -16px; right: -16px; background: var(--navy); border-radius: 8px; padding: 18px 26px; box-shadow: var(--shadow-lg); }
.intro-stat-card-2 .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--orange-h); line-height: 1; margin-bottom: 4px; }
.intro-stat-card-2 .small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Services Preview */
.services-preview { background: var(--cream); padding: 110px 48px; }
.services-preview-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1260px; margin: 0 auto 52px; }
.services-preview-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); color: var(--navy); }
.services-preview-header h2 em { font-style: italic; color: var(--orange); }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1260px; margin: 0 auto; background: var(--border); border-radius: 8px; overflow: hidden; }
.svc-card { display: block; background: white; padding: 40px 36px; text-decoration: none; transition: all var(--transition); }
.svc-card:hover { background: var(--navy); }
.svc-card:hover .svc-title, .svc-card:hover .svc-link { color: white; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.6); }
.svc-icon { font-size: 2.2rem; margin-bottom: 18px; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; transition: color var(--transition); }
.svc-desc { font-size: 0.83rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; transition: color var(--transition); }
.svc-link { font-size: 0.78rem; font-weight: 500; color: var(--orange); transition: color var(--transition); }

/* Bahamas section */
.bahamas-section { background: var(--navy); padding: 110px 48px; }
.bahamas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1260px; margin: 0 auto; }
.bahamas-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: white; margin-bottom: 20px; }
.bahamas-text h2 em { font-style: italic; color: var(--orange-h); }
.bahamas-text p { font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.bahamas-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.b-feat { background: rgba(255,255,255,0.04); padding: 36px; text-align: center; }
.b-feat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--orange-h); line-height: 1; margin-bottom: 8px; }
.b-feat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Blog Preview */
.blog-preview { padding: 110px 48px; }
.blog-preview-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1260px; margin: 0 auto 52px; }
.blog-preview-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); }
.blog-preview-header h2 em { font-style: italic; color: var(--orange); }
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1260px; margin: 0 auto; }
.blog-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--navy); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: 14px; left: 14px; background: var(--orange); color: white; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; font-weight: 500; }
.blog-card-body { padding: 28px; }
.blog-card-date { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.blog-card-link { font-size: 0.78rem; font-weight: 500; color: var(--orange); display: flex; align-items: center; gap: 6px; }

/* CTA Banner */
.cta-banner { background: var(--navy); padding: 80px 48px; text-align: center; }
.cta-banner h2 { font-size: clamp(1.9rem, 3vw, 3rem); color: white; margin-bottom: 16px; }
.cta-banner h2 em { font-style: italic; color: var(--orange-h); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ABOUT PAGE */
.about-story { padding: 110px 48px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; max-width: 1260px; margin: 0 auto; }
.about-story-text h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--navy); margin-bottom: 22px; }
.about-story-text h2 em { font-style: italic; color: var(--orange); }
.about-story-text p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.about-img-block { position: relative; }
.about-main-img { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; padding: 36px; }
.about-main-img-inner { z-index: 1; position: relative; }
.about-main-img-inner .year { font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 400; color: rgba(232,93,38,0.2); line-height: 1; position: absolute; top: -80px; left: 0; }
.about-main-img-inner .label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.about-main-img-inner .value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: white; }
.about-float-card { position: absolute; top: -24px; right: -24px; background: var(--orange); color: white; padding: 28px; border-radius: 8px; box-shadow: 0 20px 50px rgba(232,93,38,0.4); text-align: center; }
.about-float-card .num { font-family: 'Playfair Display', serif; font-size: 2.8rem; line-height: 1; margin-bottom: 6px; }
.about-float-card .txt { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.timeline-section { background: var(--cream); padding: 100px 48px; }
.timeline-section h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 60px; text-align: center; }
.timeline-section h2 em { font-style: italic; color: var(--orange); }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1.5px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-bottom: 52px; }
.timeline-item:nth-child(even) .tl-content { order: 3; text-align: left; }
.timeline-item:nth-child(even) .tl-empty { order: 1; }
.timeline-item:nth-child(odd) .tl-content { text-align: right; }
.tl-dot { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.9rem; color: white; font-weight: 400; flex-shrink: 0; box-shadow: 0 4px 16px rgba(232,93,38,0.35); z-index: 1; }
.tl-year { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.tl-desc { font-size: 0.82rem; line-height: 1.75; color: var(--muted); }
.values-section { padding: 100px 48px; }
.values-section-header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.values-section-header h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); }
.values-section-header h2 em { font-style: italic; color: var(--orange); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1260px; margin: 0 auto; background: var(--border); border-radius: 8px; overflow: hidden; }
.value-card { background: white; padding: 44px 32px; transition: background var(--transition); }
.value-card:hover { background: var(--navy); }
.value-card:hover .v-title { color: white; }
.value-card:hover .v-desc { color: rgba(255,255,255,0.6); }
.v-icon { font-size: 2rem; margin-bottom: 20px; }
.v-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; transition: color var(--transition); }
.v-desc { font-size: 0.83rem; line-height: 1.8; color: var(--muted); transition: color var(--transition); }
.team-section { background: var(--navy); padding: 100px 48px; text-align: center; }
.team-section h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: white; margin-bottom: 16px; }
.team-section h2 em { font-style: italic; color: var(--orange-h); }
.team-section p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.85; }

/* SERVICES PAGE */
.services-intro { padding: 90px 48px 60px; background: var(--cream); }
.services-intro-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.services-intro-inner h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 18px; }
.services-intro-inner h2 em { font-style: italic; color: var(--orange); }
.services-intro-inner p { font-size: 0.96rem; line-height: 1.9; color: var(--muted); }
.service-block { padding: 90px 48px; }
.service-block:nth-child(even) { background: var(--cream); }
.service-block-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-block-num { font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(232,93,38,0.12); line-height: 1; margin-bottom: -16px; }
.service-block-icon { width: 64px; height: 64px; background: rgba(232,93,38,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.service-block-meta h2 { font-size: clamp(1.7rem, 2.5vw, 2.3rem); color: var(--navy); margin-bottom: 16px; }
.service-block-meta h2 em { font-style: italic; color: var(--orange); }
.service-block-meta p { font-size: 0.92rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.detail-card { background: white; border-radius: 8px; padding: 36px; border: 1px solid var(--border); margin-bottom: 18px; }
.detail-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.detail-card h4::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.detail-list li { font-size: 0.85rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.detail-list li::before { content: '→'; color: var(--orange); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.services-cta-strip { background: var(--navy); padding: 70px 48px; text-align: center; }
.services-cta-strip h2 { font-size: clamp(1.7rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.services-cta-strip h2 em { font-style: italic; color: var(--orange-h); }
.services-cta-strip p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* COMPLIANCE PAGE */
.compliance-intro { padding: 80px 48px; }
.compliance-intro-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.compliance-intro-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.compliance-intro-text h2 em { font-style: italic; color: var(--orange); }
.compliance-intro-text p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.risk-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.risk-box { background: var(--cream); border-radius: 8px; padding: 24px; border-left: 3px solid var(--orange); }
.risk-box h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.risk-box p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }
.services-breakdown { background: var(--cream); padding: 90px 48px; }
.breakdown-header { max-width: 1260px; margin: 0 auto 56px; }
.breakdown-header h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); }
.breakdown-header h2 em { font-style: italic; color: var(--orange); }
.breakdown-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.breakdown-card { background: white; border-radius: 8px; padding: 36px; border: 1px solid var(--border); transition: all var(--transition); }
.breakdown-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.breakdown-card-icon { font-size: 2rem; margin-bottom: 16px; }
.breakdown-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.breakdown-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.breakdown-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.breakdown-card ul li { font-size: 0.8rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.breakdown-card ul li::before { content: '✓'; color: var(--orange); font-weight: 600; flex-shrink: 0; }
.why-compliance { padding: 90px 48px; }
.why-compliance-inner { max-width: 1260px; margin: 0 auto; }
.why-compliance-inner h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); margin-bottom: 44px; }
.why-compliance-inner h2 em { font-style: italic; color: var(--orange); }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.challenge-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--cream); border-radius: 8px; }
.challenge-icon { width: 48px; height: 48px; background: rgba(232,93,38,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.challenge-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.challenge-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }
.compliance-cta { background: var(--navy); padding: 90px 48px; text-align: center; }
.compliance-cta h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.compliance-cta h2 em { font-style: italic; color: var(--orange-h); }
.compliance-cta p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* MARITIMES PAGE */
.maritime-hero-img { height: 100vh; min-height: 600px; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; padding: 0 10%; }
.maritime-intro { padding: 90px 48px; }
.maritime-intro-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.maritime-intro-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.maritime-intro-text h2 em { font-style: italic; color: var(--orange); }
.maritime-intro-text p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.yacht-card { background: var(--navy); border-radius: 12px; padding: 44px; color: white; position: relative; overflow: hidden; }
.yacht-card::before { content: '⚓'; position: absolute; font-size: 8rem; right: -10px; bottom: -20px; opacity: 0.06; }
.yacht-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 16px; }
.yacht-card-desc { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.yacht-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.yacht-stat { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 18px; }
.yacht-stat .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--orange-h); line-height: 1; margin-bottom: 4px; }
.yacht-stat .lbl { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.maritime-cards { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.maritime-card { background: white; border-radius: 8px; padding: 40px; border: 1px solid var(--border); transition: all var(--transition); }
.maritime-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-top: 3px solid var(--orange); }
.maritime-card-icon { font-size: 2rem; margin-bottom: 16px; }
.maritime-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.maritime-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.maritime-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.maritime-card ul li { font-size: 0.82rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.maritime-card ul li::before { content: '→'; color: var(--orange); font-weight: 600; flex-shrink: 0; }
.cta-strip { background: var(--navy); padding: 90px 48px; text-align: center; }
.cta-strip h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.cta-strip h2 em { font-style: italic; color: var(--orange-h); }
.cta-strip p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* CONTACT PAGE */
.contact-section { padding: 80px 48px 110px; }
.contact-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info-col h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); margin-bottom: 18px; }
.contact-info-col h2 em { font-style: italic; color: var(--orange); }
.contact-info-col > p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 44px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-icon { width: 48px; height: 48px; background: rgba(232,93,38,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 5px; }
.contact-detail-value { font-size: 0.9rem; color: var(--navy); line-height: 1.55; }
.contact-detail-value a { color: var(--orange); text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }
.office-map { margin-top: 36px; }
.office-map-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.office-map-placeholder::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=700&q=60') center/cover no-repeat; opacity: 0.3; }
.office-map-pin { position: relative; z-index: 1; text-align: center; color: white; }
.office-map-pin .pin { font-size: 2.5rem; }
.office-map-pin p { font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.7; margin-top: 4px; }
.contact-form-col { background: white; border-radius: 10px; padding: 52px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-heading { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success-msg { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 8px; padding: 20px 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; color: #166534; font-size: 0.9rem; line-height: 1.6; }
.faq-section { background: var(--cream); padding: 90px 48px; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); }
.faq-header h2 em { font-style: italic; color: var(--orange); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; }
.faq-question h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 400; }
.faq-toggle { width: 32px; height: 32px; background: rgba(232,93,38,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-toggle { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.85; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 200px; }

/* BLOG PAGE */
.blog-layout { padding: 80px 48px 110px; }
.blog-layout-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.blog-featured { margin-bottom: 48px; }
.blog-featured-card { background: var(--navy); border-radius: 10px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; text-decoration: none; color: inherit; transition: all var(--transition); }
.blog-featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-featured-img { position: relative; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.blog-featured-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-cat { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-h); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.blog-featured-cat::before { content: ''; display: block; width: 18px; height: 2px; background: var(--orange); border-radius: 2px; }
.blog-featured-body h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); color: white; margin-bottom: 14px; line-height: 1.2; }
.blog-featured-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 22px; }
.blog-featured-link { font-size: 0.8rem; font-weight: 500; color: var(--orange-h); display: flex; align-items: center; gap: 6px; }
.blog-featured-date { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.posts-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.posts-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
.posts-grid { display: flex; flex-direction: column; gap: 22px; }
.post-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); display: grid; grid-template-columns: 200px 1fr; transition: all var(--transition); text-decoration: none; color: inherit; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.post-card-img { overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; background: rgba(232,93,38,0.1); color: var(--orange); padding: 4px 8px; border-radius: 4px; width: fit-content; margin-bottom: 10px; font-weight: 500; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.post-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.post-date { font-size: 0.7rem; color: var(--muted); }
.sidebar-widget { background: var(--cream); border-radius: 8px; padding: 28px; margin-bottom: 24px; }
.sidebar-widget-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--navy); text-decoration: none; transition: color var(--transition); }
.sidebar-cat:hover { color: var(--orange); }
.sidebar-cat-count { background: var(--orange); color: white; font-size: 0.65rem; padding: 2px 7px; border-radius: 10px; }
.newsletter-widget { background: var(--navy); }
.newsletter-widget .sidebar-widget-title { color: white; }
.newsletter-widget p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.newsletter-input { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; outline: none; margin-bottom: 10px; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--orange); }
.recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post { display: flex; gap: 12px; align-items: center; text-decoration: none; color: inherit; }
.recent-post-img { width: 60px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--navy); }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: 0.82rem; color: var(--navy); line-height: 1.35; margin-bottom: 4px; transition: color var(--transition); }
.recent-post:hover .recent-post-title { color: var(--orange); }
.recent-post-date { font-size: 0.7rem; color: var(--muted); }

/* BLOG ARTICLE PAGE */
.article-layout { padding: 80px 48px 110px; }
.article-layout-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.article-cat-badge { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; background: rgba(232,93,38,0.1); color: var(--orange); padding: 5px 10px; border-radius: 4px; font-weight: 500; }
.article-date { font-size: 0.75rem; color: var(--muted); }
.article-body h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 24px; line-height: 1.15; }
.article-content { font-size: 0.95rem; line-height: 1.9; color: var(--text); }
.article-content p { margin-bottom: 20px; }
.article-content h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
.article-content h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; color: var(--muted); font-size: 0.93rem; }
.article-featured-img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 36px; background: var(--navy); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--orange); text-decoration: none; margin-bottom: 32px; font-weight: 500; }
.back-link:hover { color: var(--navy); }

/* SERVICE DETAIL PAGE */
.service-detail-layout { padding: 80px 48px 110px; }
.service-detail-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.service-detail-body h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--navy); margin: 32px 0 16px; }
.service-detail-body h2 em { font-style: italic; color: var(--orange); }
.service-detail-body p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.service-sidebar-cta { background: var(--navy); border-radius: 10px; padding: 36px; color: white; }
.service-sidebar-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 12px; }
.service-sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
