:root {
  --primary-blue: #0066CC;
  --primary-blue-dark: #0052A3;
  --primary-blue-light: #3385D6;
  --accent-blue: #00A3E0;
  --dark-navy: #0A2540;
  --light-bg: #F7FAFC;
  --text-dark: #1A202C;
  --text-muted: #718096;
  --hero-offset: 0px;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.home-page .page-wrapper {
  margin-top: var(--hero-offset);
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.home-page .page-wrapper main {
  padding-top: 0;
}

.home-page .container.my-4:first-of-type {
  margin-top: 0 !important;
}

.home-page .container.my-4:last-of-type {
  margin-bottom: 0 !important;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(0, 102, 204, 0.4);
  outline: none;
}

.card {
  border-radius: 1rem;
}

.listing-card img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.listing-card__badges {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.listing-card .card-body {
  padding: 1.25rem;
}

.listing-card .card-footer {
  border-top: none;
  padding: 1rem 1.25rem 1.25rem;
}

/* Antalya Homes Style Listing Card */
.listing-card-antalyahomes {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.listing-card-antalyahomes:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.listing-card-antalyahomes__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f0f0f0;
}

.listing-card-antalyahomes__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card-antalyahomes__new-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #dc3545;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.listing-card-antalyahomes__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.listing-card-antalyahomes__id {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.listing-card-antalyahomes__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  min-height: 3.2em;
}

.listing-card-antalyahomes__title a {
  color: #212529;
  transition: color 0.2s ease;
}

.listing-card-antalyahomes__title a:hover {
  color: #dc3545;
}

.listing-card-antalyahomes__location {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.listing-card-antalyahomes__features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #495057;
}

.listing-card-antalyahomes__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.listing-card-antalyahomes__feature i {
  color: #6c757d;
  font-size: 1rem;
}

.listing-card-antalyahomes__description {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-antalyahomes__price {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.listing-card-antalyahomes__price-label {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.listing-card-antalyahomes__price-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.listing-card-antalyahomes__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.listing-card-antalyahomes__btn-contact {
  flex: 1;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.listing-card-antalyahomes__btn-contact:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.listing-card-antalyahomes__btn-details {
  flex: 1;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.listing-card-antalyahomes__btn-details:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  color: white;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background-color: #E6F2FF;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-1px);
}

.property-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.property-meta__item {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 102, 204, 0.08);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
}

.property-gallery img {
  border-radius: 1rem;
  object-fit: cover;
}

.details-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 102, 204, 0), rgba(0, 102, 204, 0.4), rgba(0, 102, 204, 0));
  margin: 2rem 0;
}

.badge-pill {
  border-radius: 50rem;
  padding: 0.4rem 0.85rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.landing-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
}
.landing-hero--full {
  margin-top: calc(-1 * var(--hero-offset));
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 82, 163, 0.88) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(0, 102, 204, 0.85) 100%);
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: calc(-1 * var(--hero-offset));
}

.hero-slider-section .carousel {
  height: 100%;
}

.hero-slider-section .carousel-inner {
  height: 100%;
}

.hero-slider-section .carousel-item {
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: none;
  display: none;
}

.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 3rem 0;
}

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.hero-slider-section .carousel-control-prev {
  left: 2rem;
}

.hero-slider-section .carousel-control-next {
  right: 2rem;
}

/* Antalya Homes Style Search Form */
.hero-search-form-antalyahomes {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  margin-top: 2rem;
}

.search-form-main-input {
  margin-bottom: 1.25rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-with-icon {
  flex: 1;
  border: 2px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1rem 4.5rem 1rem 1.25rem;
  font-size: 1.05rem;
  height: auto;
  transition: all 0.3s ease;
  width: 100%;
}

.search-input-with-icon:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
  outline: none;
}

.btn-search-icon-inline {
  position: absolute;
  right: 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #dc3545;
  border: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn-search-icon-inline:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

.btn-search-icon-inline i {
  font-size: 1.25rem;
  color: white;
}

.search-form-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.search-form-filter-item {
  display: flex;
  flex-direction: column;
}

.search-form-filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #495057;
  margin-bottom: 0.6rem;
}

.search-form-filter-item .form-select {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  height: auto;
  transition: all 0.3s ease;
  background-color: white;
}

.search-form-filter-item .form-select:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
  outline: none;
}

.search-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.btn-more-filters {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.btn-more-filters:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  color: #212529;
}

