/* Packages Page Custom CSS */

/* Import base styles */
:root {
  --iraq-orange: #f97316;
  --iraq-orange-dark: #ea580c;
  --iraq-orange-darker: #c2410c;
  --sand-light: #fdf2e7;
  --sand-medium: #f7cd9f;
  --sand-dark: #ed9455;
  --emerald: #10b981;
  --emerald-dark: #059669;
}

/* Base Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Custom Utilities */
.text-primary-custom {
  color: var(--iraq-orange) !important;
}

/* Filter Section Styles */
.filter-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-box .input-group {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}

.search-box .form-control {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--iraq-orange);
}

.search-box .input-group-text {
  border: none;
  background: white;
  padding: 0.75rem 1rem;
}

.filter-section .form-select {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-section .form-select:focus {
  border-color: var(--iraq-orange);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.filter-section .btn-outline-secondary {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-section .btn-outline-secondary:hover {
  background-color: var(--iraq-orange);
  border-color: var(--iraq-orange);
  color: white;
}

/* Loading and Error States */
.loading-spinner {
  text-align: center;
  padding: 2rem;
}

.loading-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
}

.no-packages {
  text-align: center;
  padding: 3rem 1rem;
}

.no-packages i {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Package Card Improvements */
.package-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--iraq-orange);
}

.package-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.optimization-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.package-content {
  padding: 1.5rem;
}

.package-title {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.package-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.package-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.detail-item i {
  color: var(--iraq-orange);
  font-size: 0.9rem;
}

.package-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.city-tag {
  background: rgba(249, 115, 22, 0.1);
  color: var(--iraq-orange);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.package-highlights {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.package-highlights strong {
  color: #374151;
}

.package-price {
  text-align: center;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--iraq-orange);
}

.package-actions {
  display: flex;
  gap: 0.5rem;
}

.package-actions .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .filter-section .row {
    gap: 1rem;
  }
  
  .search-box {
    margin-bottom: 1rem;
  }
  
  .package-actions {
    flex-direction: column;
  }
  
  .package-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.bg-primary-custom {
  background-color: var(--iraq-orange) !important;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--iraq-orange),
    var(--iraq-orange-dark)
  );
  border: none;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(
    135deg,
    var(--iraq-orange-dark),
    var(--iraq-orange-darker)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  color: white;
}

.btn-primary-custom.active {
  background: linear-gradient(
    135deg,
    var(--iraq-orange-dark),
    var(--iraq-orange-darker)
  );
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.hero-gradient {
  background: linear-gradient(
    135deg,
    var(--iraq-orange) 0%,
    var(--iraq-orange-dark) 50%,
    var(--iraq-orange-darker) 100%
  );
}

/* Glass Effect */
.glass-nav {
  backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(251, 226, 199, 0.3);
}

/* Hover Lift Effect */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease-out;
}

/* Navigation */
.navbar-brand .brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--iraq-orange-darker);
  margin: 0;
}

.navbar-brand .brand-subtitle {
  font-size: 0.75rem;
  color: var(--sand-dark);
  margin: -0.25rem 0 0 0;
}

.logo-icon {
  background: linear-gradient(
    135deg,
    var(--iraq-orange),
    var(--iraq-orange-dark)
  );
  padding: 0.5rem;
  border-radius: 0.75rem;
}

.logo-icon i {
  color: white;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link.active {
  color: var(--iraq-orange) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--iraq-orange),
    var(--iraq-orange-dark)
  );
  border-radius: 1px;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}



/* Package Cards */
.package-item {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease-out forwards;
}

.package-item:nth-child(1) {
  animation-delay: 0.1s;
}
.package-item:nth-child(2) {
  animation-delay: 0.2s;
}
.package-item:nth-child(3) {
  animation-delay: 0.3s;
}
.package-item:nth-child(4) {
  animation-delay: 0.4s;
}
.package-item:nth-child(5) {
  animation-delay: 0.5s;
}
.package-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* === توحيد ألوان كارد البكج مع كارد التور === */
.package-card, .card.package-card, .card.h-100.package-card {
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid #f3f4f6;
  background: #fff;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.package-card:hover, .card.package-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-8px);
}
.card-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}
@media (max-width: 768px) {
  .card-img-container { height: 150px; }
}
@media (max-width: 576px) {
  .card-img-container { height: 110px; }
}
.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem 1.2rem 0 0;
  transition: transform 0.5s;
}
.package-card:hover .card-img-top {
  transform: scale(1.1);
}
.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.badge {
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
}
.package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card:hover .package-overlay {
  opacity: 1;
}

.view-details {
  border-radius: 2rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.package-card:hover .view-details {
  transform: translateY(0);
}

/* City Tags */
.city-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.125rem;
  box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
  transition: all 0.3s ease;
}

.city-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

