/* =============================================
   pskcagladsipahi.com — Design System v2
   ============================================= */

:root {
  --primary:       #639922;
  --primary-dark:  #3B6D11;
  --primary-light: #EAF3DE;
  --accent:        #E8A830;
  --accent-light:  #FDF0D0;
  --accent-dark:   #C48A10;
  --accent-deep:   #A0720A;
  --text:          #2C2C2A;
  --text-muted:    #888780;
  --bg:            #F5F0E8;
  --bg-alt:        #EDEAE2;
  --bg-bej:        #EDE5D0;
  --hero-dark:     #27500A;
  --white:         #FFFFFF;
  --border:        rgba(0,0,0,0.08);
  --whatsapp:      #1DAF5B;
  --whatsapp-text: #C0DD97;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    7px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(44,44,42,.07);
  --shadow-lg: 0 12px 48px rgba(44,44,42,.12);
  --trans:     .28s ease;

  --max-w: 1080px;
}

/* ---- Accessibility ---- */
.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; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text);
  font-weight: 400;
}
h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
h3 { font-size: 1rem; font-weight: 500; font-family: var(--font-body); }
h4 { font-size: .9rem; font-weight: 500; font-family: var(--font-body); }
p  { color: var(--text-muted); }
em { font-style: italic; color: var(--primary); font-family: var(--font-display); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-text);
  font-size: .92rem;
  font-weight: 600;
  padding: .9rem 1.8rem;
  border-radius: var(--radius);
}
.btn-whatsapp svg { fill: var(--whatsapp-text); }
.btn-whatsapp:hover { opacity: .9; }

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

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

.btn-outline-white {
  background: transparent;
  color: rgba(245,240,232,.85);
  border: 1.5px solid rgba(245,240,232,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ---- Section helpers ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-bej { background: var(--bg-bej); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: .9rem;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-light);
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: .7rem; }
.section-lead  { font-size: .97rem; max-width: 580px; margin-bottom: 2.5rem; }
.centered { text-align: center; }
.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 40px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245,240,232,.8);
  padding: .45rem .75rem;
  border-radius: 5px;
  transition: color var(--trans), background var(--trans);
}
.nav-left a:hover,
.nav-right a.nav-link:hover,
.nav-left a.active,
.nav-right a.nav-link.active { color: rgba(245,240,232,1); background: rgba(255,255,255,.1); }

.nav-cta {
  background: rgba(232,168,48,.2) !important;
  border: 1px solid rgba(232,168,48,.5) !important;
  color: #F5C96A !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  transition: background var(--trans) !important;
}
.nav-cta:hover { background: rgba(232,168,48,.35) !important; }

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
.navbar-brand .brand-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.55);
  font-weight: 500;
}
.navbar-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(245,240,232,.95);
  letter-spacing: .01em;
}

/* Mobile nav — hidden by default everywhere */
.nav-links-mobile {
  display: none;
}
.nav-links-mobile.open {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 998;
}
.nav-links-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(245,240,232,.85);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(245,240,232,.85);
  border-radius: 2px;
  transition: var(--trans);
}

/* Inner page navbar (sticky, not absolute) */
.navbar-inner {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  padding: 14px 40px;
}
.navbar-inner .nav-left a,
.navbar-inner .nav-right a.nav-link {
  color: var(--text-muted);
}
.navbar-inner .nav-left a:hover,
.navbar-inner .nav-right a.nav-link:hover,
.navbar-inner .nav-left a.active,
.navbar-inner .nav-right a.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.navbar-inner .brand-label { color: var(--text-muted); }
.navbar-inner .brand-name  { color: var(--text); }
.navbar-inner .nav-cta {
  background: rgba(99,153,34,.12) !important;
  border: 1px solid rgba(99,153,34,.35) !important;
  color: var(--primary-dark) !important;
}
.navbar-inner .nav-cta:hover { background: rgba(99,153,34,.2) !important; }

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
  background: linear-gradient(135deg, var(--hero-dark) 0%, var(--primary-dark) 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  color: var(--white);
}
.page-banner h1 { color: #F5F0E8; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; }
.page-banner p  { color: rgba(245,240,232,.7); margin-top: .75rem; font-size: .95rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('arkaplan.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F5C96A;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,240,232,.95);
  margin-bottom: .4rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 1.25rem;
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.hero-desc {
  font-size: .95rem;
  color: rgba(245,240,232,.88);
  margin-bottom: 2.25rem;
  line-height: 1.75;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Hero fade-up animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease .15s both; }
.hero-title   { animation: fadeUp .6s ease .35s both; }
.hero-name    { animation: fadeUp .6s ease .50s both; }
.hero-desc    { animation: fadeUp .6s ease .70s both; }
.hero-actions { animation: fadeUp .6s ease .90s both; }

/* =============================================
   SERVICES LIST (index)
   ============================================= */
.services-list { margin-top: 2rem; }
.service-row {
  display: grid;
  grid-template-columns: 40px 1fr 44px;
  gap: 1.25rem;
  align-items: center;
  padding: 20px 0;
  border-bottom: .5px solid var(--border);
  transition: background var(--trans);
}
.service-row:first-child { border-top: .5px solid var(--border); }
.service-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  font-family: var(--font-body);
}
.service-row h3 {
  font-size: .97rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .2rem;
}
.service-row p { font-size: .88rem; line-height: 1.65; }
.service-row-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-deep);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .35rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--primary);
}
.service-link:hover { color: var(--primary-dark); }

