/* 
 * Şanlı Oto Kurtarma - Professional Design
 * Clean, modern, trustworthy
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #FBBF24;
  --primary-dark: #F59E0B;
  --dark: #111827;
  --dark-light: #1F2937;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #FFFFFF;
  --success: #10B981;
  --danger: #EF4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ============================================
   PREMIUM HEADER
============================================ */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo-img {
  height: 110px;
  width: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
  margin-top: -15px;
  margin-bottom: -15px;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: none;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  display: block;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-100);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-menu a:hover {
  color: var(--dark);
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a span {
  position: relative;
  z-index: 1;
}

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.25);
}

.nav-cta .btn:hover {
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: var(--gray-100);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--dark);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.2s;
}

.mobile-menu-toggle:hover {
  background: var(--gray-200);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(17, 24, 39, 0.92) 0%, 
    rgba(31, 41, 55, 0.88) 50%,
    rgba(17, 24, 39, 0.92) 100%
  );
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero-stats {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  margin: 56px auto 0;
  max-width: 800px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
  background: #10B981;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #059669;
}

/* ============================================
   SECTIONS
============================================ */
.section {
  padding: 80px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   MODERN TRUST SECTION
============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.trust-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  background: var(--gray-50);
}

.trust-item:hover::after {
  transform: scaleX(1);
}

.trust-icon {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
  line-height: 1;
}

.trust-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   MODERN SERVICE CARDS
============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.service-card ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* ============================================
   MODERN LOCATION GRID
============================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.location-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}

.location-card:hover h3 {
  color: var(--dark);
}

.location-card p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}

.location-card:hover p {
  color: rgba(17, 24, 39, 0.7);
}

.location-card.secondary {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.location-card.secondary:hover {
  background: var(--white);
  border-color: var(--gray-400);
}

.location-card.secondary::before {
  display: none;
}

/* ============================================
   MINIMAL STATS BAR
============================================ */
.stats-bar {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.stat-item-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat-item-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   CTA BOX
============================================ */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 56px 40px;
  border-radius: 16px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>') repeat;
  opacity: 0.3;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.125rem;
  color: rgba(17, 24, 39, 0.8);
  margin-bottom: 32px;
  position: relative;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  color: var(--gray-200);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9375rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 24px 24px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PREMIUM MOBILE BAR
============================================ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 998;
  padding: 8px 16px 12px;
  gap: 8px;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  border: none;
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 12px;
  padding: 12px 8px;
  gap: 6px;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.mobile-bar-btn:active {
  transform: scale(0.95);
}

.mobile-bar-btn::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2px;
}

/* Phone Icon */
.mobile-bar-btn.call {
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.2);
}

.mobile-bar-btn.call::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23EF4444" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

.mobile-bar-btn.call:active {
  background: rgba(239, 68, 68, 0.08);
  border-color: var(--danger);
}

/* WhatsApp Icon */
.mobile-bar-btn.whatsapp {
  color: var(--success);
  border-color: rgba(16, 185, 129, 0.2);
}

.mobile-bar-btn.whatsapp::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310B981" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path></svg>');
}

.mobile-bar-btn.whatsapp:active {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--success);
}

/* Location Icon */
.mobile-bar-btn.location {
  color: var(--primary-dark);
  border-color: rgba(245, 158, 11, 0.2);
}

.mobile-bar-btn.location::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23F59E0B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.mobile-bar-btn.location:active {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--primary-dark);
}

/* ============================================
   ACCORDION
============================================ */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.accordion-item:hover {
  border-color: var(--gray-300);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.accordion-header:hover {
  color: var(--primary-dark);
}

.accordion-icon {
  color: var(--gray-600);
  transition: transform 0.3s;
  font-size: 0.875rem;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 0 24px 24px;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
  padding: 16px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.875rem;
}

.breadcrumb-list a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--primary-dark);
}

.breadcrumb-separator {
  color: var(--gray-400);
}

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.gallery-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BLOG
============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--primary-dark);
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.contact-info-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-info-item p {
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  font-size: 0.9375rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
    height: 72px;
  }
  
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 64px;
    padding: 0 20px;
  }
  
  .logo-img {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .header-container {
    height: 64px;
  }
  
  .nav-wrapper {
    position: static;
  }
  
  .nav-wrapper.active nav {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 4px;
  }
  
  .nav-menu a {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    min-height: 550px;
  }
  
  .hero-content {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  
  .hero-stats {
    gap: 48px;
    margin-top: 40px;
  }
  
  .hero-stat-number {
    font-size: 2.5rem;
  }
  
  .hero-stat-label {
    font-size: 0.7rem;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-item {
    padding: 40px 24px;
  }
  
  .trust-icon {
    font-size: 2.25rem;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-card {
    padding: 28px 20px;
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-card[style*="grid-column"] {
    grid-column: span 1 !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
  
  .stat-item-number {
    font-size: 3rem;
  }
  
  .stat-item-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .stats-bar {
    padding: 48px 20px;
  }
  
  .stats-grid {
    gap: 40px 24px;
  }
  
  .stat-item-number {
    font-size: 2.5rem;
  }
  
  .cta-box {
    padding: 40px 24px;
    margin: 60px 0;
  }
  
  .cta-box h2 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 40px;
  }
  
  .hero-stat-number {
    font-size: 2.25rem;
  }
  
  .hero-stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ACCESSIBILITY
============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