/* Package Highlights */
.package-highlights {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.package-highlights strong {
  color: var(--iraq-orange);
  font-weight: 600;
}

/* Loading Spinner */
.spinner-border.text-primary-custom {
  color: var(--iraq-orange) !important;
}

/* Alert Styling */
.alert {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

/* Package Details */
.package-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.detail-item i {
  color: var(--iraq-orange);
  width: 16px;
}

/* Package Cities */
.package-cities {
  margin: 1rem 0;
}

/* Package Actions */
.package-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.package-actions .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* Package Card Improvements */
.package-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.package-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.optimization-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.package-content {
  padding: 1.5rem;
}

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

.package-meta {
  margin-bottom: 1rem;
}

.package-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cities-container {
  margin-bottom: 1rem;
}

.package-details {
  margin-bottom: 1rem;
}

.detail-item {
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
}

.detail-item i {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.package-price {
  text-align: center;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--iraq-orange);
}

.package-actions {
  margin-top: auto;
}

/* Package Content */
.package-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.package-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.detail-item i {
  width: 16px;
  text-align: center;
}

/* Package Highlights */
.highlights-title {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlights-list li {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}
.highlights-list li::before {
  content: "▸";
  color: var(--iraq-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Package Includes */
.includes-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.include-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sand-light);
  border-radius: 50%;
  color: var(--iraq-orange);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.include-item:hover {
  background: var(--iraq-orange);
  color: white;
  transform: scale(1.1);
}

/* Package Footer */
.card-footer {
  background: transparent;
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem 0 0 0;
  margin-top: 1rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--iraq-orange);
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--iraq-orange);
}

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



/* No Results */
.no-results {
  padding: 3rem 0;
}

.no-results i {
  font-size: 4rem;
  display: block;
}

/* Custom Packages Section */
.custom-packages {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Why Choose Us */
.feature-card {
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    135deg,
    var(--iraq-orange),
    var(--iraq-orange-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Modal Styles */
.modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 600;
  color: #1f2937;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%);
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--iraq-orange);
}

.contact-links a {
  transition: all 0.3s ease;
}

.contact-links a:hover {
  color: var(--iraq-orange) !important;
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

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



  .card-img-container {
    height: 150px;
  }

  .package-details {
    flex-direction: column;
  }

  .detail-item {
    font-size: 0.8rem;
  }

  .includes-icons {
    justify-content: center;
  }

  .package-price {
    text-align: center;
    margin-bottom: 1rem;
  }

  .card-footer .d-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
  }

  .custom-packages .row {
    text-align: center;
    gap: 1rem;
  }
}

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

  .navbar-brand .brand-title {
    font-size: 1.1rem;
  }

  .navbar-brand .brand-subtitle {
    font-size: 0.7rem;
  }

  .package-item {
    margin-bottom: 1.5rem;
  }

  .card-img-container {
    height: 110px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .highlights-list li {
    font-size: 0.8rem;
  }

  .modal-dialog {
    margin: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
.nav-link:focus,
.package-card:focus {
  outline: 2px solid var(--iraq-orange);
  outline-offset: 2px;
}

.package-card {
  cursor: pointer;
}

.package-card:focus {
  transform: translateY(-4px);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .package-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .package-card {
    border: 1px solid #333;
  }

  .feature-card {
    border: 1px solid #333;
  }
}

/* Print Styles */
@media print {
  .navbar,

  .package-overlay,
  .cta-section,
  .footer-section {
    display: none !important;
  }

  .package-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
    margin-bottom: 1rem;
  }

  .package-badge,
  .includes-icons {
    display: none;
  }
}

/* Loading Animation */
.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--iraq-orange);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Comparison Table Styles (for future enhancement) */
.comparison-table {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: var(--sand-light);
  color: var(--iraq-orange);
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.comparison-table td {
  border: none;
  padding: 1rem;
  vertical-align: middle;
}

.comparison-table tr:nth-child(even) {
  background: #f9fafb;
}

/* === Unify Package Card Colors with Tour Card === */
.card-title,
.package-card .card-title {
  color: var(--iraq-orange) !important;
  font-weight: 700;
}
.highlights-list li {
  color: #6b7280 !important;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.2rem;
}
.highlights-list li::before {
  content: "▸";
  color: var(--iraq-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1em;
}
.package-card .btn,
.package-card .btn-primary-custom {
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  color: #fff;
  border: none;
  font-weight: 500;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s;
}
.package-card .btn:hover,
.package-card .btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--iraq-orange-dark), var(--iraq-orange-darker));
  color: #fff;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detail-item {
    padding: 0.25rem;
  }
  
  .detail-item i {
    font-size: 1rem;
  }
  
  .detail-item strong {
    font-size: 0.8rem;
  }
  
  .cities-container {
    max-height: 1.5rem;
  }
  
  .city-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}
