/* ============================================================
   PORT-À-SEC La Tremblade — Feuille de styles principale
   Palette : Navy #0a2342 | Bleu mer #1a6b9a | Blanc #ffffff | Sable #f5f0e8
   ============================================================ */

:root {
  --navy: #0a2342;
  --sea: #1a6b9a;
  --sea-light: #2a8bc4;
  --white: #ffffff;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d0;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --accent: #e8a020;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,35,66,0.12);
  --shadow-hover: 0 8px 40px rgba(10,35,66,0.22);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sea), var(--accent));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ---- Top Bar ---- */
#top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  text-align: center;
}
#top-bar a { color: var(--accent); font-weight: 600; }
#top-bar .top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
#top-bar .top-bar-inner span { display: flex; align-items: center; gap: 0.4rem; }

/* ---- Navigation ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,35,66,0.08);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(10,35,66,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.nav-logo-text .sub { font-size: 0.7rem; color: var(--sea); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--sea);
  background: rgba(26,107,154,0.08);
}
.nav-links .btn-nav {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .btn-nav:hover { background: var(--sea) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero Section ---- */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,35,66,0.78) 0%, rgba(26,107,154,0.45) 60%, rgba(10,35,66,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 2rem 1.5rem;
  margin-left: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
}
.btn-primary:hover {
  background: #f0b030;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  display: flex;
  gap: 2rem;
  z-index: 2;
}
.stat-item {
  text-align: center;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}
.stat-item .stat-num { font-size: 1.8rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.stat-item .stat-label { font-size: 0.75rem; opacity: 0.85; letter-spacing: 0.05em; text-transform: uppercase; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Services Cards ---- */
#services { background: var(--sand); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--sea));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ---- Présentation ---- */
#presentation { background: var(--white); }

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.presentation-text h2 { margin-bottom: 1rem; }
.presentation-text .lead {
  font-size: 1.15rem;
  color: var(--sea);
  font-weight: 600;
  margin-bottom: 1rem;
}
.presentation-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

.tarif-box {
  background: linear-gradient(135deg, var(--navy), var(--sea));
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  margin: 2rem 0;
}
.tarif-box h3 { color: var(--accent); margin-bottom: 1.25rem; font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row .tarif-label { font-size: 0.95rem; opacity: 0.9; }
.tarif-row .tarif-price { font-size: 1.3rem; font-weight: 800; color: var(--accent); }

.tarif-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 1rem;
}
.tarif-pdf-btn:hover { background: var(--sand); transform: translateY(-2px); }

.presentation-image {
  position: relative;
}
.presentation-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.presentation-image .img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--accent);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

/* ---- Widget Météo & Marées ---- */
#meteo-marees {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3060 50%, var(--sea) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#meteo-marees::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#meteo-marees .section-header h2 { color: var(--white); }
#meteo-marees .section-header p { color: rgba(255,255,255,0.75); }
#meteo-marees .divider { background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.3)); }

.widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.widget-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.widget-card:hover { background: rgba(255,255,255,0.12); }

.widget-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.widget-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.widget-header h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.widget-header .update-time { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }

/* Marées */
.marees-today {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.maree-item {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.maree-item .maree-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.maree-item .maree-time { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.maree-item .maree-height { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.maree-item .maree-coeff { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.maree-item.haute { border-top: 2px solid var(--accent); }
.maree-item.basse { border-top: 2px solid rgba(255,255,255,0.3); }

.marees-loading, .meteo-loading {
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.maree-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
  margin-top: 1rem;
}
.maree-source a { color: rgba(255,255,255,0.55); text-decoration: underline; }

/* Météo */
.meteo-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.meteo-icon-large { font-size: 3.5rem; }
.meteo-temp { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.meteo-desc { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

.meteo-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.meteo-detail {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}
.meteo-detail .detail-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.meteo-detail .detail-value { font-size: 0.95rem; font-weight: 700; color: var(--white); }

.meteo-alert {
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---- Location ---- */
#location { background: var(--sand); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(10,35,66,0.06);
}
.condition-item .check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--sea), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.7rem;
  margin-top: 0.1rem;
}
.condition-item span { font-size: 0.95rem; color: var(--text); }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.payment-badge {
  background: var(--navy);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---- Entretien ---- */
#entretien { background: var(--white); }

.entretien-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.entretien-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}
.service-item::before {
  content: '⚓';
  font-size: 0.8rem;
  color: var(--sea);
}

.contact-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--sea);
}
.contact-card h4 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.4rem; }
.contact-card a { color: var(--sea); font-weight: 600; }

/* ---- Alentours / Destinations ---- */
#alentours { background: var(--sand); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover img { transform: scale(1.08); }

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.destination-overlay h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.destination-overlay .dest-year { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.destination-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; line-height: 1.4; }

/* ---- Galerie ---- */
#galerie { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,35,66,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---- Contact ---- */
#contact { background: var(--sand); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--sea));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sea); margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; }
.contact-item-text p, .contact-item-text a { color: var(--text); font-size: 1rem; font-weight: 600; }
.contact-item-text a:hover { color: var(--sea); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.map-embed iframe { width: 100%; height: 250px; border: none; display: block; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--sand-dark);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(26,107,154,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--sea));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,35,66,0.3); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #16a34a;
}
.form-success.show { display: block; }

/* ---- Footer ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  font-size: 1rem;
}
.social-link:hover { background: var(--sea); color: white; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  white-space: nowrap;
}
.floating-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.floating-phone { background: var(--navy); color: white; }
.floating-phone:hover { background: var(--sea); }
.floating-fb { background: #1877f2; color: white; }

/* ---- Scroll to top ---- */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--sea); transform: translateY(-3px); }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-content { margin-left: 0; padding: 2rem 1.5rem; }
  .hero-stats { display: none; }

  .presentation-grid,
  .location-grid,
  .entretien-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .presentation-image .img-badge { bottom: 0.5rem; left: 0.5rem; }

  .widgets-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .floating-cta { bottom: 1rem; right: 1rem; }
  .floating-btn span { display: none; }
  .floating-btn { padding: 0.85rem; }

  .marees-today { grid-template-columns: 1fr 1fr; }
  .meteo-details { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
