/* ==========================================================================
   AnındaÇek Oto Kurtarma & Yol Yardım - Design System (White Background Theme)
   Color Palette: White (#ffffff), Light Surface (#f8fafc), Crimson Red (#e60000), Matte Black (#0a0a0a)
   ========================================================================== */

:root {
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  
  --primary-red: #e60000;
  --primary-red-hover: #ff1a1a;
  --primary-red-glow: rgba(230, 0, 0, 0.25);
  --accent-red-subtle: rgba(230, 0, 0, 0.08);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --border-red: rgba(230, 0, 0, 0.3);
  
  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 10px 25px -5px rgba(230, 0, 0, 0.4);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.text-muted { color: var(--text-muted); }

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.section-title span {
  color: var(--primary-red);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(230, 0, 0, 0.5);
}

.btn-black {
  background: #0a0a0a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-black:hover {
  background: #222222;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2cf076 0%, #15a393 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.pulse-animation {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* --- Header / Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 2px solid var(--primary-red);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-text {
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-text span {
  color: var(--primary-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: 75vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #0a0a0a;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: var(--primary-red);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
}

.hero-feature-item svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
  outline: 1px solid var(--border-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* --- About Section --- */
.about-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 460px;
  display: flex;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-experience-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #0a0a0a;
  color: #ffffff;
  border: 2px solid var(--primary-red);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-experience-badge .years {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a0a0a;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Services Section --- */
.services-section {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
  box-shadow: 0 16px 35px rgba(230, 0, 0, 0.12);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-red-hover);
}

/* --- Gallery Section --- */
.gallery-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.9) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
}

.gallery-category {
  color: #ff6b6b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- Service Areas Section --- */
.areas-section {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

.search-box-wrapper {
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.search-input {
  width: 100%;
  background: #ffffff;
  border: 2px solid var(--border-light);
  color: #0a0a0a;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.area-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.1);
}

.area-card svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

.area-card span {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0a0a0a;
}

.area-card .status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 8px #22c55e;
}

/* --- Contact Section --- */
.contact-section {
  background: var(--bg-surface);
}

.contact-grid {
  width: 100%;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.contact-item-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary-red);
}

/* --- Footer --- */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  border-top: 3px solid var(--primary-red);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

/* --- Mobile Sticky Call Bar --- */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #0a0a0a;
  border-top: 2px solid var(--primary-red);
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
  .sticky-call-bar {
    display: none;
  }
}

.sticky-call-bar .btn {
  padding: 0.8rem 0.5rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  width: 100%;
}

/* --- Lightbox Modal --- */
.modal-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 50px rgba(230, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* --- Ultra Clean & Spacious Mobile Responsiveness --- */
@media (max-width: 991px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #0a0a0a;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    transition: var(--transition-normal);
  }

  .nav-menu.open {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .nav-container {
    height: 75px;
  }

  .brand-text {
    font-size: 1.5rem;
  }

  .nav-phone-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.825rem;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
  }

  .hero-image-wrapper img {
    height: 250px;
    object-fit: cover;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .about-image-wrapper {
    min-height: 250px;
    height: 250px;
  }

  .about-experience-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
  }

  .about-experience-badge .years {
    font-size: 1.6rem;
  }

  .about-experience-badge .text {
    font-size: 0.65rem;
  }

  .stats-grid {
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-item {
    height: 230px;
  }

  .search-box-wrapper {
    margin-bottom: 1.75rem;
  }

  .search-input {
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-size: 0.925rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .area-card {
    padding: 0.85rem 0.95rem;
  }

  .area-card span {
    font-size: 0.85rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-item-card {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
