/* ═══════════════════════════════════════════
   MAROCLY - Styles CSS Sombre Premium
   Match du design React original
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0f0f1a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --bg-section: #f5f0e8;
  --bg-section-alt: #1a1a2e;
  --primary: #e8913a;
  --primary-hover: #f0a04d;
  --primary-light: rgba(232,145,58,0.15);
  --white: #ffffff;
  --text: #e8e4dc;
  --text-muted: rgba(255,255,255,0.55);
  --text-dark: #2d2a26;
  --border: rgba(255,255,255,0.08);
  --border-dark: rgba(0,0,0,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-serif { font-family: var(--font-serif); }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,26,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.3px;
}

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

.nav-desktop { display: flex; align-items: center; gap: 4px; }

.nav-desktop a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-desktop a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-desktop a.active { color: var(--primary); font-weight: 500; }

.header-cta {
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.header-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

.header-tel {
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,26,0.4) 0%, rgba(15,15,26,0.7) 50%, rgba(15,15,26,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(232,145,58,0.15);
  border: 1px solid rgba(232,145,58,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero h1 span { color: var(--primary); font-style: italic; }

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══ HERO STATS / COMPTEURS ═══ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  padding: 0 20px;
}

.hero-stat {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}

.hero-stat:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  font-family: var(--font-serif);
}

.hero-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,145,58,0.3); }

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

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

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); color: var(--white); }

/* ═══ SECTIONS ═══ */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-dark); }
.section-light { background: var(--bg-section); }
.section-light * { color: var(--text-dark); }
.section-light .section-title h2 { color: var(--text-dark); }
.section-light .section-title p { color: rgba(45,42,38,0.6); }

.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 0.95rem; }

/* ═══ GRIDS ═══ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ═══ CARD (DARK) ═══ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.12);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 24px; }
.card-body h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; font-weight: 500; }
.card-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.card-badge-red { background: #ef4444; }
.card-badge-blue { background: #3b82f6; }

/* ═══ CARD (LIGHT SECTION) ═══ */
.section-light .card {
  background: var(--white);
  border: 1px solid var(--border-dark);
}

.section-light .card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
}

.section-light .card-body h3 { color: var(--text-dark); }
.section-light .card-body p { color: rgba(45,42,38,0.6); }

/* ═══ TAGS ═══ */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.section-light .tag {
  background: rgba(232,145,58,0.1);
}

/* ═══ SERVICE CARD ═══ */
.service-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232,145,58,0.3);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-weight: 500; }
.service-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.service-card .link { color: var(--primary); font-size: 0.78rem; font-weight: 500; margin-top: 10px; display: inline-block; }
.service-card .link:hover { text-decoration: underline; }

/* ═══ PACK CARD / PRICING ═══ */
.pack-card {
  position: relative;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pack-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232,145,58,0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.pack-card.featured { border-color: rgba(232,145,58,0.5); background: rgba(232,145,58,0.04); }

.pack-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
}

.pack-name { font-size: 1.2rem; color: var(--white); margin-bottom: 4px; font-weight: 600; }
.pack-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.pack-price { font-size: 2.4rem; font-weight: 600; color: var(--primary); font-family: var(--font-serif); }
.pack-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.pack-price .currency { font-size: 1rem; color: var(--primary); }

