/*
Theme Name: ANABÉ Spécialiste du Sourcil
Theme URI: https://anabesourcils.com
Author: JC Marketing
Author URI: https://jc-digitalmarketing.com
Description: Custom theme for ANABÉ — Spécialiste du Sourcil à Rennes. Nanoblading, épilation sur mesure et teinture de sourcils.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anabe
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   ANABÉ Spécialiste du Sourcil — Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #142802;
  --orange: #f47f40;
  --orange-hover: #e06d30;
  --gray: #666;
  --gray-light: #999;
  --sage: #e7eae3;
  --sage-light: #f5f3ef;
  --cream: #faf7f2;
  --copper: #9c5530;
  --copper-dark: #7d4326;
  --brown: #5c3a20;
  --brown-dark: #24170f;
  --brown-section: #3d2415;
  --white: #ffffff;
  --star: #f5b301;
  --border: #e5e0d8;
  --max-width: 1200px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.75;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Marcellus', serif;
  color: var(--copper-dark);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.3rem; }

a { color: var(--orange); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--orange-hover); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
}
.btn-orange:hover {
  background: var(--orange-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}
.btn-secondary:hover {
  background: var(--copper);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brown-dark);
}

.btn-whatsapp {
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
}
.btn-whatsapp:hover {
  background: var(--orange-hover);
  color: var(--white);
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(80px, 7vw, 130px);
}

.header-logo {
  display: flex;
  width: clamp(68px, 6vw, 118px);
  height: clamp(68px, 6vw, 118px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav > a,
.header-nav .dropdown-toggle {
  color: var(--brown);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav > a:hover,
.header-nav .dropdown-toggle:hover {
  color: var(--orange);
}

.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.65em;
  opacity: 0.5;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 8px 0;
  z-index: 200;
  border: 1px solid var(--border);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}
.dropdown-menu a {
  color: var(--brown);
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--orange); }
.dropdown:hover .dropdown-menu { display: block; }

.header-cta .btn {
  padding: 12px 28px;
  font-size: 0.78rem;
  border-radius: 6px;
  background: var(--copper);
  color: var(--white);
}
.header-cta .btn:hover { background: var(--copper-dark); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brown);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ========== USP BAR ========== */
.usp-bar {
  background: var(--copper-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.usp-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.usp-item { display: flex; align-items: center; gap: 6px; }
.usp-item .icon { color: var(--orange); }

/* ========== HERO — Split Layout ========== */
.hero {
  background: var(--cream);
  padding: 60px 0;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hero-left h1 {
  margin-bottom: 16px;
  color: var(--copper-dark);
}

.hero-left p {
  color: var(--copper-dark);
  margin-bottom: 24px;
  font-size: 1rem;
}

.hero-left .hero-image {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Hero right — reviews grid */
.hero-right h3 {
  color: var(--gray-light);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.hero-google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-google-rating .g-icon {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4285f4;
  font-family: 'Work Sans', sans-serif;
}
.hero-google-rating .score {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
}
.hero-google-rating .stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; }
.hero-google-count {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.hero-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.hero-review-card:hover { box-shadow: var(--shadow-md); }

.hero-review-card .stars {
  color: var(--star);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero-review-card .text {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.hero-review-card .author {
  font-weight: 500;
  color: var(--green-dark);
  font-size: 0.85rem;
}

/* ========== Section Spacing ========== */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray);
  font-style: italic;
}

/* ========== THREE PILLARS — Dark brown bg ========== */
.pillars-section {
  background: var(--brown-section);
  padding: 80px 0;
  color: var(--white);
}

.pillars-section .section-header h2 {
  color: var(--white);
  font-size: 2.4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-card { text-align: center; }

.pillar-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  color: var(--white);
}

.pillar-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.pillar-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== 5-STEP PROCESS — Dark bg ========== */
.steps-section {
  background: var(--brown-section);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/approche.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.steps-section .container { position: relative; z-index: 1; }

.steps-section .section-header h2 { color: var(--white); }

.steps-list {
  max-width: 640px;
  margin: 0 auto;
}

.step-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.step-row:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.4;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-content .step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.step-content .step-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.4;
}

/* ========== ABOUT — "Sur Anabé" ========== */
.about-section {
  background: var(--cream);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.about-text h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.about-text h3 {
  color: var(--copper);
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-top: 20px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.75;
  font-size: 0.94rem;
}

/* ========== PRICE TABLE ========== */
.price-section { padding: 80px 0; background: var(--white); }

.price-star {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.price-table-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead th {
  background: var(--copper);
  color: var(--white);
  padding: 14px 24px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}
.price-table thead th:last-child { text-align: center; width: 100px; }

.price-table .category-row td {
  background: var(--cream);
  padding: 10px 24px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.price-table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid #f0ece6;
  font-size: 0.92rem;
  vertical-align: middle;
}

.price-table tbody tr:hover { background: var(--cream); }

.price-name {
  font-weight: 500;
  color: var(--green-dark);
}
.price-duration {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-left: 8px;
}
.price-amount {
  text-align: center;
  font-family: 'Marcellus', serif;
  font-size: 1.15rem;
  color: var(--orange);
  font-weight: 400;
}

.price-info-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  background: transparent;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  margin-left: 8px;
  vertical-align: middle;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
}
.price-info-toggle::before {
  content: '';
  position: absolute;
  inset: -12px;
}
.price-info-toggle:hover {
  background: var(--copper);
  color: var(--white);
}
.price-info-toggle.active {
  background: var(--copper);
  color: var(--white);
}

.price-info-detail {
  display: none;
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--brown);
}
.price-info-detail.open {
  display: block;
}
.price-info-detail em {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--gray-light);
}

.price-cta {
  text-align: center;
  margin-top: 36px;
}

/* ========== REVIEWS (carousel on home) ========== */
.reviews-section { padding: 60px 0; background: var(--white); }

.reviews-rating { text-align: center; margin-bottom: 30px; }
.reviews-rating .score {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  line-height: 1;
}
.reviews-rating .stars { color: var(--star); font-size: 1.3rem; letter-spacing: 2px; margin: 4px 0; }
.reviews-rating .count { color: var(--gray-light); font-size: 0.98rem; }

.carousel-wrapper { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; }
.carousel-track { display: flex; transition: transform 0.5s ease; }

.review-card { min-width: 50%; padding: 0 10px; flex-shrink: 0; }
.review-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  height: 100%;
}

.review-stars { color: var(--star); margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 1px; }
.review-text { font-style: italic; color: var(--gray); margin-bottom: 14px; line-height: 1.65; font-size: 0.9rem; }
.review-author { font-weight: 500; color: var(--green-dark); font-size: 0.88rem; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d8d4ce; border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.carousel-dot.active { background: var(--orange); }

.reviews-cta { text-align: center; margin-top: 28px; }
.reviews-cta a { font-size: 0.88rem; text-decoration: underline; }

/* ========== FAQ — Dark background ========== */
.faq-section {
  background: var(--brown-section);
  padding: 80px 0;
  color: var(--white);
}

.faq-section .section-header h2 { color: var(--white); font-size: 2.4rem; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.faq-question:hover { opacity: 0.8; }

.faq-question::before {
  content: '+';
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
}

.faq-item.open .faq-question::before {
  content: '\2212';
}

.faq-question::after { content: none; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== CTA BANNER — Light bg ========== */
.cta-banner {
  background: var(--cream);
  text-align: center;
  padding: 70px 24px;
}
.cta-banner h2 { color: var(--green-dark); margin-bottom: 14px; }
.cta-banner p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.contact-item { padding: 30px 20px; }
.contact-item .icon { font-size: 2rem; color: var(--orange); margin-bottom: 10px; }
.contact-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--green-dark);
}
.contact-item p, .contact-item a { color: var(--gray); font-size: 0.92rem; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Marcellus', serif;
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  font-size: 0.86rem;
}
.footer-col a:hover { color: var(--orange); }

.footer-newsletter p { font-size: 0.84rem; margin-bottom: 10px; }
.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.86rem;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter .btn { width: 100%; padding: 10px; font-size: 0.82rem; }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========== SERVICE PAGE ========== */
.service-hero { background: var(--cream); padding: 60px 0; }
.service-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-hero-text h1 { margin-bottom: 12px; }
.service-price-badge {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
}
.service-hero-text p { color: var(--gray); margin-bottom: 24px; }
.service-hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.service-content h2 { margin-bottom: 16px; }
.service-content h3 { margin: 32px 0 12px; color: var(--copper); }
.service-content p { margin-bottom: 16px; color: var(--gray); }
.service-content ul { list-style: none; padding: 0; margin-bottom: 20px; }
.service-content ul li { padding: 6px 0 6px 24px; position: relative; }
.service-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* ========== RESULTS GALLERY (Before/After) ========== */
.results-section {
  padding: 60px 0;
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}

/* Single photo: center it */
.results-grid .result-card:only-child {
  grid-column: 1 / -1;
  max-width: 388px;
}

/* Odd last photo: center it across full width */
.results-grid .result-card:last-child:nth-child(odd):not(:first-child) {
  grid-column: 1 / -1;
  max-width: 388px;
}

.result-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.result-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ========== REVIEWS WALL (Avis page) ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reviews-grid .review-card { min-width: unset; padding: 0; }

/* ========== PRIVACY ========== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { margin: 32px 0 12px; font-size: 1.35rem; }
.legal-content p { margin-bottom: 16px; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 778px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .header-nav.open > a,
  .header-nav.open .dropdown-toggle {
    padding: 12px 16px;
    color: var(--brown);
  }
  .header-nav.open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--cream);
    border-radius: 6px;
  }

  .section { padding: 50px 0; }
  .hero { padding: 40px 0; }
  .hero-reviews-grid { grid-template-columns: 1fr; }
  .usp-bar-inner { gap: 14px; font-size: 0.72rem; }
  .usp-hide-mobile { display: none; }

  .review-card { min-width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .faq-question { font-size: 0.88rem; text-align: left; justify-content: flex-start; }
  .faq-answer p { text-align: left; }
}

@media (max-width: 480px) {
  .section { padding: 36px 0; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  .btn { padding: 12px 24px; font-size: 0.84rem; }
}

/* ========== CONTACT PAGE ========== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
}
.contact-info-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.contact-info-item .icon {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  padding-top: 2px;
}
.contact-info-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contact-info-item p,
.contact-info-item a {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form {
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group .required {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--green-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(156, 85, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
}

.contact-success {
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-success h3 {
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-error {
  background: #fff0f0;
  color: #c00;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border: 1px solid #fcc;
}

@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 778px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
