@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #0B5D3B;
  --emerald-dark: #073d27;
  --emerald-light: #0e7a4f;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --offwhite: #F8F7F2;
  --dark: #1E1E1E;
  --gray: #555;
  --light-gray: #e8e6e0;
  --bg-alt: #f7f6f2;
  --topbar-bg: #0a3d25;
  --topbar-text: #a8d5b5;
  --topbar-accent: #D4AF37;
  --topbar-height: 38px;
  --navbar-height: 72px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  height: var(--topbar-height);
  background: var(--topbar-bg);
  border-bottom: 1px solid rgba(212,175,55,.18);
}

.topbar-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--topbar-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.topbar-left svg { color: var(--topbar-accent); flex-shrink: 0; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--topbar-accent);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.topbar-right a:hover { opacity: 0.75; }
.topbar-right a svg { color: var(--topbar-accent); flex-shrink: 0; }

.topbar-divider {
  width: 1px; height: 14px;
  background: rgba(212,175,55,.25);
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-logo-main { color: var(--emerald); }
.navbar.scrolled .nav-logo-sub  { color: var(--gold); }
.navbar.scrolled .nav-link      { color: var(--dark); }
.navbar.scrolled .nav-link:hover{ color: var(--emerald); }

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: .05em;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: .65rem; font-weight: 600;
  color: var(--gold); letter-spacing: .12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.9); letter-spacing: .04em;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: .55rem 1.4rem;
  border-radius: 4px; font-weight: 600;
  font-size: .85rem; letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: calc(var(--topbar-height) + var(--navbar-height));
  left: 0; right: 0;
  background: #fff; padding: 1.5rem 5%;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  flex-direction: column; gap: 0; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  color: var(--dark); padding: 1rem 0;
  font-size: 1rem; border-bottom: 1px solid var(--light-gray);
}
.mobile-menu .nav-cta { margin-top: 1rem; text-align: center; padding: .85rem; color: var(--dark) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--topbar-height) + var(--navbar-height));
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--emerald-dark) 0%, var(--emerald) 50%, #0d4a2e 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.06) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23D4AF37'%3E%3Cpath d='M40 0l5.88 18.09L62.36 7.64l-10.45 16.48L70 28l-18.09 5.88L62.36 50.36 45.88 39.91 40 58l-5.88-18.09L17.64 50.36l10.45-16.48L10 28l18.09-5.88L17.64 23.64 34.12 34.09z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; padding: 2rem 1rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,.2); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .45rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.hero-badge .dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  vertical-align: middle; flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 700;
  color: #fff; line-height: 1.05; letter-spacing: -.01em; margin-bottom: .5rem;
}
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px; margin: 1.25rem auto 2.5rem;
  font-weight: 300; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.5); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: .9rem 2.2rem; border-radius: 4px;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  transition: all var(--transition); border: 2px solid var(--gold);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.35);
}
.btn-outline {
  background: transparent; color: #fff;
  padding: .9rem 2.2rem; border-radius: 4px;
  font-weight: 500; font-size: .9rem; letter-spacing: .04em;
  border: 2px solid rgba(255,255,255,.5);
  transition: all var(--transition); display: inline-block;
}
.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.section { padding: 6rem 0; }
.section-alt { background: #fff; }

.section-header,
.section-head { text-align: center; margin-bottom: 4rem; }
.section-header.center,
.section-head.center { text-align: center; }

.section-label,
.eyebrow {
  display: inline-block;
  color: var(--gold); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: .75rem;
}
.eyebrow.on-dark { color: rgba(255,255,255,.6); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
  color: var(--dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem; color: var(--gray);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none; margin: 1rem auto 0; border-radius: 2px;
}

/* ===== STATS ===== */
.stats { padding: 4rem 0; background: var(--emerald-dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-icon { font-size: 2rem; margin-bottom: .5rem; }
.stat-v {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-l {
  font-size: .8rem; color: rgba(255,255,255,.65);
  margin-top: .35rem; letter-spacing: .04em;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-card-main {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-radius: var(--radius); padding: 3rem 2.5rem;
  color: #fff; position: relative; overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(212,175,55,.12);
}
.about-year {
  font-family: var(--font-heading); font-size: 5rem;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .5rem;
}
.about-year-label { font-size: .85rem; color: rgba(255,255,255,.7); letter-spacing: .1em; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.about-stat {
  background: rgba(255,255,255,.1);
  border-radius: 8px; padding: 1rem; text-align: center;
}
.about-stat-num {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 700; color: var(--gold); display: block;
}
.about-stat-label { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: .2rem; }

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600;
  margin-bottom: 1.5rem; color: var(--dark); line-height: 1.2;
}
.about-text p { color: var(--gray); margin-bottom: 1.2rem; line-height: 1.8; font-size: .95rem; }
.about-cta { margin-top: 2rem; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.value-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--light-gray);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0); transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(11,93,59,.1), rgba(212,175,55,.1));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
}
.value-icon svg { width: 24px; height: 24px; color: var(--emerald); }
.value-name {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 600; color: var(--dark); margin-bottom: .4rem;
}
.value-desc { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem 2rem; border: 1px solid var(--light-gray);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.5rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon-wrap { transform: scale(1.08); }
.service-icon-wrap svg { width: 28px; height: 28px; color: #fff; }
.service-name {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 600; color: var(--dark); margin-bottom: .65rem;
}
.service-desc { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-visual {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-radius: var(--radius); padding: 3.5rem 3rem; color: #fff; text-align: center;
}
.why-big-number {
  font-family: var(--font-heading); font-size: 8rem;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .5rem;
}
.why-big-label { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.why-quote {
  font-family: var(--font-heading); font-size: 1.2rem; font-style: italic;
  color: rgba(255,255,255,.85); line-height: 1.6;
  border-top: 1px solid rgba(212,175,55,.3); padding-top: 2rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: #fff; border-radius: 10px;
  border: 1px solid var(--light-gray); transition: all var(--transition);
}
.why-item:hover { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.why-check {
  width: 36px; height: 36px; min-width: 36px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.why-check svg { width: 16px; height: 16px; color: #fff; }
.why-item-text strong { display: block; font-weight: 600; font-size: .95rem; color: var(--dark); margin-bottom: .2rem; }
.why-item-text span { font-size: .82rem; color: var(--gray); }

/* ===== PARTNERS ===== */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.partner-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid var(--light-gray); transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.partner-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(11,93,59,.08), rgba(212,175,55,.08));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.partner-icon svg { width: 28px; height: 28px; color: var(--emerald); }
.partner-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--dark); }
.partner-tag { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 1rem;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
  position: absolute; inset: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem 2rem; border: 1px solid var(--light-gray);
  position: relative; transition: all var(--transition);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--font-heading); font-size: 5rem;
  color: var(--gold); opacity: .2; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial-text {
  font-size: .9rem; color: var(--gray); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.author-city { font-size: .78rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M40 0l5.88 18.09L62.36 7.64l-10.45 16.48L70 28l-18.09 5.88L62.36 50.36 45.88 39.91 40 58l-5.88-18.09L17.64 50.36l10.45-16.48L10 28l18.09-5.88L17.64 23.64 34.12 34.09z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-label {
  display: inline-block;
  background: rgba(212,175,55,.2); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: #fff; margin-bottom: 1rem; line-height: 1.2;
}
.cta-title .accent { color: var(--gold); }
.cta-desc {
  color: rgba(255,255,255,.7); font-size: 1rem;
  max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7;
}

/* ===== HERO SMALL (sous-pages) ===== */
.hero-small {
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--emerald-dark) 0%, var(--emerald) 60%, #0d4a2e 100%);
  padding-top: calc(var(--topbar-height) + var(--navbar-height));
}
.hero-small::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M40 0l5.88 18.09L62.36 7.64l-10.45 16.48L70 28l-18.09 5.88L62.36 50.36 45.88 39.91 40 58l-5.88-18.09L17.64 50.36l10.45-16.48L10 28l18.09-5.88L17.64 23.64 34.12 34.09z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-small-content { position: relative; z-index: 1; padding: 3rem 1rem; }
.hero-small-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600;
  color: #fff; margin-bottom: .75rem;
}
.hero-small-title .accent { color: var(--gold); }
.hero-small-sub { font-size: .95rem; color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ===== HAJJ & OUMRA — CONTENT CARDS ===== */
.content-card {
  background: #fff; border-radius: var(--radius);
  padding: 3rem; border: 1px solid var(--light-gray); margin-bottom: 2rem;
}
.content-card h2 {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 600; color: var(--dark); margin-bottom: 1.25rem;
}
.content-card p { color: var(--gray); line-height: 1.8; font-size: .95rem; margin-bottom: 1rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-icon-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.content-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.content-icon svg { width: 28px; height: 28px; color: #fff; }

/* ===== PACKS ===== */
.packs { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pack-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--light-gray); overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pack-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pack-img {
  position: relative; height: 220px; overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
}
.pack-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.pack-card:hover .pack-img img { transform: scale(1.05); }
.pack-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .35rem .9rem; border-radius: 50px;
}
.pack-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.pack-body h3 {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-weight: 600; color: var(--dark); margin-bottom: .4rem;
}
.pack-meta { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; margin-bottom: 1.25rem; }
.pack-list { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.pack-list li {
  font-size: .88rem; color: var(--gray);
  padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.pack-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--emerald); font-weight: 700; font-size: .85rem;
}
.pack-price {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--emerald); margin-top: auto; margin-bottom: .25rem;
}
.pack-price small {
  display: block; font-family: var(--font-body);
  font-size: .75rem; font-weight: 400; color: var(--gray); margin-top: .1rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding: 0 0 0 2rem;
}
.process-steps::before {
  content: ''; position: absolute; left: 0;
  top: 24px; bottom: 24px; width: 2px;
  background: linear-gradient(to bottom, var(--emerald), var(--gold));
}
.process-step { display: flex; gap: 1.5rem; padding: 2rem 0; position: relative; }
.step-number {
  position: absolute; left: -3rem;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
  border: 3px solid var(--offwhite); flex-shrink: 0;
}
.step-content { padding-left: .5rem; }
.step-content h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 600; color: var(--dark); margin-bottom: .4rem;
}
.step-content p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ===== DOCUMENTS ===== */
.docs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.doc-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.1rem 1.25rem; background: #fff;
  border-radius: 8px; border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.doc-item:hover { border-color: var(--emerald); background: rgba(11,93,59,.02); }
.doc-item svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; }
.doc-item span { font-size: .88rem; font-weight: 500; color: var(--dark); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff; border-radius: 10px;
  border: 1px solid var(--light-gray); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--emerald); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  text-align: left; gap: 1rem;
}
.faq-question span { font-weight: 600; font-size: .93rem; color: var(--dark); }
.faq-question svg {
  width: 18px; height: 18px; color: var(--emerald);
  flex-shrink: 0; transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: .88rem; color: var(--gray); line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3rem; align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: var(--radius); padding: 3rem 2.5rem;
  color: #fff; position: sticky; top: calc(var(--topbar-height) + var(--navbar-height) + 20px);
}
.contact-info-card h2 {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 600; margin-bottom: .5rem;
}
.contact-info-card > p { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; line-height: 1.6; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-info-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem;
}
.contact-info-value { font-size: .88rem; color: rgba(255,255,255,.9); line-height: 1.6; }
.contact-info-value a { color: rgba(255,255,255,.9); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }
.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 2rem 0; }
.contact-hours-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem;
}
.contact-hours-item {
  display: flex; justify-content: space-between;
  font-size: .83rem; color: rgba(255,255,255,.75); margin-bottom: .4rem;
}
.contact-hours-item span:last-child { color: var(--gold); font-weight: 600; }
.iata-badge {
  display: inline-block; background: #1a2535; color: #fff;
  font-size: .75rem; padding: 6px 14px; border-radius: 4px;
  letter-spacing: .08em; margin-top: 10px;
}

/* Form */
.form-card {
  background: #fff; border-radius: var(--radius);
  padding: 3rem; border: 1px solid var(--light-gray);
}
.form-card h2 {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 600; color: var(--dark); margin-bottom: .5rem;
}
.form-card > p { font-size: .88rem; color: var(--gray); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--dark); letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--light-gray); border-radius: 8px;
  font-family: var(--font-body); font-size: .9rem; color: var(--dark);
  background: var(--offwhite); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(11,93,59,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: #fff; border: none; border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem;
  font-weight: 600; cursor: pointer; letter-spacing: .04em;
  transition: all var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,93,59,.3); }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--emerald); }
