/* ============================================
   ATAK GRUP - Main Stylesheet
   Design System: High-End Marketplace Editorial
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #b91c1c;
  --primary-container: #dc2626;
  --on-primary: #ffffff;
  --on-primary-container: #7f1d1d;
  --surface: #fbf9f8;
  --surface-dim: #dcd9d9;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f2;
  --surface-container: #f0eded;
  --surface-container-high: #eae8e7;
  --surface-container-highest: #e4e2e1;
  --on-surface: #1b1c1c;
  --on-surface-variant: #564334;
  --outline: #897362;
  --outline-variant: #ddc1ae;
  --secondary: #5f5e5e;
  --secondary-container: #e4e2e1;
  --tertiary-container: #caa600;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

ul, ol {
  list-style: none;
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sunrise-gradient {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  width: 100%;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--on-surface);
}

.header__menu {
  display: flex;
  gap: 32px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.header__menu a {
  color: #6b7280;
  transition: color 0.3s;
  padding-bottom: 4px;
}

.header__menu a:hover {
  color: var(--on-surface);
}

.header__menu a.active {
  color: #dc2626;
  font-weight: 700;
  border-bottom: 2px solid #dc2626;
}

.header__cta {
  display: inline-block;
  background: #b91c1c;
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
}

.header__cta:hover {
  background: #991b1b;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--surface);
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__panel a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--on-surface);
  border-bottom: 1px solid var(--surface-container-high);
  transition: color 0.2s;
}

.mobile-menu__panel a:hover,
.mobile-menu__panel a.active {
  color: var(--primary-container);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.7);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero__title {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  line-height: 1.35;
}

/* ---------- SEARCH BOX ---------- */
.search-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 28px 28px;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.search-box__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.search-box__tab {
  padding: 9px 26px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  background: transparent;
  color: #57534e;
}

.search-box__tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.25);
}

.search-box__tab:hover:not(.active) {
  background: #f5f5f4;
  color: var(--on-surface);
}

.search-box__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
}

.search-box__fields select,
.search-box__fields input {
  width: 100%;
  height: 48px;
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  border-radius: 0.625rem;
  padding: 0 14px;
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.search-box__fields select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='%2378716c' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.search-box__fields select:focus,
.search-box__fields input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
  background: #fff;
}

.search-box__price-group {
  display: flex;
  gap: 6px;
}

.search-box__price-group input {
  width: 50%;
}

.search-box__btn {
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  width: 100%;
  padding: 0 24px;
  white-space: nowrap;
}

.search-box__btn:hover {
  background: #991b1b;
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.25);
}

.search-box__btn .material-symbols-outlined {
  font-size: 1.125rem;
}

