/* Zoi Veteriner Kliniği — marka renkleri: teal #48BCBD, mercan #F18F7F, lacivert #27304B */
:root {
  --teal: #48bcbd;
  --teal-dark: #379697;
  --teal-tint: #eaf7f7;
  --coral: #f18f7f;
  --coral-dark: #e2705d;
  --navy: #27304b;
  --navy-deep: #1b2138;
  --ink: #27304b;
  --muted: #6b7280;
  --paper: #ffffff;
  --paper-soft: #f6f9f9;
  --line: #e4ebeb;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 10px rgba(39, 48, 75, 0.06);
  --shadow-md: 0 12px 32px rgba(39, 48, 75, 0.10);
  --shadow-lg: 0 24px 60px rgba(39, 48, 75, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Karla", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Changa", "Segoe UI", system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
@media (max-width: 620px) { .section { padding: 2.75rem 0; } }
.section-soft { background: var(--paper-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal-tint);
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-head { max-width: 700px; margin: 0 0 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.08rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 100px; font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--navy); color: #cfe3e3; font-size: .82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding: .5rem 1.5rem; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-badge {
  background: var(--teal); color: #fff; font-weight: 700; padding: .15rem .6rem; border-radius: 100px; font-size: .72rem;
  letter-spacing: .03em;
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding-top: .9rem; padding-bottom: .9rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 42px; width: auto; }
.brand-text { font-family: "Changa", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 600; font-size: .95rem; color: var(--navy); position: relative; padding: .3rem 0;
}
.nav-links a[aria-current="page"] { color: var(--teal-dark); }
.nav-links a:hover { color: var(--teal-dark); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.menu-toggle {
  display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: .3rem;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 5.5rem 1.5rem 2rem; gap: .2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s ease; z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .85rem .5rem; font-size: 1.02rem; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-primary { padding: .7rem 1.1rem; font-size: .88rem; }
  .menu-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0; }
  .topbar .call-desktop { display: none; }
}

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--muted); padding: 1.1rem 0; }
.breadcrumb a { color: var(--teal-dark); font-weight: 600; }
.breadcrumb span { margin: 0 .4rem; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--paper-soft); }
.hero-blob {
  position: absolute; border-radius: 50%; background: var(--teal); opacity: .12; filter: blur(10px);
}
.hero .wrap {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: 4.5rem 1.5rem;
}
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--line);
  padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-stat {
  position: absolute; bottom: -1.2rem; left: -1.2rem; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 1rem 1.3rem; display: flex; gap: .8rem; align-items: center;
}
.hero-stat strong { display: block; font-family: "Changa", sans-serif; font-size: 1.4rem; color: var(--teal-dark); }
.hero-stat span { font-size: .78rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-media { order: -1; }
}

/* Cards grid */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--teal-tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--teal-dark); font-weight: 700; font-size: .9rem; margin-top: .8rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

.service-card.emergency { background: var(--navy); border-color: var(--navy); }
.service-card.emergency h3, .service-card.emergency p { color: #fff; }
.service-card.emergency .card-icon { background: rgba(255,255,255,.12); color: var(--coral); }

/* Why us / features */
.feature-row { display: flex; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }

/* Team */
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius); object-fit: cover; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.team-role { color: var(--teal-dark); font-weight: 700; font-size: .9rem; margin-bottom: .6rem; display: block; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid a { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* FAQ accordion */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .9rem; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 1.2rem 1.4rem; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; font-family: "Changa", sans-serif; font-size: 1.02rem; color: var(--navy);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: transform .2s ease; }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq-item[data-open="true"] .faq-a { max-height: 600px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { margin-top: 1.5rem; }
.info-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-item strong { display: block; color: var(--navy); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 340px; border: 0; }
@media (max-width: 620px) { .map-frame iframe { height: 240px; } }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font: inherit; color: var(--ink); background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
@media (max-width: 480px) { .form-card { padding: 1.4rem; } }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--teal-dark); }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe3e3; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-band { padding: 2.2rem 1.4rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

/* Footer */
footer.site-footer { background: var(--navy-deep); color: #b9c4d6; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-grid ul li { margin-bottom: .6rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: #8ea0bd; font-size: .92rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; transition: background .15s ease;
}
.social-row a:hover { background: var(--teal); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .85rem;
}

/* WhatsApp float button */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: #fff; padding: 3.2rem 0 3.6rem; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #b9cfcf; max-width: 640px; }
.page-hero .breadcrumb { color: #9fb3b3; }
.page-hero .breadcrumb a { color: #cfe9e9; }

/* Content list styling within service pages */
.content-block ul { margin: 0 0 1.4rem; }
.content-block ul li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--ink); }
.content-block ul li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
}
.side-card { background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.side-card h3 { font-size: 1rem; }
.mini-services { margin-top: 1rem; }
.mini-services a { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .92rem; }
.mini-services a:last-child { border-bottom: none; }
.mini-services a:hover { color: var(--teal-dark); }

.badge-soon { display: inline-block; background: var(--coral); color: #fff; font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 100px; margin-left: .5rem; vertical-align: middle; }
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state .card-icon { margin: 0 auto 1.2rem; }

.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

.marquee-note { text-align: center; font-size: .85rem; color: var(--muted); margin-top: .8rem; }

/* Blog: listing cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.post-card-date { font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-dark); }
.post-card h3 { font-size: 1.05rem; margin: .5rem 0 .5rem; }
.post-card p { font-size: .92rem; margin: 0; }

/* Blog: article page */
.post-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.post-meta { font-size: .85rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .3rem; display: block; }
.content-block h2 { font-size: 1.35rem; }
.content-block h3 { font-size: 1.08rem; }
.info-box { margin-top: 2.2rem; padding: 1.5rem 1.7rem; background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.info-box p { margin: 0; color: var(--ink); }
.related-posts { margin-top: 1rem; }
.related-posts a { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .9rem; }
.related-posts a:last-child { border-bottom: none; }
.related-posts a:hover { color: var(--teal-dark); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-stars { color: var(--coral); font-size: .95rem; letter-spacing: .1em; margin-bottom: .7rem; }
.review-text { font-size: .92rem; color: var(--ink); flex: 1; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.review-author strong { color: var(--navy); font-size: .92rem; }
.review-author span { color: var(--muted); }
