/* ================================================================
   GENERATIONAL DEVELOPMENT SOCIETY — HOMEPAGE STYLES
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   Change values here to retheme colors, fonts, spacing site-wide.
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0050b4;
  --color-primary-dark: #003a8c;
  --color-accent: #5271ff;
  --color-accent-dark: #3a56e8;

  --color-bg: #f4f6ff;
  --color-bg-alt: #e8eeff;
  --color-text: #0a1628;
  --color-text-light: #3d5080;
  --color-border: #c5d0ee;
  --color-white: #ffffff;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: 1.0625rem;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 6px 20px rgba(31, 78, 61, 0.10);
  --shadow-hover: 0 10px 28px rgba(31, 78, 61, 0.16);
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.65;
}

img { max-width: 100%; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
img.logo-img { border-radius: 0; box-shadow: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { max-width: 65ch; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-accent-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.9em;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-donate {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
}
.btn-donate:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-primary-dark);
}

/* ----------------------------------------------------------------
   HEADER / NAV
   ---------------------------------------------------------------- */
header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a { font-weight: 500; color: var(--color-text); }
.nav-links a:hover { color: var(--color-primary); }

/* ----------------------------------------------------------------
   SECTIONS
   ---------------------------------------------------------------- */
section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section-alt { background-color: var(--color-bg-alt); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero p { margin-top: 1rem; margin-bottom: 1.5rem; }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature.reverse .feature-img { order: 2; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { border-radius: 0; box-shadow: none; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.card-body p { flex: 1; }

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.value-props div {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.cta-center { text-align: center; }

/* ----------------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
blockquote {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
blockquote p { font-style: italic; }
blockquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary);
}

/* ----------------------------------------------------------------
   PARTNERS
   ---------------------------------------------------------------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.partners img {
  height: 60px;
  width: auto;
  background-color: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0 2rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
footer a { color: var(--color-white); opacity: 0.85; }
footer a:hover { opacity: 1; color: var(--color-accent); }
footer ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer .copyright { width: 100%; margin-top: 2rem; opacity: 0.7; font-size: 0.9rem; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 860px) {
  .hero, .feature { grid-template-columns: 1fr; gap: 2rem; }
  .feature.reverse .feature-img { order: 0; }
  .nav-links { gap: 1.25rem; }
}
@media (max-width: 600px) {
  .btn { width: 100%; }
}

/* ================================================================
   MULTI-PAGE SITE ADDITIONS
   ================================================================ */

/* ----------------------------------------------------------------
   NAV WITH DROPDOWNS + MOBILE TOGGLE
   ---------------------------------------------------------------- */
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-brand img { height: 38px; width: 38px; border-radius: 50%; box-shadow: none; }
.nav-brand span { font-size: 1.05rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 26px; height: 3px; background-color: var(--color-primary); border-radius: 2px; }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " \25BE"; font-size: 0.7em; opacity: 0.7; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  min-width: 240px;
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 20;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
}
.dropdown li a:hover { background-color: var(--color-bg-alt); color: var(--color-primary); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--color-border);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links > li > a { display: block; padding: 0.75rem 0.25rem; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-border);
    margin-left: 0.75rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-links .btn-donate { width: auto; display: inline-flex; margin: 0.5rem 0.25rem; }
}

/* ----------------------------------------------------------------
   PAGE BANNER (subpage headers)
   ---------------------------------------------------------------- */
.page-banner {
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.page-banner h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.breadcrumb { font-size: 0.9rem; opacity: 0.8; }
.breadcrumb a { color: var(--color-white); opacity: 0.85; }
.breadcrumb a:hover { color: var(--color-accent); opacity: 1; }

/* ----------------------------------------------------------------
   FORMS
   ---------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}
.form-grid.two-col { grid-template-columns: 1fr 1fr; }
.form-grid label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
  font-size: 0.92rem;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 78, 61, 0.12);
}
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.5rem; }

/* ----------------------------------------------------------------
   EMBEDS (scheduling / maps / iframes)
   ---------------------------------------------------------------- */
.embed-frame {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}
.booking-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0.5rem;
}
.embed-fallback {
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--color-text-light);
}

/* ----------------------------------------------------------------
   CONTACT INFO LIST
   ---------------------------------------------------------------- */
.info-list { display: grid; gap: 1.5rem; margin-top: 1rem; }
.info-list .item { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.info-list h4 { margin-bottom: 0.2rem; font-size: 1rem; }
.info-list p { margin: 0; color: var(--color-text-light); font-size: 0.95rem; }

.social-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 0.95rem;
  transition: background-color var(--transition), color var(--transition);
}
.social-row a:hover { background-color: var(--color-primary); color: var(--color-white); }

/* ----------------------------------------------------------------
   TEAM CARDS
   ---------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.team-card { text-align: center; }
.team-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  width: 160px;
}
.team-card h3 { margin-bottom: 0.1rem; }
.team-card .role {
  display: block;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------------
   STAT / DONATE IMPACT CARDS
   ---------------------------------------------------------------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 960px;
  justify-content: center;
}
.impact-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.impact-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.impact-card p { font-size: 0.93rem; color: var(--color-text-light); margin: 0; }

/* ----------------------------------------------------------------
   TWO-COLUMN CONTENT (mission/vision etc.)
   ---------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   FOOTER COLUMNS
   ---------------------------------------------------------------- */
footer .col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  opacity: 1;
}
footer .col ul { flex-direction: column; gap: 0.6rem; }
footer .col p { opacity: 0.85; font-size: 0.92rem; max-width: 30ch; }
footer .partner-strip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
footer .partner-strip img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: none;
  background-color: var(--color-white);
  padding: 8px 14px;
}