/* ---------- CATEGORIES SECTION ---------- */
.categories {
  padding: 96px 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.category-card__content {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.category-card__content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.category-card__content p {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- FEATURED LISTINGS ---------- */
.featured {
  padding: 96px 0;
  background: var(--surface-container-low);
}

.featured__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.featured__header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.featured__header p {
  color: var(--on-surface-variant);
  max-width: 560px;
}

.featured__view-all {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  flex-shrink: 0;
}

.featured__view-all:hover {
  gap: 16px;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Listing Card */
.listing-card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.listing-card:hover {
  box-shadow: 0 20px 40px rgba(185, 28, 28, 0.08);
}

.listing-card__img {
  position: relative;
  height: 256px;
  overflow: hidden;
}

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

.listing-card:hover .listing-card__img img {
  transform: scale(1.05);
}

.listing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.listing-card__badge--new {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

.listing-card__badge--deal {
  background: #dc2626;
  color: #fff;
}

.listing-card__body {
  padding: 24px;
}

.listing-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.listing-card__location {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.listing-card__location .material-symbols-outlined {
  font-size: 0.875rem;
}

.listing-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.listing-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.listing-card__fav {
  background: none;
  color: var(--on-surface-variant);
  transition: color 0.2s;
}

.listing-card__fav:hover {
  color: var(--primary);
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: 128px 0;
}

.services__header {
  text-align: center;
  margin-bottom: 80px;
}

.services__header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.services__header-line {
  width: 96px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: var(--radius-full);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.services__grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--surface-container-low);
  padding: 40px;
  border-radius: var(--radius-2xl);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary-container);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 32px;
  transition: transform 0.3s;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card__link .material-symbols-outlined {
  font-size: 0.875rem;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: 96px 0;
  background: var(--on-surface);
  color: #fff;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text-area {
  position: relative;
}

.about__glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(185, 28, 28, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.about__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 32px;
  position: relative;
}

.about__title span {
  color: var(--primary-container);
}

.about__desc {
  color: var(--secondary-container);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.8;
}

.about__list {
  margin-bottom: 40px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about__list .material-symbols-outlined {
  color: var(--primary-container);
  font-variation-settings: 'FILL' 1;
}

.about__btn {
  background: #fff;
  color: var(--on-surface);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all 0.3s;
}

.about__btn:hover {
  background: var(--primary-container);
  color: #fff;
}

.about__image-area {
  position: relative;
}

.about__image-glow {
  position: absolute;
  inset: -16px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-3xl);
  filter: blur(20px);
  transition: filter 0.3s;
}

.about__image-area:hover .about__image-glow {
  filter: blur(32px);
}

.about__image-area img {
  position: relative;
  border-radius: var(--radius-2xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ---------- MAP SECTION ---------- */
.map-section {
  padding: 96px 0;
}

.map-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 32px;
}

.map-section__header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.map-section__toggle {
  display: flex;
  background: var(--surface-container);
  padding: 4px;
  border-radius: 1rem;
}

.map-section__toggle-btn {
  padding: 8px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s;
  background: transparent;
  color: var(--on-surface-variant);
}

.map-section__toggle-btn.active {
  background: #fff;
  color: var(--on-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container {
  position: relative;
  height: 600px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--surface-container-high);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.06);
}

.map-container__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#444cf7 0.5px, var(--surface) 0.5px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.map-container__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.map-container__info {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-container__info h5 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.map-container__bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.map-container__bar-row:last-child {
  margin-bottom: 0;
}

.map-container__bar-row span {
  font-size: 0.875rem;
}

.map-container__bar-track {
  width: 96px;
  height: 8px;
  background: var(--surface-container);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.map-container__bar-fill {
  height: 100%;
  background: var(--primary-container);
  border-radius: var(--radius-full);
}

.map-marker {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.map-marker--lg {
  width: 40px;
  height: 40px;
  background: var(--primary-container);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  animation: pulse 2s infinite;
  top: 50%;
  left: 33%;
}

.map-marker--sm {
  width: 32px;
  height: 32px;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  top: 25%;
  right: 25%;
}

.map-marker .material-symbols-outlined {
  font-size: 0.875rem;
  font-variation-settings: 'FILL' 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0a0a0a;
  padding-top: 96px;
  padding-bottom: 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.footer__brand-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: var(--primary);
}

.footer__social-link .material-symbols-outlined {
  font-size: 0.875rem;
}

.footer__col-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 16px;
}

.footer__links a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #ef4444;
}

.footer__newsletter-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer__newsletter-form {
  display: flex;
}

.footer__newsletter-input {
  background: #111827;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0 16px;
  width: 100%;
  color: #fff;
  font-size: 0.875rem;
  height: 44px;
}

.footer__newsletter-input::placeholder {
  color: #6b7280;
}

.footer__newsletter-btn {
  background: var(--primary);
  padding: 0 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  height: 44px;
  display: flex;
  align-items: center;
}

.footer__newsletter-btn .material-symbols-outlined {
  color: #fff;
}

.footer__bottom {
  padding-top: 48px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer__bottom-links {
  display: flex;
  gap: 32px;
}

.footer__bottom-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: #ef4444;
}

/* ---------- MOBILE BOTTOM NAV ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #f3f4f6;
  height: 80px;
}

.mobile-bottom-nav__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 16px;
}

.mobile-bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
}

.mobile-bottom-nav__link.active {
  color: #dc2626;
}

.mobile-bottom-nav__link.active .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
}

.mobile-bottom-nav__add {
  position: relative;
  top: -24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.mobile-bottom-nav__add .material-symbols-outlined {
  font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid,
  .services__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__menu {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  /* Hero */
  .hero {
    height: 70vh;
    min-height: 420px;
  }

  .hero__title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .search-box {
    padding: 16px 18px 20px;
    max-width: 100%;
    border-radius: 1rem;
  }

  .search-box__tabs {
    justify-content: center;
  }

  .search-box__tab {
    padding: 8px 20px;
    font-size: 0.8125rem;
  }

  .search-box__fields {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Categories */
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-card {
    height: 280px;
  }

  /* Featured */
  .featured__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .featured__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Services */
  .services {
    padding: 64px 0;
  }

  .services__grid,
  .services__grid--four {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-area img {
    height: 350px;
  }

  /* Map */
  .map-container {
    height: 400px;
  }

  .map-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 65vh;
    min-height: 380px;
  }

  .search-box {
    padding: 14px 14px 16px;
  }

  .search-box__fields {
    padding: 8px;
    gap: 8px;
  }

  .category-card {
    height: 220px;
  }

  .category-card__content h3 {
    font-size: 1.5rem;
  }
}