/* Full services page cards */
.service-full {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  transition: box-shadow var(--trans);
}
.service-full:hover { box-shadow: var(--shadow); }
.service-full .service-icon { margin: 0; }
.service-full h3 { margin-bottom: .45rem; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--accent-deep);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.process-photo {
  background: linear-gradient(170deg, #2A3A18 0%, #3D5020 50%, #4A6028 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.15);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}
.process-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.process-content {
  background: var(--bg-bej);
  padding: 4rem 3rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.steps-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  min-width: 28px;
  padding-top: .1rem;
  font-family: var(--font-body);
  letter-spacing: .04em;
}
.step-item h3 { font-size: .95rem; font-weight: 500; margin-bottom: .3rem; color: var(--text); }
.step-item p  { font-size: .88rem; line-height: 1.7; }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item[open] summary::after  { transform: rotate(45deg); }
.faq-item[open] summary         { color: var(--primary); border-bottom: 1px solid var(--border); }
.faq-item p {
  padding: 1rem 1.4rem;
  font-size: .9rem;
  line-height: 1.75;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-banner {
  background: var(--bg);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-banner .eyebrow { display: block; margin-bottom: .9rem; }
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p  { font-size: .95rem; margin-bottom: 2rem; }
.cta-actions   { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-photo {
  background: linear-gradient(170deg, #2A3A18 0%, #3D5020 50%, #4A6028 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.12);
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-text .section-tag  { margin-top: 0; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }

.edu-timeline { margin-top: 2rem; }
.edu-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.edu-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px; top: 38px;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--border);
}
.edu-dot {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.edu-year  { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: .2rem; }
.edu-title { font-weight: 500; color: var(--text); margin-bottom: .2rem; font-size: .95rem; }
.edu-sub   { font-size: .875rem; }

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
}
.training-pill {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  transition: box-shadow var(--trans);
}
.training-pill:hover { box-shadow: var(--shadow); }
.training-pill span { font-size: 1.15rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: .85rem; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}
.info-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-deep);
}
.info-card h4 { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: .3rem; font-family: var(--font-body); }
.info-card p  { font-size: .9rem; color: var(--text); margin: 0; }
.info-card a  { color: var(--primary); font-weight: 500; }
.info-card a:hover { text-decoration: underline; }

.contact-ctas { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.25rem; }
.contact-ctas .btn { justify-content: center; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-name  { font-family: var(--font-display); color: #F5F0E8; font-size: 1rem; font-weight: 400; }
.footer-brand .brand-label { font-size: .7rem; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; display: block; }
.footer-brand p { font-size: .85rem; margin-top: .65rem; line-height: 1.65; }
.footer h5 { color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; font-family: var(--font-body); font-weight: 500; }
.footer ul li { margin-bottom: .45rem; }
.footer ul a { font-size: .875rem; transition: color var(--trans); }
.footer ul a:hover { color: rgba(255,255,255,.9); }
.footer-social { display: flex; gap: .65rem; margin-top: 1.1rem; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  color: rgba(255,255,255,.65);
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .about-intro    { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .about-photo    { max-width: 360px; }
  .process-split  { grid-template-columns: 1fr; }
  .process-photo  { min-height: 240px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .process-content{ border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 2.5rem 2rem; }
}

@media (max-width: 640px) {
  /* Hamburger nav */
  .hamburger { display: flex; }
  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .navbar-brand { align-items: flex-start; }


  .navbar { padding: 18px 20px; }
  .navbar-inner { padding: 14px 20px; }

  .hero { padding: 6rem 0 4.5rem; }
  .section { padding: 3.5rem 0; }

  .service-full { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; text-align: center; }
}