.form-success svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { font-size: .88rem; color: var(--gray); }

/* ===== PHONES SECTION ===== */
.phones-section { background: var(--bg-alt); padding: 80px 0; }
.phones-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 40px;
}
.phone-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px; padding: 18px 20px;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.phone-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.phone-icon { font-size: 22px; }
.phone-card .label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #888; margin-bottom: 3px;
}
.phone-card .number { font-weight: 600; font-size: .95rem; }

/* ===== MAP SECTION ===== */
.map-section { padding: 80px 0; }
.map-wrap {
  border-radius: 12px; overflow: hidden; height: 380px;
  margin-top: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: whatsapp-pulse 2.5s infinite; z-index: -1;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-btn svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%); background: var(--dark); color: #fff;
  padding: .45rem .9rem; border-radius: 6px; font-size: .78rem;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); border: 6px solid transparent;
  border-left-color: var(--dark); border-right-width: 0;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .nav-logo-main { color: #fff; font-size: 1.35rem; }
.footer-brand .nav-logo-sub  { color: var(--gold); }
.footer-mission-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.footer-mission { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.footer-social:hover svg { color: var(--dark); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 600; color: #fff; margin-bottom: 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-copy span { color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .contact-layout        { grid-template-columns: 1fr; }
  .contact-info-card     { position: static; }
  .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .grid-2, .grid-3       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .section       { padding: 4rem 0; }
  .packs         { padding: 4rem 0; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .phones-section, .map-section { padding: 50px 0; }
  .map-wrap      { height: 260px; }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 30px;
  }
  .topbar-left   { display: none; }
  .topbar-right  { justify-content: center; width: 100%; gap: 1rem; }
  .topbar-divider { display: none; }
  .topbar-right a { font-size: 0.68rem; }
}

@media (max-width: 600px) {
  .phones-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .values-grid   { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .hero-buttons  { flex-direction: column; align-items: center; }
  .gallery-grid  { grid-template-columns: 1fr; }
}