/* ============================================
   VITAMED - Organic Luxury Medical Center
   Palette: Warm earth tones, botanical greens
   Typography: Lora (headings) + Nunito (body)
   ============================================ */

:root {
  --bg: #f6f2ec;
  --surface: #ebe5db;
  --accent: #5c7a56;
  --accent-hover: #6e916a;
  --text: #2a2a24;
  --text-muted: #6a6a60;
  --border: #d4cfc4;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(42, 42, 36, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 42, 36, 0.1);
  --shadow-lg: 0 16px 48px rgba(42, 42, 36, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 65ch;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .section { padding: 120px 0; }
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(246, 242, 236, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 207, 196, 0.4);
  transition: all var(--transition);
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .header-inner { padding: 0 40px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Desktop nav */
.nav-desktop {
  display: none;
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav-desktop a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
  }

  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition);
  }

  .nav-desktop a:hover,
  .nav-desktop a.active {
    color: var(--accent);
  }

  .nav-desktop a:hover::after,
  .nav-desktop a.active::after {
    width: 100%;
  }
}

.nav-cta {
  display: none;
}

@media (min-width: 769px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition);
    white-space: nowrap;
  }
  .nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
}

/* Burger menu */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

@media (min-width: 769px) {
  .burger { display: none; }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  padding: 8px 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   HERO (CSS-only gradient background)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(92, 122, 86, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(110, 145, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(235, 229, 219, 0.6) 0%, transparent 70%),
    linear-gradient(165deg, #f6f2ec 0%, #ebe5db 30%, #e2dbd0 60%, #f6f2ec 100%);
  z-index: 0;
}

/* Organic SVG shapes in background */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 122, 86, 0.08) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morph 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 122, 86, 0.06) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  animation: morph 25s ease-in-out infinite reverse;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25% { border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%; }
  50% { border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; }
  75% { border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 40px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline;
}

.hero-text .hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero-photos {
    max-width: 340px;
  }
}

.hero-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.hero-photo-card:nth-child(2) {
  transform: translateY(24px);
}

.hero-photo-card:nth-child(4) {
  transform: translateY(24px);
}

.hero-photo-card:hover {
  transform: scale(1.03);
}

.hero-photo-card:nth-child(2):hover,
.hero-photo-card:nth-child(4):hover {
  transform: translateY(24px) scale(1.03);
}

.hero-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-photo-card img {
    height: 220px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 122, 86, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .stat-item {
    padding: 48px 24px;
    border-bottom: none;
  }
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
}

.stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SERVICES PREVIEW (index.html)
   ============================================ */

.services-preview {
  background: var(--bg);
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header p {
  margin: 16px auto 0;
}

.services-preview-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* photo-overlay card */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 42, 36, 0.85) 0%,
    rgba(42, 42, 36, 0.4) 40%,
    rgba(42, 42, 36, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(42, 42, 36, 0.9) 0%,
    rgba(42, 42, 36, 0.5) 50%,
    rgba(42, 42, 36, 0.1) 100%
  );
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.3rem;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.service-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}

.services-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SERVICES PAGE (full)
   ============================================ */

.services-hero {
  padding: 140px 0 80px;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(92,122,86,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(92,122,86,0.05) 0%, transparent 60%);
}

.services-hero > * { position: relative; z-index: 1; }

.services-hero p {
  margin: 16px auto 0;
}

.services-full-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-full-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-detail-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-detail-card .card-body {
  padding: 24px;
}

.service-detail-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-detail-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-detail-card .card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-detail-card:hover .card-link {
  gap: 10px;
}

/* Dedicated services text list section */
.services-list-section {
  background: var(--surface);
}

.services-text-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .services-text-grid { grid-template-columns: repeat(2, 1fr); }
}

.text-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.text-service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.text-service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(92,122,86,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.text-service-item h4 {
  margin-bottom: 4px;
}

.text-service-item p {
  font-size: 0.85rem;
}

/* ============================================
   GALLERY PAGE - horizontal-scroll
   ============================================ */

.gallery-hero {
  padding: 140px 0 60px;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(92,122,86,0.08) 0%, transparent 60%);
}

.gallery-hero > * { position: relative; z-index: 1; }

.gallery-section {
  padding: 60px 0;
}

.gallery-category-title {
  padding: 0 20px;
  margin-bottom: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .gallery-category-title { padding: 0 40px; }
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

@media (min-width: 768px) {
  .gallery-scroll { padding: 0 40px 20px; gap: 20px; }
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}
.gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

@media (min-width: 768px) {
  .gallery-item { width: 340px; }
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .gallery-item img { height: 340px; }
}

.gallery-item-caption {
  padding: 16px 20px;
}

.gallery-item-caption p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-item-caption span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACTS PAGE
   ============================================ */

.contacts-hero {
  padding: 140px 0 60px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.contacts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(92,122,86,0.08) 0%, transparent 60%);
}

.contacts-hero > * { position: relative; z-index: 1; }

.contacts-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .contacts-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(92,122,86,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent-hover);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.contact-phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  min-height: 44px;
  padding: 4px 0;
}

.contact-phones a:hover {
  color: var(--accent);
}

.whatsapp-big-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: #25D366;
  color: white;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  min-height: 56px;
  transition: all var(--transition);
  margin-top: 20px;
}

.whatsapp-big-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  color: white;
}

.map-section {
  padding: 60px 0;
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   ABOUT/TRUST SECTION (index.html)
   ============================================ */

.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(92,122,86,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.about-feature div {
  padding-top: 2px;
}

.about-feature h4 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.about-feature p {
  font-size: 0.85rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(92,122,86,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(92,122,86,0.15) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-white-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: white;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

/* Pulse animation */
.floating-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  border-color: rgba(255,255,255,0.2);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  min-height: 36px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SCROLL-REVEAL ANIMATIONS: scale-up
   ============================================ */

.reveal {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger */
.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; }

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.organic-divider {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.organic-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* Leaf texture accent */
.leaf-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* Touch target minimum */
@media (pointer: coarse) {
  a, button, .btn, .service-card, .gallery-item {
    min-height: 44px;
  }
}