.pack-features { list-style: none; margin: 24px 0; }
.pack-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pack-features li::before { content: '✓'; color: #4ade80; font-weight: 700; }
.pack-features li.not { color: var(--text-muted); }
.pack-features li.not::before { content: '−'; color: #ef4444; }

.pack-btn {
  width: 100%;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
}

.pack-btn:hover, .pack-btn.featured-btn { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ═══ GUIDE CARD ═══ */
.guide-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.guide-card:hover { background: var(--bg-card-hover); border-color: rgba(232,145,58,0.3); }

.guide-img {
  width: 180px;
  height: 130px;
  min-width: 180px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.guide-content h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.guide-content p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.guide-meta { font-size: 0.72rem; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══ TESTIMONIAL ═══ */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.testimonial:hover { background: var(--bg-card-hover); border-color: rgba(232,145,58,0.3); }

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--primary);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

/* ═══ FORM ═══ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group label .required { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,145,58,0.12);
}

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

.form-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* Forms in light sections */
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
  background: var(--white);
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus {
  border-color: var(--primary);
}

/* ═══ ALERTS ═══ */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 0.88rem; }
.alert-success { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.alert-error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

/* ═══ BIEN DETAIL ═══ */
.bien-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.bien-gallery-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.bien-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.bien-gallery-thumbs img {
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  width: 100%;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  border: 2px solid transparent;
}

.bien-gallery-thumbs img:hover, .bien-gallery-thumbs img.active { opacity: 1; border-color: var(--primary); }

.bien-info-panel {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.bien-info-panel h1 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; font-family: var(--font-serif); }
.bien-info-panel .price { font-size: 2rem; font-weight: 600; color: var(--primary); margin: 10px 0; font-family: var(--font-serif); }
.bien-info-panel .loc { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }

.bien-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.bien-detail-box { background: rgba(255,255,255,0.04); padding: 16px; border-radius: var(--radius-sm); text-align: center; border: 1px solid var(--border); }
.bien-detail-box .val { font-weight: 600; color: var(--white); font-size: 1.1rem; }
.bien-detail-box .lbl { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══ FILTERS ═══ */
.filters-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.filter-pill {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.filter-pill:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.filter-pill.active { background: var(--white); color: var(--bg-dark); border-color: var(--white); font-weight: 500; }

/* Light section filters */
.section-light .filter-pill {
  border-color: var(--border-dark);
  color: rgba(45,42,38,0.6);
}
.section-light .filter-pill:hover { border-color: rgba(0,0,0,0.2); color: var(--text-dark); }
.section-light .filter-pill.active { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }

/* ═══ ACCORDION FAQ ═══ */
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.accordion-header {
  padding: 18px 22px;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
}
.accordion-header:hover { background: rgba(255,255,255,0.02); }
.accordion-header::after { content: '+'; font-size: 1.2rem; color: var(--primary); font-weight: 300; }
.accordion-header.open::after { content: '−'; }
.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-body.open { padding: 0 22px 18px; max-height: 400px; }

/* ═══ CONTACT PAGE ═══ */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-info-item h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ═══ TEAM / ABOUT ═══ */
.team-card { text-align: center; padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.team-card:hover { background: var(--bg-card-hover); border-color: rgba(232,145,58,0.3); transform: translateY(-4px); }
.team-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 2px solid var(--primary); }
.team-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.team-card .role { font-size: 0.78rem; color: var(--primary); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ═══ TIMELINE ═══ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 32px; padding-left: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.timeline-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: linear-gradient(135deg, rgba(232,145,58,0.1) 0%, rgba(15,15,26,1) 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; font-weight: 400; }
.cta-section p { color: var(--text-muted); margin-bottom: 28px; }

/* ═══ FOOTER ═══ */
.footer {
  background: #0a0a14;
  color: var(--text-muted);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand p { font-size: 0.78rem; line-height: 1.7; color: var(--text-muted); }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: var(--text-muted);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer h4 { color: var(--white); font-size: 0.85rem; margin-bottom: 16px; font-weight: 500; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.78rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }

.footer-newsletter input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter button {
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-body);
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--primary-hover); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ═══ PROCESS STEPS (Service Detail) ═══ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover { background: var(--bg-card-hover); border-color: rgba(232,145,58,0.3); }
.process-step .step-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.process-step h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.process-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

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

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

/* ═══ FLOATING BUTTONS ═══ */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.floating-btn:hover { transform: scale(1.1); }

.floating-btn.phone { background: var(--primary); color: var(--white); }
.floating-btn.whatsapp { background: #25d366; color: var(--white); }

/* ═══ 404 PAGE ═══ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.error-code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.2;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bien-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .mobile-toggle { display: block; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .guide-card { flex-direction: column; }
  .guide-img { width: 100%; height: 180px; }
  .service-card { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .section { padding: 60px 0; }
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.5rem; }

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

  .bien-gallery-main { height: 260px; }

  .mobile-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,15,26,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a.active { color: var(--primary); background: rgba(232,145,58,0.08); }
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(232,145,58,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
