/* ====== GLOBAL LAYOUT ====== */
.container-custom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* ====== MAP INFO WINDOW STYLING ====== */
.project-map-info-window {
  padding: 16px;
  max-width: 320px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 8px;
  background: #ffffff;
}

.map-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.map-info-icon {
  background: linear-gradient(135deg, #1f5c57 0%, #1a4a46 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.map-info-icon i {
  font-size: 18px;
}

.map-info-title h4 {
  margin: 0;
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
}

.map-info-title p {
  margin: 4px 0 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

.map-info-address {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.map-info-address p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.map-info-address strong {
  color: #d4af37;
}

.map-info-actions {
  display: none;
}

.map-info-btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.map-info-btn-primary {
  background: #1a1a2e;
  color: white;
}

.map-info-btn-primary:hover {
  background: #2a2a3e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

.map-info-btn-whatsapp {
  background: #25d366;
  color: white;
}

.map-info-btn-whatsapp:hover {
  background: #1fa855;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.map-info-btn span {
  font-weight: 500;
}

/* ====== PROFESSIONAL MAP CONTROL ====== */
.project-control-content {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.project-control-content i {
  color: #d92550;
  font-size: 16px;
}

.project-control-content span {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.project-map-control:hover {
  background: #d92550;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 37, 80, 0.3);
}

.project-map-control:hover .project-control-content i,
.project-map-control:hover .project-control-content span {
  color: #ffffff;
}

/* ====== MAP INFO AND NO-MAP STYLING ====== */
.map-info {
  padding: 2rem;
  text-align: center;
}

.map-info .no-data {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.map-info .no-data i {
  font-size: 3rem;
  color: #dee2e6;
  margin-bottom: 1rem;
  display: block;
}

.map-info .no-data h4 {
  color: #666;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-info .no-data p {
  color: #999;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====== MAP CONTAINER ====== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #f8f9fa;
}

.map-container iframe,
.map-container #contact-map {
  border: none;
}

/* ====== CARD SYSTEM (REUSABLE FOR ALL PAGES) ====== */
.card-custom {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ====== IMAGE ====== */
.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  margin-top: 0;
  margin-bottom: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: 0;
  padding: 0;
  display: block;
}

.card-custom:hover .card-image img {
  transform: scale(1.05);
}

/* ====== BADGES ====== */
.badge-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-primary, #1f5c57);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ====== CONTENT ====== */
.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-type {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
}

.card-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* ====== SPECS ====== */
.card-specs {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  /* border-bottom: 1px solid #eee; */
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* ====== BUTTONS ====== */
.btn-primary-custom {
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--color-primary-dark, #1a4a46);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1fa855;
  color: #fff;
}

/* ====== PROJECT ACTIONS ====== */
.project-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.project-actions a {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ====== GRID SYSTEM ====== */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* ====== FILTERS SECTION ====== */
.filters-section {
  padding: 1.5rem;
}

.filters-section.card-custom {
  transform: none !important;
  transition: none !important;
}

.filters-section.card-custom:hover {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.filters-section .form-select,
.filters-section .form-control {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
}

.filters-section .form-select:focus,
.filters-section .form-control:focus {
  border-color: var(--color-primary, #1f5c57);
  box-shadow: 0 0 0 0.2rem rgba(31, 92, 87, 0.25);
}

/* ====== STATES ====== */
.loading-state,
.empty-state,
.error-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
}

/* When empty state is alone in grid container */
.grid-auto > .empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

/* When loading state is alone in grid container */
.grid-auto > .loading-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.empty-state i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  color: #666;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.loading-state p {
  margin-top: 1rem;
  color: #666;
  font-size: 1.1rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .grid-auto {
    grid-template-columns: 1fr;
  }

  .container-custom {
    padding: 1rem;
  }

  .card-image {
    height: 180px;
  }

  .project-actions {
    flex-direction: column;
  }
  .project-map-info-window {
    display: none;
  }
}

/* Project Detail Specific Styles */
.project-hero {
  background: linear-gradient(
    135deg,
    var(--color-secondary, #d4af37) 0%,
    var(--color-primary, #1f5c57) 100%
  );
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.project-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.project-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading, "Playfair Display", serif);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.project-hero .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 300;
}

.project-hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  font-size: 1rem;
}

/* Loading State */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spinner {
  border: 4px solid rgba(31, 92, 87, 0.1);
  border-top: 4px solid var(--color-primary, #1f5c57);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Project Sections */
.project-section {
  padding: 80px 0;
  background: white;
}

.project-section:nth-child(even) {
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary, #1f5c57);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading, "Playfair Display", serif);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Overview Section */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-text {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border-left: 4px solid var(--color-primary, #34c759);
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  /* ... */
  color: #555;
  margin: 0;
}

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

.stat-items {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-items:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary, #34c759);
}

/* Configuration Section */
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.config-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.config-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.config-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #1f5c57),
    var(--color-primary-dark, #1a4a46)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.config-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.config-details p {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.config-details strong {
  color: #333;
  font-weight: 600;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #1f5c57),
    var(--color-primary-dark, #1a4a46)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.location-text p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.amenity-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #1f5c57),
    var(--color-primary-dark, #1a4a46)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.amenity-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.amenity-text p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Highlights Section */
.highlights-list {
  display: grid;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  gap: 2rem;
  align-items: start;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #34c759),
    var(--color-primary-dark, #2e865f)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.video-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(31, 92, 87, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.video-play-btn:hover {
  background: rgba(31, 92, 87, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-secondary, #d4af37) 0%,
    var(--color-primary, #1f5c57) 100%
  );
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading, "Playfair Display", serif);
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: white;
  color: var(--color-primary, #1f5c57);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* No Data State */
.no-data {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border: 2px dashed #dee2e6;
}

.no-data i {
  font-size: 3rem;
  color: #dee2e6;
  margin-bottom: 1rem;
}

.no-data h4 {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.no-data p {
  color: #999;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-hero h1 {
    font-size: 2.5rem;
  }

  .project-hero .subtitle {
    font-size: 1.1rem;
  }

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

  .overview-stats {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .project-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .project-hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .config-grid,
  .amenities-grid,
  .gallery-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ====== CONTACT FORM STYLES ====== */

/* Phone Input with Country Code */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}
.phone-input-group select {
  width: auto;
  min-width: 100px;
  flex-shrink: 0;
}
.phone-input-group input {
  flex: 1;
}

/* City Autocomplete */
.city-autocomplete-container {
  position: relative;
}
.city-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.city-suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.city-suggestion-item:hover {
  background-color: #f8f9fa;
}
.city-suggestion-item:last-child {
  border-bottom: none;
}
.city-name {
  font-weight: 500;
}
.city-state {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Form Alert Messages */
.form-alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  align-items: flex-start;
  gap: 12px;
}
.form-alert.show {
  display: flex;
}
.form-alert.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.form-alert.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.form-alert.warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}
.form-alert i {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.form-alert-content {
  flex: 1;
}
.form-alert-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.form-alert-message {
  font-size: 0.95rem;
}

/* Field-level validation errors */
.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}
.field-error.show {
  display: block;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-valid {
  border-color: #28a745;
}
