/* ==========================================================================
   Pierre-Alexandre Expert - Psychologue & Psychanalyste
   Design System & Main Stylesheet
   Follows docs/design.md guidelines: Mobile-first, responsive, accessible.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary: #4a7c59;
  --primary-hover: #3d6849;
  --primary-light: #eaf1ec;
  --primary-dark: #1c2d24;
  
  --accent: #d4a359;
  --accent-light: #fbf5eb;
  --accent-hover: #c29247;
  
  --neutral-dark: #202b25;
  --neutral-body: #47544c;
  --neutral-light: #f8faf7;
  --neutral-card: #ffffff;
  --neutral-border: #e2e8e4;
  
  /* Status & Feedback */
  --success: #2e7d32;
  --success-bg: #edf7ed;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(28, 45, 36, 0.04);
  --shadow-md: 0 8px 24px rgba(28, 45, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 45, 36, 0.12);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-body);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

section {
  padding: 4.5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-body);
}

/* --------------------------------------------------------------------------
   4. COMPONENTS & UTILITIES
   -------------------------------------------------------------------------- */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-white {
  background-color: #ffffff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

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

.btn-full {
  width: 100%;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  border: 1px solid rgba(212, 163, 89, 0.3);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 228, 0.8);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neutral-dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Modal */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #f4f7f4 0%, #eaf1ec 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-badge-container .section-tag,
.hero-badge-container .badge-pill {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
}


.hero-title {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  color: var(--neutral-dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--neutral-body);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
    width: auto;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-border);
}

@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--neutral-body);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-floating-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
  z-index: 2;
}

@media (max-width: 576px) {
  .hero-floating-card {
    left: 1rem;
    right: 1rem;
    bottom: -1.25rem;
    max-width: none;
  }
}

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

.floating-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--neutral-body);
}

/* --------------------------------------------------------------------------
   7. REASSURANCE & DIPLOMAS BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 2.5rem 0;
}

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

@media (min-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-info h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. ABOUT & MANIFESTO SECTION
   -------------------------------------------------------------------------- */
.about {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-container {
  position: relative;
}

.about-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.quote-card {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 340px;
}

@media (max-width: 576px) {
  .quote-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
    max-width: 100%;
  }
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.about-description {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.manifesto-box {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.manifesto-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.manifesto-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.manifesto-tag {
  background-color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  border: 1px solid var(--neutral-border);
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin-bottom: 2rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.credentials-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services {
  background-color: var(--neutral-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--neutral-card);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--neutral-body);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   10. LOCATIONS / CABINETS SECTION
   -------------------------------------------------------------------------- */
.locations {
  background-color: #ffffff;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card {
  background-color: var(--neutral-light);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--neutral-border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary);
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.location-badge {
  background-color: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.location-details {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.975rem;
}

.location-details svg {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. FAQ SECTION (GEO OPTIMIZED)
   -------------------------------------------------------------------------- */
.faq {
  background-color: var(--neutral-light);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--neutral-card);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--neutral-body);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. CONTACT & APPOINTMENT SECTION (PREMIUM DESIGN)
   -------------------------------------------------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--neutral-light) 0%, #edf3ef 100%);
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

/* Left Sidebar Card */
.contact-sidebar-card {
  background: linear-gradient(145deg, #1c2d24 0%, #264233 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(28, 45, 36, 0.18);
  border: 1px solid rgba(212, 163, 89, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-sidebar-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 163, 89, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  background-color: rgba(212, 163, 89, 0.2);
  color: var(--accent);
  border: 1px solid rgba(212, 163, 89, 0.4);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.contact-sidebar-top h3 {
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.contact-sidebar-top p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.975rem;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}

.contact-sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-sidebar-item {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.contact-sidebar-item:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-sidebar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 163, 89, 0.25) 0%, rgba(74, 124, 89, 0.3) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-sidebar-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-sidebar-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-sidebar-locations {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-sidebar-locations h4 {
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.location-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.loc-pin {
  font-size: 1.1rem;
}

.location-mini-item strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.location-mini-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Right Form Wrapper Card */
.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 16px 40px rgba(28, 45, 36, 0.08);
  border: 1px solid var(--neutral-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.form-title {
  font-size: 1.75rem;
  color: var(--neutral-dark);
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.975rem;
  color: var(--neutral-body);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-border);
  background-color: #ffffff;
  color: var(--neutral-dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
}

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

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.form-notice {
  font-size: 0.8rem;
  color: var(--neutral-body);
  margin-top: 0.75rem;
  text-align: center;
}

.form-success {
  display: none;
  background-color: var(--success-bg);
  color: var(--success);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 50, 0.3);
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 400px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
