/* ============================================
   COUNSELING & FAMILY CENTERED SERVICES INC.
   Modern Vibrant Health Site
   ============================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --charcoal: #1C1C1E;
  --charcoal-deep: #111113;
  --charcoal-mid: #2C2C2E;
  --charcoal-light: #3A3A3C;
  --coral: #F97066;
  --coral-light: #FF8A80;
  --coral-dark: #E8554A;
  --coral-pale: #FFF0EE;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F7;
  --gray-100: #EEEEEE;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-600: #6E6E73;
  --gray-800: #3A3A3C;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(28,28,30,0.08);
  --shadow-md: 0 4px 20px rgba(28,28,30,0.10);
  --shadow-lg: 0 12px 40px rgba(28,28,30,0.14);
  --shadow-xl: 0 20px 60px rgba(28,28,30,0.18);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.label-line {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--white);
}

.text-coral {
  color: var(--coral);
}

.text-coral-light {
  color: var(--coral-light);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249,112,102,0.35);
}

.btn--primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,112,102,0.45);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.btn--outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
}

.btn--nav:hover {
  background: var(--coral-dark);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.site-header.scrolled .logo-text {
  color: var(--charcoal);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 10px;
  position: relative;
  transform: rotate(-8deg);
  transition: transform var(--transition-base);
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--white);
  border-radius: 4px;
  transform: rotate(8deg);
}

.logo:hover .logo-mark {
  transform: rotate(0deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition-base);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.site-header.scrolled .main-nav a {
  color: var(--charcoal);
}

.site-header.scrolled .main-nav a:hover {
  color: var(--coral);
  background: var(--coral-pale);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.scrolled .hamburger {
  background: var(--charcoal);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,30,0.92) 0%,
    rgba(28,28,30,0.70) 50%,
    rgba(249,112,102,0.30) 100%
  );
}

/* Geometric shapes */
.geo {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.geo--circle1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(249,112,102,0.2);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.geo--rect1 {
  width: 120px;
  height: 120px;
  background: var(--coral);
  opacity: 0.12;
  bottom: 15%;
  right: 8%;
  transform: rotate(35deg);
  animation: float 6s ease-in-out infinite reverse;
}

.geo--dotgrid {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(249,112,102,0.4) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  bottom: 25%;
  right: 2%;
  animation: float 7s ease-in-out infinite;
}

.geo--triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(249,112,102,0.15);
  top: 20%;
  right: 15%;
  transform: rotate(-20deg);
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,112,102,0.15);
  border: 1px solid rgba(249,112,102,0.3);
  color: var(--coral-light);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--coral);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-down span {
  width: 4px;
  height: 10px;
  background: var(--coral);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---- SERVICES ---- */
.services {
  background: var(--gray-50);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--coral));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--coral-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

.card-accent {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.card-accent .service-title {
  color: var(--white);
}

.card-accent p {
  color: rgba(255,255,255,0.65);
}

.card-accent .service-icon {
  background: rgba(249,112,102,0.2);
}

.card-accent:hover .service-icon {
  background: var(--coral);
}

/* ---- ABOUT ---- */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.about-visual {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--coral);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  top: -30px;
  right: -30px;
  z-index: 1;
}

.about-stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 3;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.about-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.value-icon {
  width: 28px;
  height: 28px;
  background: var(--coral-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

/* ---- APPROACH ---- */
.approach {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.approach-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(249,112,102,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(249,112,102,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.approach-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.approach-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.approach-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.approach-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.approach-list span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.approach-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.approach-visual img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.approach-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(249,112,102,0.25);
  top: -60px;
  left: -60px;
  pointer-events: none;
  z-index: 1;
}

.approach-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -20px;
  right: -20px;
  background-image: radial-gradient(circle, rgba(249,112,102,0.5) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 1;
}

.label-line--light {
  background: var(--coral-light);
}

/* ---- COMMUNITY ---- */
.community {
  background: var(--white);
  position: relative;
}

.community::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--coral-pale);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.community-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.community-card.card--coral {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.community-card.card--coral h3 {
  color: var(--white);
}

.community-card.card--coral p {
  color: rgba(255,255,255,0.8);
}

.community-icon {
  width: 72px;
  height: 72px;
  background: var(--coral-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.community-card:hover .community-icon {
  background: var(--coral);
  color: var(--white);
}

.community-card.card--coral .community-icon {
  background: rgba(255,255,255,0.2);
}

.community-card.card--coral .community-icon.light {
  color: var(--white);
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.community-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- CTA ---- */
.cta {
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-shape1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--coral);
  opacity: 0.06;
  border-radius: 50%;
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.cta-shape2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--coral);
  opacity: 0.05;
  border-radius: var(--radius-lg);
  bottom: -80px;
  right: 5%;
  transform: rotate(25deg);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-content {
  flex: 1;
  max-width: 560px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact {
  background: var(--gray-50);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--coral);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249,112,102,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--coral-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--coral);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- MAP ---- */
.map-section {
  position: relative;
}

.map-section iframe {
  display: block;
  filter: grayscale(30%);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.map-pin {
  filter: drop-shadow(0 4px 12px rgba(249,112,102,0.5));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal-deep);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
}

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

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-contact address {
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .approach-inner {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17,17,19,0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .main-nav a {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    padding: 12px 24px;
  }

  .main-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .approach-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrapper img {
    height: 350px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .approach-visual img {
    height: 350px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community::before {
    display: none;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .scroll-down {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-content {
    padding-top: 60px;
  }

  .service-card {
    padding: 28px 22px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }
}

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
