/* ==========================================================================
   Umut Tadilat — Premium Stylesheet (Vanilla CSS)
   Colors: Dark Navy (#0B192C), Gold (#E5A93B), Ice White (#F4F6F9), WhatsApp (#25D366)
   ========================================================================== */

/* Fontlar artık HTML <head> içinden preconnect + <link> ile yükleniyor (render-blocking @import kaldırıldı) */

:root {
  --navy: #121212;
  --navy-light: #1E1E1E;
  --gold: #DFB15B;
  --gold-dark: #C99B3B;
  --gold-glow: rgba(223, 177, 91, 0.35);
  --bg-light: #F5F5F7;
  --bg-white: #FFFFFF;
  --text-dark: #121212;
  --text-muted: #78828A;
  --text-white: #F8FAF8;
  --whatsapp: #25D366;
  --danger: #EF4444;
  --border-light: rgba(18, 18, 18, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(18, 18, 18, 0.04);
  --shadow-md: 0 8px 30px rgba(18, 18, 18, 0.06);
  --shadow-lg: 0 20px 50px rgba(18, 18, 18, 0.12);
  
  --t-base: 0.35s;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & CORE ──────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

li {
  list-style: none;
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────────────── */
.anim-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
  transition-delay: var(--stagger, 0ms);
}

.anim-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CONTAINER & HEADER ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--t-base) ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.top-strip {
  background: var(--navy);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
}

.top-strip a {
  color: var(--gold);
  font-weight: 700;
  margin-left: 8px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.brand h1,
.brand h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

.brand h1 span,
.brand h2 span {
  color: var(--gold);
}

.brand p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 1px;
  line-height: 1;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-menu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-light);
  position: relative;
  padding: 6px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* ─── HERO SECTION ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background: var(--navy);
  color: var(--text-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 680px;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 59, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h2 span {
  color: var(--gold);
}

.hero p.lead {
  font-size: 18px;
  color: #D1D5DB;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.badge-item svg {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-back);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--gold-glow);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.hero-media {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(229, 169, 59, 0.2);
  padding-bottom: 10px;
}

/* Background Blobs */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  z-index: 1;
}

/* ─── SECTION COMMON ───────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-white);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-head p {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-size: 14px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
}

/* ─── TRUST STATS BAND ─────────────────────────────────────────────────── */
.trust-band {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border: 1px solid var(--border-light);
}

.trust-item {
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item strong span {
  color: var(--gold);
}

.trust-item span.label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── PRICING PACKAGES (Boya) ────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 35px 24px;
  text-align: center;
  position: relative;
  transition: all var(--t-base) var(--ease-expo);
  box-shadow: var(--shadow-sm);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--border-light);
  border-radius: 20px 20px 0 0;
  transition: background var(--t-base) ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 169, 59, 0.25);
}

.package-card:hover::before {
  background: var(--gold);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.package-card.featured::before {
  background: var(--gold);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px var(--gold-glow);
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.package-features {
  margin-bottom: 30px;
  text-align: left;
}

.package-features li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── SERVICES GRID ────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  transition: all var(--t-base) var(--ease-expo);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 169, 59, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(11, 25, 44, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ─── PROCESS STEPS ────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg-light);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── REVIEWS SLIDER ───────────────────────────────────────────────────── */
.reviews-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 30px;
  animation: scrollSlider 30s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  width: 380px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
}

.review-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy-light);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── DISTRICTS MAP ────────────────────────────────────────────────────── */
.geo-section {
  background: var(--bg-white);
}

.geo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.map-container {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.istanbul-svg {
  width: 100%;
  height: auto;
  fill: #CBD5E1;
  stroke: #F8FAFC;
  stroke-width: 1.5;
}

.istanbul-svg path {
  transition: fill 0.3s ease;
  cursor: pointer;
}

.istanbul-svg path:hover {
  fill: var(--gold);
}

.istanbul-svg path.active {
  fill: var(--navy);
}

.districts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.districts-list a {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--navy-light);
}

.districts-list a:hover {
  border-color: var(--gold);
  background: rgba(229, 169, 59, 0.05);
  color: var(--gold-dark);
}

/* ─── CONTACT FORM ─────────────────────────────────────────────────────── */
.contact-section {
  background: var(--navy);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 10;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info p {
  color: #CBD5E1;
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.detail-content p, .detail-content a {
  font-size: 16px;
  font-weight: 600;
}

.detail-content a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-hp {
  display: none !important;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(229, 169, 59, 0.2);
}

textarea.form-control {
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  min-height: 20px;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand h2 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-links h3 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ─── FLOATING & STICKY ELEMENTS ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--whatsapp);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: float 4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--navy);
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.sticky-btn.call {
  background: var(--gold);
  color: var(--navy);
}

.sticky-btn.whatsapp {
  background: var(--whatsapp);
}

/* ─── BLOG PAGE & DETAIL STYLES ────────────────────────────────────────── */
.blog-hero {
  padding: 80px 0;
  background: var(--navy);
  color: var(--text-white);
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-wrapper img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Subpage / Article styles */
.article-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px;
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  margin-top: -60px;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-light);
}

.article-header {
  margin-bottom: 40px;
  text-align: center;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.article-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
  font-weight: 600;
}

.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 20px;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
}

.article-body ul, .article-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.article-body blockquote {
  margin: 40px 0;
  padding: 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-weight: 500;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.article-body th, .article-body td {
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  text-align: left;
}

.article-body th {
  background: var(--bg-light);
  color: var(--navy);
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--gold-dark);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ─── ANIMATION KEYFRAMES ────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-380px * 5 - 30px * 5)); } /* adjust based on items count */
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ─── MEDIA QUERIES ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-media {
    max-width: 500px;
    margin: 0 auto;
  }
  .packages-grid, .services-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    border-right: none;
  }
  .trust-item:nth-child(2n) {
    border-left: 1px solid var(--border-light);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero p.lead {
    font-size: 16px;
  }
  .site-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .site-menu.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .districts-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .whatsapp-float {
    display: none; /* Show sticky bar on mobile instead */
  }
  .sticky-bottom-bar {
    display: grid;
  }
  body {
    padding-bottom: 60px; /* Space for sticky bar */
  }
  .article-section {
    padding: 40px 16px;
    margin-top: -30px;
  }
  .article-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .packages-grid, .services-grid, .process-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .trust-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-item:nth-child(2n) {
    border-left: none;
  }
  .trust-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
  }
  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .districts-list {
    grid-template-columns: 1fr;
  }
}
