/* ============================================
   TAXI JEAN-DOMINIQUE CECCALDI - WEST CORSICA
   Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1b1b1b;
  --primary-light: #2e2e2e;
  --accent: #e8a020;
  --accent-light: #f0b840;
  --accent-dark: #c4850a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --light-gray: #e8e8e3;
  --medium-gray: #888;
  --dark-gray: #333;
  --text: #1e1e1e;
  --text-light: #5a5a5a;
  --shadow: rgba(0, 0, 0, 0.10);
  --shadow-strong: rgba(0, 0, 0, 0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 10px;
  --border-radius-lg: 18px;
  --max-width: 1200px;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* --- Utility Classes --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  opacity: 0.85;
}

.section-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn i {
  font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px var(--shadow-strong);
  backdrop-filter: blur(10px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.nav-logo i {
  font-size: 1.8rem;
  color: var(--accent);
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 15, 15, 0.68) 0%, rgba(20, 20, 20, 0.42) 50%, rgba(15, 15, 15, 0.62) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
}

.hero-bg-image.kenburns {
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center 80%;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, -1%); }
  100% { transform: scale(1.10) translate(1%, 0.5%); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 30px,
    transparent 30px,
    transparent 45px
  );
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 30px,
    transparent 30px,
    transparent 45px
  );
  z-index: 2;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 160, 32, 0.04) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

.breadcrumb i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-strong);
}

.card-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image .placeholder-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.card-image .card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card-body p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-body .card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.card-body .card-meta i {
  color: var(--accent);
}

/* --- Service Cards (icon style) --- */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--accent);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(232, 160, 32, 0.06) 50%);
  transition: var(--transition-slow);
}

.service-card:hover::before {
  width: 120px;
  height: 120px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-strong);
  border-left-color: var(--accent-light);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

/* --- Feature Row --- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-row .feature-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  position: relative;
}

.feature-row .feature-image .image-placeholder {
  height: 350px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row .feature-image .image-placeholder i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
}

.feature-row .feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.feature-row .feature-text {
  flex: 1;
}

.feature-row .feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-row .feature-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.feature-list {
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.feature-list li i {
  color: var(--accent);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* --- Pricing Table --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: 1.2rem;
  right: -2rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.3rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-strong);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-header i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.pricing-header .price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}

.pricing-header .price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 0.8rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 20, 20, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay .gallery-caption {
  color: var(--white);
  font-weight: 500;
}

.gallery-overlay .gallery-caption small {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  height: 100%;
}

.gallery-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.gallery-placeholder span {
  font-size: 0.85rem;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* --- Contact Info --- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.contact-info-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon-box i {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.08);
}

.form-control::placeholder {
  color: var(--medium-gray);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

/* --- Map Placeholder --- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-container .map-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}

.map-container .map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.cta-phone i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-about .footer-logo i {
  color: var(--accent);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Discover / Recommendations --- */
.reco-category {
  margin-bottom: 4rem;
}

.reco-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reco-category-header .reco-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.reco-category-header .reco-icon i {
  color: var(--white);
  font-size: 1.3rem;
}

.reco-category-header h3 {
  font-size: 1.5rem;
}

/* --- Timeline (About) --- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item .timeline-content {
  flex: 1;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow);
}

.timeline-item .timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--off-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item .timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* --- Destination Map Zones --- */
.zone-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.zone-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.zone-card .zone-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), rgba(232, 160, 32, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zone-card .zone-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.zone-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.zone-card p {
  font-size: 0.9rem;
  margin: 0;
}

.zone-card .zone-time {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* --- Number Counter --- */
.counter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-item .counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.counter-item .counter-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* --- Hero Split Layout with Booking --- */
.hero-booking {
  min-height: 100vh;
  padding-bottom: 5rem;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 420px);
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.hero-text {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-text .hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-text .hero-stats {
  margin-top: 2rem;
  justify-content: flex-start;
}

/* Booking Card in Hero */
.hero-booking-card {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.booking-card-inner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.booking-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.booking-header .booking-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-header .booking-icon i {
  color: var(--accent);
  font-size: 1.1rem;
}

.booking-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text);
}

.booking-header p {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.booking-field {
  margin-bottom: 0.75rem;
}

.booking-field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.field-wrapper {
  position: relative;
}

.field-wrapper .field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.85rem;
  z-index: 1;
}

.field-wrapper select,
.field-wrapper input {
  width: 100%;
  padding: 0.7rem 0.8rem 0.7rem 2.5rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.field-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field-wrapper select:focus,
.field-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.12);
  background: var(--white);
}

/* Route line visual between from/to */
.booking-route-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 1.8rem;
}

