@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --teal: #2A7B88;
  --teal-dark: #1D6E7A;
  --teal-light: #E8F4F6;
  --gold: #B8975A;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --border: #E8E8E4;
  --bg: #FFFFFF;
  --bg2: #F9F8F6;
  --max-w: 1200px;
  --nav-h: 64px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h); background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav-logo { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; color: var(--text); }
.nav-links { display: none; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-lang { font-size: 12px; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; cursor: pointer; }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; padding: 32px 24px; flex-direction: column; gap: 24px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 20px; font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 24px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; font-family: inherit; border: none; transition: all 0.2s; letter-spacing: 0.01em; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-light); }

/* SECTION */
.section { padding: 56px 24px; }
.section-label { font-size: 11px; color: var(--teal); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-top { display: flex; flex-direction: column; gap: 24px; margin-bottom: 24px; }
.footer-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.footer-info { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 12px; color: var(--muted); padding-top: 20px; border-top: 1px solid var(--border); }

/* WHATSAPP WIDGET */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; font-family: 'Plus Jakarta Sans', sans-serif; }
.wa-btn { width: 54px; height: 54px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.08); }
.wa-popup { display: none; position: absolute; bottom: 68px; right: 0; width: 300px; background: white; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); overflow: hidden; }
.wa-popup.open { display: block; }
.wa-popup-header { background: #075E54; padding: 16px; display: flex; align-items: center; gap: 12px; }
.wa-popup-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.3); }
.wa-popup-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wa-popup-info { flex: 1; }
.wa-popup-name { color: white; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.wa-popup-status { color: rgba(255,255,255,0.75); font-size: 12px; }
.wa-popup-body { padding: 16px; background: #ECE5DD; }
.wa-popup-bubble { background: white; border-radius: 8px; padding: 10px 14px; font-size: 13px; line-height: 1.5; color: #333; box-shadow: 0 1px 2px rgba(0,0,0,0.1); margin-bottom: 4px; }
.wa-popup-time { font-size: 11px; color: #999; text-align: right; }
.wa-popup-footer { padding: 12px 16px; background: white; }
.wa-start-btn { width: 100%; padding: 11px; background: #25D366; color: white; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.wa-start-btn:hover { background: #1ebe5d; }
.wa-close { position: absolute; top: 12px; right: 12px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1; padding: 2px 6px; }
.wa-close:hover { color: white; }

/* PAGE HEADER */
.page-header { padding: 48px 24px 40px; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-header-wrap { border-bottom: 1px solid var(--border); }

/* TABLET */
@media (min-width: 768px) {
  .nav { padding: 0 40px; }
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }
  .section { padding: 72px 40px; }
  .footer { padding: 40px; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .world-cards { grid-template-columns: 1fr 1fr !important; }
  .numbers-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .page-header { padding: 64px 40px 48px; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .nav { padding: 0 56px; }
  .section { padding: 80px 56px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
  .footer { padding: 48px 56px; }
  .page-header { padding: 72px 56px 56px; }
}

/* HERO */
.hero-wrapper {
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-content {
  padding: 56px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-photo-col {
  width: 100%;
  height: 380px;
  background-image: url('/images/ayca-profil-desktop.webp');
  background-size: cover;
  background-position: center 15%;
}
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
  }
  .hero-content {
    flex: 1;
    padding: 80px 56px;
    border-right: 1px solid var(--border);
  }
  .hero-photo-col {
    flex: 1;
    height: auto;
    min-height: 560px;
  }
}
