/* ============================================
   En Calma Psicologia - Main Stylesheet
   Mobile-first responsive design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #6b8f5e;
  --color-primary-dark: #4a6b3e;
  --color-primary-light: #8ab07a;
  --color-accent: #c4956a;
  --color-accent-light: #e8c9a8;
  --color-accent-pale: #f5e6d3;
  --color-bg: #fefcf9;
  --color-bg-warm: #faf4ec;
  --color-bg-section: #f7f0e6;
  --color-text: #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-text-heading: #2d2d2d;
  --color-white: #ffffff;
  --color-border: #e0d5c7;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p + p { margin-top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo img {
  height: 45px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-text-heading);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  z-index: 105;
}

.main-nav.open {
  display: block;
}

.nav-list {
  display: flex;
  flex-direction: column;
}

.nav-list > li {
  border-bottom: 1px solid var(--color-border);
}

.nav-list a {
  display: block;
  padding: 0.9rem 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}

.nav-list .has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list .has-submenu > a::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.nav-list .has-submenu.open > a::after {
  content: '−';
}

.submenu {
  display: none;
  padding-left: 1.25rem;
}

.submenu.open {
  display: block;
}

.submenu a {
  font-size: 0.9rem;
  padding: 0.6rem 0;
  color: var(--color-text-light);
}

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

.nav-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,252,249,0.92) 0%, rgba(254,252,249,0.7) 50%, rgba(254,252,249,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-heading);
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-body);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: #b07f55;
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  margin-top: var(--header-height);
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-section) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

.page-header .breadcrumb a {
  color: var(--color-accent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 3.5rem 0;
}

.section-warm {
  background: var(--color-bg-warm);
}

.section-accent {
  background: var(--color-bg-section);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card .btn {
  font-size: 0.85rem;
}

/* ============================================
   ONLINE THERAPY SECTION
   ============================================ */
.online-therapy {
  padding: 3.5rem 0;
}

.online-therapy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.online-therapy-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.online-therapy-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.online-therapy-content > p {
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

.therapy-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.therapy-benefits li {
  background: var(--color-bg-warm);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 0;
  text-align: center;
  color: var(--color-white);
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}

.cta-banner .btn {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.cta-banner .btn:hover {
  background: var(--color-accent-pale);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 3.5rem 0;
  background: var(--color-bg-warm);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text-heading);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 143, 94, 0.15);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.3rem;
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-member {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
}

.team-member h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.team-member .credential {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.pricing-card-header h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-body {
  padding: 1.5rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
  gap: 1rem;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item .service-name {
  font-size: 0.9rem;
  color: var(--color-text);
  flex: 1;
}

.pricing-item .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

/* ============================================
   CONTENT PAGES (service detail pages)
   ============================================ */
.content-section {
  padding: 3rem 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.content-block h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-primary-dark);
}

.content-block p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-block ul {
  margin: 1rem 0 1.5rem;
}

.content-block ul li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.75rem;
  line-height: 1.6;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Help items - styled list for therapy pages */
.help-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.help-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Sub-service cards on terapia-psicologica page */
.sub-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sub-service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sub-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sub-service-card h3 {
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sub-service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.contact-detail p {
  font-size: 1rem;
  font-weight: 600;
}

.contact-detail a {
  color: var(--color-text);
}

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

.social-links {
  margin-top: 1rem;
}

.social-links h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.map-section {
  margin-top: 2rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.map-address {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-accent-pale);
  padding: 3rem 0 0;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--color-text-light);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}

.footer-contact a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 1rem 1.25rem;
  z-index: 200;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons button {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.cookie-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.cookie-reject:hover {
  border-color: var(--color-text-light);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-content h2 {
  margin-top: 2rem;
}

.privacy-content h3 {
  margin-top: 1.5rem;
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .container {
    padding: 0 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .subtitle {
    font-size: 1.2rem;
  }

  .page-header {
    padding: 4.5rem 0 3.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .online-therapy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-inner p {
    text-align: left;
  }

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

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav-list > li {
    border-bottom: none;
    position: relative;
  }

  .nav-list a {
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
  }

  .nav-list .has-submenu > a::after {
    content: '▾';
    font-size: 0.7rem;
    margin-left: 0.3rem;
  }

  .nav-list .has-submenu.open > a::after {
    content: '▴';
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    min-width: 260px;
    padding: 0.5rem 0;
    z-index: 120;
  }

  .submenu a {
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .submenu a:hover {
    background: var(--color-bg-warm);
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE - Large Desktop (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 2.5rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
