/* ============================================
   HOUSEKEEPER.MA — French Version
   Color palette matched to original site
   ============================================ */

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

:root {
  /* Original site colors */
  --primary: #C6973B;          /* Gold/amber accent — buttons, labels, links */
  --primary-dark: #A87D2A;     /* Darker gold for hover */
  --primary-light: #F5EFE0;    /* Very light gold tint for backgrounds */
  --dark: #222222;             /* Charcoal — headings, navbar, footer */
  --dark-soft: #333333;        /* Slightly lighter dark */
  --text: #555555;             /* Body text gray */
  --text-light: #888888;       /* Muted text */
  --border: #E8E8E8;           /* Borders, dividers */
  --bg: #FFFFFF;               /* Page background */
  --bg-alt: #F8F7F4;           /* Alternate section background */
  --bg-dark: #222222;          /* Dark section / footer bg */
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

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

/* --- UTILITY --- */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar-item svg { width: 14px; height: 14px; opacity: 0.5; }
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--primary); }
.top-bar-right { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { color: white; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.nav-dropdown a:hover { background: var(--primary-light); color: var(--primary); }

.nav-cta-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta-btn:hover { background: var(--primary-dark) !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  margin: 5px 0; border-radius: 2px; transition: 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 2000;
  padding: 80px 30px 40px; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 0; font-size: 1.1rem; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--border); display: block;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mob-cta {
  margin-top: 20px; background: var(--primary); color: white;
  text-align: center; border-radius: var(--radius); border: none; padding: 16px;
}
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; font-family: inherit;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,151,59,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #111; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--bg-alt); }

/* ============================================
   PAGE BANNER (subpages)
   ============================================ */
.page-banner {
  background: var(--dark);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h-4v-4h4v4zm0-20h-4v4h4V0zM0 20h4v-4H0v4z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
}
.page-banner .breadcrumb {
  margin-top: 18px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-banner .breadcrumb a:hover { color: var(--primary); }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--primary); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text);
  font-size: 1.02rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2f2b24 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,151,59,0.12);
  border: 1px solid rgba(198,151,59,0.25);
  color: var(--primary);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15; font-weight: 700; margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 em { color: var(--primary); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem; max-width: 480px; margin-bottom: 34px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-lg); position: relative;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--dark); margin-bottom: 24px;
}
.hero-step { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.hero-step-num {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 8px; background: var(--primary-light);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
}
.hero-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.hero-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.hero-float-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--primary); color: white;
  border-radius: 10px; padding: 12px 20px;
  font-weight: 800; font-size: 0.82rem;
  box-shadow: 0 6px 25px rgba(198,151,59,0.4);
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section { padding: 90px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 32px 26px; border: 1px solid transparent;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(198,151,59,0.12);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--primary);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  color: var(--primary); font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 15px; height: 15px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 90px 0; background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 28px;
}
.about-img-box .quote {
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-style: italic; line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.about-stat-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px 26px; box-shadow: var(--shadow-md); text-align: center;
}
.about-stat-badge .num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  font-weight: 700; color: var(--primary); line-height: 1;
}
.about-stat-badge .lbl { font-size: 0.78rem; color: var(--text-light); font-weight: 600; margin-top: 4px; }

.about-text .section-title { max-width: 420px; }
.about-text > p { margin-bottom: 28px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 32px; }
.value-item { display: flex; gap: 10px; align-items: flex-start; }
.value-check {
  width: 26px; height: 26px; min-width: 26px; border-radius: 6px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.value-check svg { width: 13px; height: 13px; }
.value-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 1px; }
.value-item p { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-section { padding: 90px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 30px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all 0.3s; text-align: center;
}
.feature-card:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.feature-icon-wrap {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon-wrap svg { width: 22px; height: 22px; }
.feature-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.86rem; color: var(--text); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 90px 0; background: var(--bg-alt); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer; background: none; border: none; width: 100%; text-align: left;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; color: var(--dark); padding: 0;
}
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--white); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all 0.3s; font-weight: 400;
}
.faq-item.active .faq-toggle {
  background: var(--primary); color: var(--white); transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem; color: var(--text); line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 200px; padding-top: 12px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  padding: 90px 0; text-align: center;
  background: linear-gradient(135deg, var(--dark), #2f2b24);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(198,151,59,0.06);
  top: -200px; right: -100px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white); margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--dark); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.92rem;
  color: var(--dark); background: var(--bg-alt); transition: border var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-card {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--dark); margin-bottom: 24px;
}
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.85rem; color: var(--text); line-height: 1.5; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.55); padding: 70px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 48px;
}
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-weight: 700; }
.footer p { font-size: 0.86rem; line-height: 1.7; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--primary); }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.86rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-row {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; font-size: 0.86rem;
}
.footer-contact-row svg { width: 15px; height: 15px; min-width: 15px; margin-top: 3px; color: var(--primary); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.86rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 999; transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   CASE STUDIES / RÉALISATIONS
   ============================================ */
.case-section { padding: 90px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
  margin-bottom: 16px;
}
.case-tag svg { width: 11px; height: 11px; }
.case-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.case-card p { font-size: 0.88rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.case-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.case-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.case-meta-item svg { width: 13px; height: 13px; color: var(--primary); flex-shrink: 0; }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

/* Placeholder box — remove the .img-ph div and add <img> when you have your photo */
.img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; background: #f0ece5;
  border: 2px dashed #d2c5b2; border-radius: inherit;
  z-index: 1; pointer-events: none;
}
.img-ph svg { width: 42px; height: 42px; color: #c4b09a; }
.img-ph .ph-file {
  font-size: 0.78rem; font-weight: 700; color: #b09478;
  font-family: monospace; background: #e5ddd2;
  padding: 4px 10px; border-radius: 4px;
}
.img-ph .ph-size { font-size: 0.72rem; color: #c0b09e; }

/* About image box — real <img> support */
.about-img-box { position: relative; overflow: hidden; }
.about-img-box > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit; z-index: 0;
}
/* Dark gradient overlay for readability (active only with a real image) */
.about-img-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 2; pointer-events: none;
}
.about-img-box:has(.img-ph)::after { display: none; }
.about-img-box .quote { position: relative; z-index: 3; }

/* Hero background image placeholder */
.hero-img-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; pointer-events: none;
  border: 2px dashed rgba(255,255,255,0.08);
}
.hero-img-ph svg { width: 44px; height: 44px; color: rgba(255,255,255,0.2); }
.hero-img-ph .ph-file { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.25); font-family: monospace; }
.hero-img-ph .ph-size { font-size: 0.72rem; color: rgba(255,255,255,0.15); }
/* When you replace the placeholder with a real image: */
.hero > img.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.18; z-index: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-wrapper { display: none; }
  .hero { min-height: 60vh; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .top-bar-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