/* ----------------------------------------------------------------
   QUOTE BLOCK (single pull-quote, e.g. Empowerhub)
   ---------------------------------------------------------------- */
.pull-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--color-primary);
  font-weight: 600;
  max-width: none;
}
.pull-quote cite { display: block; margin-top: 0.75rem; color: var(--color-text-light); font-style: normal; }


/* ----------------------------------------------------------------
   IMPACT GRID CENTERING
   ---------------------------------------------------------------- */
.impact-grid {
  justify-content: center;
}
.impact-card {
  text-align: left;
}

/* ----------------------------------------------------------------
   TEAM AVATAR PLACEHOLDER
   ---------------------------------------------------------------- */
.team-avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.team-avatar-placeholder svg {
  width: 70px;
  height: 70px;
  fill: rgba(255,255,255,0.7);
}

/* ----------------------------------------------------------------
   GOOGLE REVIEWS WIDGET
   ---------------------------------------------------------------- */
.reviews-section {
  background: var(--color-bg-alt);
}
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.google-reviews-badge:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  color: var(--color-text);
}
.google-reviews-badge .g-logo {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg,#4285F4,#EA4335,#FBBC05,#34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.stars {
  color: #f9a825;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ----------------------------------------------------------------
   PARTNER / SPONSOR LOGOS
   ---------------------------------------------------------------- */
.partners {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.partners img, .logo-img {
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
}
footer .partner-strip img {
  height: 52px;
  width: auto;
  background-color: var(--color-white);
  padding: 8px 16px;
  border-radius: 6px !important;
  object-fit: contain;
}

/* ----------------------------------------------------------------
   BLUE THEME OVERRIDES — GDS Logo Colors
   ---------------------------------------------------------------- */
footer {
  background: linear-gradient(135deg, #003a8c 0%, #0050b4 60%, #1a3a6b 100%);
}

.page-banner {
  background: linear-gradient(135deg, #003a8c 0%, #0050b4 100%);
}

.btn {
  background-color: #0050b4;
  border-color: #0050b4;
}
.btn:hover {
  background-color: #003a8c;
  border-color: #003a8c;
}
.btn-donate {
  background-color: #5271ff;
  border-color: #5271ff;
  color: #ffffff;
  font-weight: 700;
}
.btn-donate:hover {
  background-color: #3a56e8;
  border-color: #3a56e8;
  color: #ffffff;
}
.btn-outline {
  background-color: transparent;
  color: #0050b4;
  border-color: #0050b4;
}
.btn-outline:hover {
  background-color: #0050b4;
  color: #ffffff;
}

.eyebrow {
  color: #3a56e8;
}

h1, h2, h3, h4 {
  color: #003a8c;
}

.nav-brand {
  color: #0050b4;
}

.card {
  border-color: #c5d0ee;
}

.impact-card {
  border-left: 4px solid #5271ff;
}

.team-card .role {
  color: #3a56e8;
}

.section-alt {
  background-color: #e8eeff;
}

/* Hero section blue accent */
.hero {
  background: linear-gradient(160deg, #f4f6ff 60%, #e0e8ff 100%);
  border-radius: 0 0 20px 20px;
}

/* Nav active link */
.nav-links a.active,
.nav-links a:hover {
  color: #0050b4;
}

/* Google reviews badge */
.google-reviews-badge {
  border-color: #c5d0ee;
}

/* Team avatar placeholder */
.team-avatar-placeholder {
  background: linear-gradient(135deg, #0050b4 0%, #003a8c 100%);
}

/* Pull quote */
.pull-quote p {
  color: #0050b4;
}

/* ================================================================
   MOBILE RESPONSIVENESS IMPROVEMENTS
   ================================================================ */

/* Smoother touch targets */
a, button { touch-action: manipulation; }

/* Nav brand text hide on very small screens */
@media (max-width: 480px) {
  .nav-brand span { display: none; }
  .nav-brand img { height: 40px !important; }
}

/* Hero section stacks cleanly on mobile */
@media (max-width: 860px) {
  .hero { flex-direction: column; gap: 2rem; padding: 2rem 0; }
  .hero > div:first-child { text-align: center; }
  .hero > div:first-child p { max-width: 100%; }
  .hero > div:first-child .btn { display: inline-block; }
  .hero img { width: 100%; max-height: 300px; object-fit: cover; border-radius: var(--radius); }
}

/* Feature sections stack on mobile */
@media (max-width: 860px) {
  .feature, .feature.reverse { flex-direction: column; }
  .feature-img { width: 100%; }
  .feature-img img { width: 100%; max-height: 280px; object-fit: cover; }
}

/* Split sections stack on mobile */
@media (max-width: 860px) {
  .split { flex-direction: column; }
  .split img { width: 100%; max-height: 280px; object-fit: cover; }
  .split > div { width: 100%; }
}

/* Programs grid: 1 column on mobile */
@media (max-width: 600px) {
  .programs-grid { grid-template-columns: 1fr; }
  .card img { max-height: 220px; object-fit: cover; width: 100%; }
}

/* Impact grid: 1 column on small mobile */
@media (max-width: 500px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { text-align: left; }
}

/* Team grid: 1 column on mobile */
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { text-align: center; }
  .team-card img { margin: 0 auto; }
}

/* Partner logos: wrap and center on mobile */
@media (max-width: 700px) {
  .partners { gap: 1.5rem; justify-content: center; }
  .partners img, .logo-img { height: 50px !important; }
  .partner-strip { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .partner-strip img { height: 40px !important; }
}

/* Testimonials: 1 column on mobile */
@media (max-width: 700px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Footer: stack columns on mobile */
@media (max-width: 700px) {
  footer .wrap { flex-direction: column; gap: 2rem; }
  footer .col { width: 100%; }
  .copyright { text-align: center; }
}

/* Page banner: smaller on mobile */
@media (max-width: 600px) {
  .page-banner { padding: 2rem 0; }
  .page-banner h1 { font-size: 1.75rem; }
}

/* Forms: full width on mobile */
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .form-grid.two-col { grid-template-columns: 1fr; }
}

/* Contact info list on mobile */
@media (max-width: 600px) {
  .info-list .item { flex-direction: column; gap: 0.5rem; }
}

/* Value props: stack on mobile */
@media (max-width: 600px) {
  .value-props { flex-direction: column; gap: 0.75rem; align-items: center; }
}

/* Booking iframe: full width on mobile */
@media (max-width: 600px) {
  .embed-frame { min-height: 600px; }
  .booking-card { padding: 1rem; }
}

/* General text sizing for mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
  p { font-size: 0.95rem; }
  .eyebrow { font-size: 0.7rem; }
  section { padding: 2.5rem 0; }
}

/* Better tap targets for mobile buttons */
@media (max-width: 600px) {
  .btn { 
    padding: 0.8rem 1.5rem; 
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .btn-outline { width: auto; }
}

/* ================================================================
   FORM IMPROVEMENTS
   ================================================================ */
.form-grid select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230050b4' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-grid select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,80,180,0.12);
}
.form-grid input[type="tel"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.form-grid input[type="tel"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,80,180,0.12);
}
