/* =============================================
   FETIYE SENEL — STYLE.CSS
   ============================================= */

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

/* === CSS VARIABLES === */
:root {
  /* Colors */
  --color-bg:           #FAF6EF;
  --color-bg-alt:       #F0E8DA;
  --color-text:         #1A2E28;
  --color-text-muted:   #3D5A52;
  --color-sage:         #2A4C42;
  --color-sage-dark:    #1E3830;
  --color-terracotta:   #C4914A;
  --color-terra-hover:  #A87A38;
  --color-white:        #FFFFFF;
  --color-border:       rgba(42, 76, 66, 0.18);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  4rem;

  /* Layout */
  --container-max: 1140px;
  --container-pad: 1.5rem;
  --nav-height:    72px;

  /* Motion */
  --ease:        0.3s ease;
  --ease-slow:   0.6s ease;

  /* Elevation */
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.13);

  /* Radius */
  --r-sm:  4px;
  --r-md:  6px;
  --r-lg:  16px;
  --r-xl:  28px;
  --r-pill: 50px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.75;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; }
h2 { font-size: clamp(22px, 3vw, 30px); line-height: 1.3; }
h3 { font-size: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
h6 { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

em {
  font-style: normal;
  color: var(--color-terracotta);
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(42, 76, 66, 0.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-terra-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42, 76, 66, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-sage);
  border: 1.5px solid var(--color-sage);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-sage);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--color-terracotta) !important;
  color: var(--color-white) !important;
  padding: 8px 20px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--color-terra-hover) !important; }

.btn-terracotta {
  background: rgba(42, 76, 66, 0.08);
  color: var(--color-sage-dark);
  border: 1.5px solid rgba(42, 76, 66, 0.30);
}
.btn-terracotta:hover, .btn-terracotta:focus-visible {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* Focus visible */
.btn:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}
.section-header h2 { margin-bottom: var(--space-sm); }

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.reveal-right { transform: translateX(28px); }
.reveal.reveal-left  { transform: translateX(-28px); }
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-md);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: 64px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--color-sage);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
  transition: box-shadow var(--ease), opacity var(--ease), border-color var(--ease);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.9;
  border-color: var(--color-sage-dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.26);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.nav-logo-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links > li > a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 2px;
}
.nav-links > li > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-terracotta);
  transition: width var(--ease);
}
.nav-links > li > a:not(.btn):hover,
.nav-links > li > a:not(.btn).active {
  color: var(--color-text);
}
.nav-links > li > a:not(.btn):hover::after,
.nav-links > li > a:not(.btn).active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   PHOTO FRAMES
   ============================================= */
.photo-frame {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hero frame: fills right column, bleeds to bottom */
.photo-frame--hero {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-self: flex-end;
}

/* About frame: landscape to match office photo */
.photo-frame--about {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: var(--r-sm) var(--r-xl) var(--r-xl) var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-frame--about::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 55%;
  height: 55%;
  border: 1.5px solid var(--color-terracotta);
  border-radius: var(--r-sm) var(--r-xl) var(--r-xl) var(--r-sm);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

/* SVG placeholder background */
.photo--placeholder {
  background: linear-gradient(145deg, var(--color-bg-alt) 0%, #DDD9CF 100%);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(155deg, var(--color-bg) 50%, #D4EEF8 100%);
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "titles image"
    "body   image";
  gap: var(--space-xl);
  align-items: stretch;
  flex: 1;
  padding-top: var(--space-xl);
  padding-bottom: 0;
}

.hero-titles {
  grid-area: titles;
  padding-top: var(--space-xl);
}

.hero-body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: var(--space-xl);
}

.hero-image {
  grid-area: image;
  display: flex;
  align-items: flex-end;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
}

.hero-title { color: var(--color-text); margin-bottom: 0.3rem; }

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.hero-slogan {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(42, 76, 66, 0.07);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-sage-dark);
  letter-spacing: 0.01em;
}

/* Stats Strip */
.stats-strip {
  background: var(--color-sage);
  padding: var(--space-xl) 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: rgba(255,255,255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255, 0.3);
  flex-shrink: 0;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}


.about-content h2 { margin-bottom: var(--space-md); }

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.credentials {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.credentials li svg circle,
.credentials li svg path { stroke: var(--color-sage-dark); }

/* =============================================
   AREAS
   ============================================= */
.areas {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.area-card {
  background: var(--color-bg);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid transparent;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.area-icon {
  width: 56px;
  height: 56px;
  background: rgba(42, 76, 66, 0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.area-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-sage-dark);
}

.area-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.process .section-eyebrow { color: var(--color-sage-dark); }
.process .section-header h2 { color: var(--color-text); }
.process .section-header h2 em { color: var(--color-terracotta); }
.process .section-desc { color: var(--color-text-muted); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  list-style: none;
}

.process-step {
  text-align: center;
  padding: var(--space-lg) 24px;
  border-radius: var(--r-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), box-shadow var(--ease);
}
.process-step:hover { box-shadow: var(--shadow-md); }

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(42, 76, 66, 0.35);
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.process-step h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.process-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--color-sage); }
.faq-question[aria-expanded="true"] { color: var(--color-sage); }

.faq-icon {
  flex-shrink: 0;
  color: var(--color-sage);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-sage);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: var(--space-md);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.contact-inner--centered {
  display: flex;
  justify-content: center;
}

.contact-info--centered {
  max-width: 540px;
  width: 100%;
  text-align: center;
}

.contact-info--centered h2 { margin-bottom: var(--space-md); }

.contact-info--centered > p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-details--centered {
  align-items: center;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
}

.contact-details svg { flex-shrink: 0; }

.contact-details a:hover { color: var(--color-sage-dark); }

.contact-whatsapp-btn {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102, 0.28);
  margin-top: var(--space-sm);
}
.contact-whatsapp-btn:hover, .contact-whatsapp-btn:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 6px 22px rgba(37,211,102, 0.38);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--container-pad);
  align-items: start;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}