.btn-search-main {
  background-color: #dc3545;
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.btn-search-main:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

@media (max-width: 991.98px) {
  .hero-slider-section {
    height: 600px;
  }

  .search-form-filters {
    grid-template-columns: 1fr;
  }

  .search-form-actions {
    flex-direction: column;
  }

  .search-form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-slider-section {
    height: 600px;
  }

  .hero-content-overlay {
    padding: 1.5rem 0;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-search-form-antalyahomes {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .search-input-with-icon {
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    font-size: 1rem;
  }

  .btn-search-icon-inline {
    width: 42px;
    height: 42px;
    right: 0.4rem;
  }

  .btn-search-icon-inline i {
    font-size: 1.1rem;
  }

  .about-section__banner {
    padding: 1.5rem 0;
  }

  .about-section__banner-title {
    font-size: 1.1rem;
  }

  .section-content-box {
    padding: 1.5rem;
  }

  .section-header-banner {
    padding: 0.875rem 0;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  }

  .section-header-title {
    font-size: 0.9rem;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 0.8s ease-out;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.stat-item-wide {
  grid-column: span 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  line-height: 1.2;
}

.stat-value-sm {
  font-size: 1.25rem;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.stat-currency {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  margin-top: 0.25rem;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.quicklink-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quicklink-chip:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quicklink-chip i {
  font-size: 1.1rem;
}

/* Hero Search Form */
.hero-search-form {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.search-form-item {
  display: flex;
  flex-direction: column;
}

.search-form-item-action {
  min-height: 60px;
}

.search-form-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.search-form-grid .form-select {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.95rem;
  background-color: white;
}

.search-form-grid .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.search-form-grid .btn-danger {
  background-color: #DC3545;
  border-color: #DC3545;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.search-form-grid .btn-danger:hover {
  background-color: #C82333;
  border-color: #BD2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.search-form-footer {
  margin-top: 1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.search-form-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.search-form-footer a:hover {
  opacity: 1;
}

/* About Section */
.about-section {
  background-color: var(--light-bg);
  margin-top: 0;
  padding-top: 3rem;
}

.about-section__banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  padding: 1rem 0;
  text-align: center;
  margin: -2rem -2rem 2rem -2rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.about-section__banner-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Content Box (white container for sections) */
.section-content-box {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Section Header Banner (for all sections) */
.section-header-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  padding: 1rem 0;
  text-align: center;
  margin: -2rem -2rem 2rem -2rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.section-header-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section__content {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-section__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 1.5rem;
}

.about-section__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-section__expandable {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
  animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section__toggle {
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-section__toggle:hover {
  color: var(--primary-blue-dark) !important;
}

.about-section__toggle i {
  transition: transform 0.3s ease;
}

.about-section__toggle.active i {
  transform: rotate(180deg);
}

.about-section__values {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-section__values li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #495057;
}

.about-section__values li:last-child {
  border-bottom: none;
}

.service-box {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-box__icon {
  width: 60px;
  height: 60px;
  background: #dc3545;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-box__icon i {
  font-size: 1.75rem;
  color: white;
}

.service-box__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}

.service-box__text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Top Bar Styles */
.top-bar {
  font-size: 0.875rem;
  background-color: #1a1a1a !important;
  position: relative;
  z-index: 1030;
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.top-bar .dropdown {
  position: relative;
  z-index: 1050;
}

.top-bar .dropdown-menu {
  z-index: 1050 !important;
  position: absolute !important;
}

.top-bar .dropdown-toggle::after {
  margin-left: 0.5rem;
}

.top-bar .vr {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991.98px) {
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  
  .search-form-item-action {
    min-height: auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.landing-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.landing-section__title {
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.landing-section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.landing-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.landing-pill {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--dark-navy);
  border: 1px solid rgba(0, 102, 204, 0.1);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-blue-light);
}

/* Popular Locations Section - Antalya Homes Style */
.popular-locations-header {
  margin-bottom: 2rem;
}

.popular-locations-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popular-locations-underline {
  display: flex;
  align-items: center;
  gap: 0;
}

.popular-locations-underline-red {
  width: 80px;
  height: 3px;
  background-color: #dc3545;
  margin-right: 0;
}

.popular-locations-underline-gray {
  flex: 1;
  height: 1px;
  background-color: #dee2e6;
  margin-left: 0;
}

.popular-locations-box {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.popular-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem 2rem;
}

.popular-location-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.popular-location-item:hover {
  color: var(--primary-blue);
}

.popular-location-name {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.popular-location-item:hover .popular-location-name {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

.popular-location-count {
  color: #212529;
  font-weight: 700;
  font-size: 1rem;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.landing-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 102, 204, 0.1);
  color: var(--dark-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-feature i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.landing-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-blue-light);
}

.landing-feature--muted {
  background: rgba(247, 249, 255, 0.8);
}

.landing-cta {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
  background-size: cover;
  background-position: center;
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
}

.landing-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 163, 0.88), rgba(0, 102, 204, 0.75));
}

@media (max-width: 991.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* News Cards */
.news-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.news-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.news-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 102, 204, 0.95);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.news-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.news-card__link:hover {
  color: var(--primary-blue-dark);
}

.news-card__link i {
  transition: transform 0.2s ease;
}

.news-card__link:hover i {
  transform: translateX(3px);
}

/* Sticky Navbar */
.navbar.sticky-top {
  z-index: 1020;
}

/* Ensure top bar dropdowns appear above navbar */
.top-bar {
  z-index: 1030;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.navbar .dropdown-item {
  padding: 0.75rem 1.25rem;
  transition: background-color 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--primary-blue);
}

@media (max-width: 767.98px) {
  .landing-hero__quicklinks {
    gap: 0.75rem;
  }

  .landing-section {
    padding: 3rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .news-card__image {
    height: 180px;
  }

  .popular-locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .popular-locations-title {
    font-size: 1.5rem;
  }

  .listing-card-antalyahomes__actions {
    flex-direction: column;
  }

  .listing-card-antalyahomes__btn-contact,
  .listing-card-antalyahomes__btn-details {
    width: 100%;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.cookie-consent-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-banner .btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cookie-consent-banner .btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.cookie-consent-banner .btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.cookie-consent-banner .btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.cookie-consent-banner .btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.cookie-consent-banner .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.cookie-consent-banner .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

@media (max-width: 991.98px) {
  .cookie-consent-banner {
    padding: 1.25rem 0;
  }

  .cookie-consent-title {
    font-size: 1rem;
  }

  .cookie-consent-text {
    font-size: 0.85rem;
  }

  .cookie-consent-banner .btn {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}