.route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.route-dot.top { background: #22c55e; }
.route-dot.bottom { background: #ef4444; }

.route-dash {
  width: 2px;
  height: 8px;
  background: var(--light-gray);
  border-radius: 1px;
}

/* Date time group */
.booking-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Estimate Result */
.booking-estimate {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--border-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 300px; }
}

.estimate-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.est-place {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.estimate-route i {
  color: var(--accent);
  font-size: 1.1rem;
}

.estimate-details {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.estimate-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.estimate-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.estimate-price {
  margin-left: auto;
  text-align: right;
}

.estimate-price .price-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.estimate-price .price-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.estimate-note {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.estimate-note i {
  color: var(--accent);
  margin-right: 0.3rem;
}

/* Actions */
.booking-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Success notification */
.booking-success {
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.5s ease-out;
}

.success-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.success-icon i {
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.booking-success p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 9999;
  animation: toastIn 0.4s ease-out;
  border-left: 4px solid #22c55e;
  max-width: 400px;
}

.toast-notification.error {
  border-left-color: #ef4444;
}

.toast-notification i {
  font-size: 1.2rem;
  color: #22c55e;
}

.toast-notification.error i {
  color: #ef4444;
}

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

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

  .feature-row {
    flex-direction: column !important;
    gap: 2rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat .number {
    font-size: 1.6rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 7rem 1.2rem 2rem;
    min-height: auto;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text .hero-subtitle {
    max-width: 100%;
  }
  .hero-text .hero-stats {
    justify-content: center;
  }
  .hero-bg-image {
    background-position: center 75% !important;
  }

  .hero-booking {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .booking-card-inner { padding: 1.5rem; }
  .booking-actions {
    flex-direction: column;
  }
  .booking-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .estimate-price { margin-left: 0; text-align: left; margin-top: 0.5rem; }
  .estimate-details { flex-direction: column; gap: 0.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 3rem;
  }

  .timeline-item .timeline-dot {
    left: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Service Card Links (stretched link) --- */
.service-card-link {
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border-color: var(--accent);
}

.card-stretched-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.service-card-cta {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card-cta i {
  transition: transform 0.2s ease;
}

.service-card-link:hover .service-card-cta i {
  transform: translateX(4px);
}

/* --- Photo Strip (Homepage) --- */
.photo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 0.75rem;
  height: 380px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    height: auto;
  }
}

/* --- CPAM Banner --- */
.cpam-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2a1a00 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 2.5rem 0;
}

.cpam-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cpam-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cpam-text {
  flex: 1;
  min-width: 220px;
}

.cpam-text h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.cpam-text p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cpam-inner { flex-direction: column; text-align: center; }
  .cpam-icon { margin: 0 auto; }
}

/* --- Photo Mosaic (Homepage) --- */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  height: 420px;
}

.mosaic-main {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.mosaic-main:hover img { transform: scale(1.04); }

.mosaic-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15,15,15,0.7);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mosaic-col {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.mosaic-item {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.mosaic-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mosaic-main { height: 260px; }
  .mosaic-col {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic-item { height: 130px; }
}

/* --- Print --- */
@media print {
  .navbar, .footer, .scroll-indicator, .cta-section { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 1.5rem 0; }
}