.footer-privacy-note {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--ease);
}
.footer-social a:hover { color: #E1306C; }
.footer-social span { font-weight: 500; }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--color-sage-dark); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: right;
  font-style: normal;
}

.footer-contact p { font-size: 13px; color: var(--color-text-muted); }
.footer-contact a:hover { color: var(--color-sage-dark); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--container-pad);
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid--8 { grid-template-columns: repeat(2, 1fr); }

  .about-inner { gap: var(--space-xl); }

  .photo-frame--hero  { width: 100%; min-height: 420px; }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .photo-frame--about { width: 100%; aspect-ratio: 4/3; height: auto; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-contact { text-align: left; }

  .contact-inner { gap: var(--space-xl); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --container-pad: 1.25rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 44px; width: 44px; }
  .nav-logo-text { font-size: 9px; }
  .nav-logo-text strong { font-size: 11px; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0s 0s;
  }

  .nav-links > li > a:not(.btn) {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "titles"
      "image"
      "body";
    text-align: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    padding-bottom: 0;
  }
  .hero-titles { padding-top: 0; }
  .hero-body   { padding-bottom: var(--space-lg); }
  .hero-image  { display: flex; justify-content: center; }
  .hero-ctas   { justify-content: center; }
  .trust-badge { margin: 0 auto; }
  .photo-frame--hero { width: 85%; max-width: 340px; min-height: 420px; border-radius: var(--r-xl); }

  /* Stats */
  .stats-inner { gap: var(--space-lg); }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image { display: flex; justify-content: center; }
  .photo-frame--about { width: 100%; max-width: 480px; aspect-ratio: 4/3; height: auto; }
  .credentials { text-align: left; }

  /* Areas */
  .areas-grid,
  .areas-grid--8 { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: var(--space-md); }

  /* Contact */
  .contact-info--centered { text-align: center; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  .footer-contact { text-align: center; align-items: center; }
  .footer-nav ul  {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem var(--space-sm);
  }
}

/* =============================================
   RESPONSIVE — SMALL (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero { padding-top: var(--space-lg); }

  .stat-divider { display: none; }
  .stats-inner  { gap: var(--space-lg); }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }

  .footer-inner { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 2000;

  display: flex;
  align-items: center;
  gap: 0.6rem;

  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);

  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              background 0.2s ease;

  animation: wab-enter 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.8s both;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
  outline: none;
}

.whatsapp-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.whatsapp-fab svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.whatsapp-fab__label {
  letter-spacing: 0.01em;
}

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill);
  border: 2px solid #25D366;
  opacity: 0;
  animation: wab-pulse 2.8s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes wab-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes wab-pulse {
  0%   { opacity: 0;    transform: scale(1); }
  30%  { opacity: 0.45; }
  100% { opacity: 0;    transform: scale(1.35); }
}

/* Compact on small screens — show only icon */
@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.9rem;
    border-radius: 50%;
  }
  .whatsapp-fab__label { display: none; }
}
