/* Iraq Tours Custom CSS */

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 76px;
}

.breadcrumb-nav .breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-nav .breadcrumb-item {
  font-size: 0.875rem;
  color: #6c757d;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--iraq-orange);
  font-weight: 500;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
  margin: 0 0.5rem;
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .accordion-item {
  border: none;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-section .accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: #333;
  border-radius: 1rem;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--iraq-orange);
  color: white;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
  padding: 1.5rem;
  background: white;
  color: #666;
  line-height: 1.7;
}

.faq-section .accordion-body strong {
  color: var(--iraq-orange);
  font-weight: 600;
}

/* Custom CSS Variables */
: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;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.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;
}

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

.sand-gradient {
  background: linear-gradient(
    135deg,
    var(--sand-light) 0%,
    var(--sand-medium) 50%,
    var(--sand-dark) 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);
}

/* Text Shadow */
.text-shadow {
  text-shadow: 0 2px 4px rgba(225, 183, 144, 0.1);
}

/* 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 slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

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

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

/* 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, background 0.2s, border-radius 0.2s;
}
.nav-link:hover {
  color: var(--iraq-orange) !important;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 0.5rem;
}

.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;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-subtitle-main {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  color: white;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom Carousel Indicators */
.carousel-indicators-custom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 15;
}

.carousel-indicators-custom button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators-custom button.active {
  background: white;
  transform: scale(1.2);
}

/* Sections */
.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;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--sand-light) 0%, #f9fafb 100%);
}

.guide-images-wrapper {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transform: translate(40%);
}

.guide-images-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;

}

/* Responsive design for small screens */
@media (max-width: 768px) {
  .guide-images-wrapper {
    width: 250px;
    height: 250px;
    transform: translateX(0); /* إزالة الإزاحة في الهاتف */
    margin: 0 auto; /* توسيط الصورة */
  }
}



.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--iraq-orange);
  margin-bottom: 0.5rem;
}

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

/* Tour Cards */
/* Tour section improvements */
.tours-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
}

.tours-section .section-title {
  color: var(--iraq-orange);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.tours-section .section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Tour Cards */
.tour-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  background: white;
}

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

/* Desktop improvements */
@media (min-width: 992px) {
  .tours-section {
    padding: 4rem 0;
  }
  
  .tours-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .tours-section .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .tour-card {
    margin-bottom: 2rem;
  }
  
  .tour-card .card-body {
    padding: 1.5rem;
  }
  
  .tour-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .tour-card .card-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  .tour-card .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .tour-card .h4.text-primary-custom {
    font-size: 1.8rem;
  }
  
  .tour-card .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.object-cover {
  object-fit: cover;
}

/* Ensure images maintain aspect ratio and proper sizing */
.tour-card img {
  object-fit: cover;
  object-position: center;
}

/* Mobile responsive fixes for tour card images */
@media (max-width: 768px) {
  .tours-section {
    padding: 2rem 0;
  }
  
  .tours-section .section-title {
    font-size: 1.75rem;
  }
  
  .tours-section .section-subtitle {
    font-size: 1rem;
  }
  
  .tour-card .col-md-4 {
    height: 220px; /* Better height for tablets */
  }
  
  .tour-card .col-md-4 img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
  }
  
  .tour-card .card-body {
    padding: 1.25rem;
  }
  
  .tour-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--iraq-orange);
    font-weight: 600;
  }
  
  .tour-card .card-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .tour-card .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Improve tour highlights */
  .tour-card .badge.bg-light {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 576px) {
  .tours-section {
    padding: 1.5rem 0;
  }
  
  .tours-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .tours-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .tour-card .col-md-4 {
    height: 200px; /* Better height for mobile */
  }
  
  .tour-card .card-body {
    padding: 1rem;
  }
  
  .tour-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .tour-card .card-text {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  /* Improve spacing and layout */
  .tour-card .mb-3 {
    margin-bottom: 0.75rem !important;
  }
  
  .tour-card .mt-1 {
    margin-top: 0.5rem !important;
  }
}

.rating {
  display: flex;
  align-items: center;
}

/* Map improvements */
.map-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container img {
  transition: transform 0.3s ease;
}

.map-container:hover img {
  transform: scale(1.02);
}

.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--iraq-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Map card improvements */
.map-container + .mt-3 {
  margin-top: 1rem !important;
}

.map-container + .mt-3 .badge {
  background: var(--iraq-orange) !important;
  color: white !important;
  border: none;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.25rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

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

.hotel-icon {
  background: linear-gradient(
    135deg,
    var(--iraq-orange),
    var(--iraq-orange-dark)
  );
}

.transport-icon {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
}

.visa-icon {
  background: linear-gradient(135deg, var(--sand-dark), #d97706);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

/* Promise Section */
.promise-item {
  align-items: flex-start;
}

.promise-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.heart-icon {
  background: linear-gradient(135deg, #fecaca, #ef4444);
}

.compass-icon {
  background: linear-gradient(135deg, #d1fae5, var(--emerald));
}

.shield-icon {
  background: linear-gradient(135deg, var(--sand-light), var(--sand-dark));
}

.award-icon {
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
}

.promise-icon i {
  color: white;
  font-size: 1.25rem;
}

.promise-images-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.promise-images-card img {
  transition: transform 0.5s ease;
}

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

.images-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.hover-reveal:hover .images-overlay {
  transform: translateY(0);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.gallery-item img {
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

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

.gallery-info {
  align-self: flex-end;
  text-align: left;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.875rem;
}

.gallery-icon {
  align-self: flex-start;
  color: white;
  font-size: 1.5rem;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

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

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

/* 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) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle-main {
    font-size: 1.25rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

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

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

  .promise-icon {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    margin-top: 4.5rem;
  }
  .hero-main-content {
    margin-top: 4.5rem !important;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .navbar-brand .brand-title {
    font-size: 1.1rem;
  }
  .navbar-brand .brand-subtitle {
    font-size: 0.7rem;
  }
  
  /* Additional mobile fixes for tour cards */
  .tour-card .row {
    margin: 0;
  }
  
  .tour-card .col-md-4,
  .tour-card .col-md-8 {
    padding: 0;
  }
  
  .tour-card .card-body {
    padding: 1rem;
  }
  
  .tour-card .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }
  
  .tour-card .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .tour-card .mb-3 {
    margin-bottom: 0.5rem !important;
  }
  
  .tour-card .mt-1 {
    margin-top: 0.25rem !important;
  }

  /* Fix for Holy Sites Pilgrimages image on mobile */
  .tour-card .col-md-4 {
    position: relative;
  }
  
  .tour-card .col-md-4 img {
    height: 200px !important;
    object-fit: cover;
    width: 100%;
  }

  /* Improve tour title and badge layout on mobile */
  .tour-card .d-flex.justify-content-between.align-items-start {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .tour-card .card-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3;
    color: var(--iraq-orange);
    font-weight: 600;
  }

  .tour-card .badge {
    font-size: 0.875rem !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.5rem !important;
    font-weight: 500;
  }

  /* Improve text readability on mobile */
  .tour-card .card-text {
    font-size: 0.95rem !important;
    line-height: 1.5;
    margin-bottom: 1rem !important;
  }

  /* Improve highlights section */
  .tour-card .mb-3 {
    margin-bottom: 1rem !important;
  }

  .tour-card .mt-1 {
    margin-top: 0.5rem !important;
  }

  .tour-card .badge.bg-light {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.6rem !important;
    margin-bottom: 0.25rem !important;
  }

  /* Improve price and button layout */
  .tour-card .h4.text-primary-custom {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tour-card .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 500;
  }

  /* Tour image overlay for mobile */
  .tour-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay-content {
    text-align: center;
  }

  .overlay-content i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
  }

  .overlay-content span {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Tour extra info styling */
  .tour-extra-info {
    background: var(--sand-light);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.1);
  }

  .info-item {
    padding: 0.5rem;
  }

  .info-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .info-item small {
    font-size: 0.75rem;
    font-weight: 500;
  }

  /* Additional responsive improvements */
  .tour-card .row {
    margin: 0;
  }
  
  .tour-card .col-md-4,
  .tour-card .col-md-8 {
    padding: 0;
  }
  
  /* Improve button responsiveness */
  .tour-card .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  /* Improve price display */
  .tour-card .h4.text-primary-custom {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  /* Improve tour extra info on mobile */
  .tour-extra-info {
    margin-bottom: 1rem !important;
  }
  
  .info-item {
    padding: 0.4rem;
  }
  
  .info-item i {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .info-item small {
    font-size: 0.7rem;
  }

  /* Improve itinerary on mobile */
  .itinerary-intro {
    padding: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .itinerary-day {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  .itinerary-day strong {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
}

/* 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 {
  outline: 2px solid var(--iraq-orange);
  outline-offset: 2px;
}

/* Hover Effects */
.hover-effect {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hover-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: 1;
}

.hover-effect:hover::before {
  left: 100%;
}

.hover-effect span,
.hover-effect i {
  position: relative;
  z-index: 2;
}

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

  .gallery-overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
}

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

.modal-header {
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  color: white;
  border-radius: 1rem 1rem 0 0;
  border-bottom: none;
  padding: 1.5rem;
}

.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.modal-body {
  padding: 2rem;
}

.tour-details {
  background: var(--sand-light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.tour-details h6 {
  color: var(--iraq-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tour-details ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.tour-details ul li i {
  width: 20px;
  margin-right: 0.5rem;
}

.modal-body h6 {
  color: var(--iraq-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-body ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.modal-body ul li i {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.modal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 2rem;
  background: #f9fafb;
  border-radius: 0 0 1rem 1rem;
}

.modal-footer .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.modal-footer .btn-primary-custom {
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  border: none;
  color: white;
}

.modal-footer .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);
}

/* Badge styles for tour highlights */
.modal-body .badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-footer {
    padding: 1rem 1.5rem;
  }
  
  .tour-details {
    padding: 1rem;
  }
}

/* Loading animation for booking buttons */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

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

/* Booking Form Styles */
.booking-form {
  direction: ltr;
  text-align: left;
}

.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.75rem;
  border: 1px solid #e9ecef;
}

.form-section:last-child {
  margin-bottom: 0;
}

.form-section .section-title {
  color: var(--iraq-orange);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--iraq-orange);
  font-size: 1rem;
}

.booking-form .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.booking-form .form-control,
.booking-form .form-select {
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

.booking-form .form-control::placeholder {
  color: #9ca3af;
}

.tour-summary {
  background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sand-dark);
}

.tour-summary h6 {
  color: var(--iraq-orange);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.tour-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.tour-info p strong {
  color: var(--iraq-orange);
  font-weight: 600;
}

.tour-info p i {
  width: 20px;
  margin-left: 0.5rem;
  color: var(--iraq-orange);
}

.form-check-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.form-check-input:checked {
  background-color: var(--iraq-orange);
  border-color: var(--iraq-orange);
}

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

/* Form validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

/* Responsive adjustments for booking form */
@media (max-width: 768px) {
  .booking-form {
    margin-top: 1rem;
  }
  
  .tour-summary {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .form-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .form-section .section-title {
    font-size: 0.95rem;
  }
}

/* Form progress indicator */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.progress-step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--iraq-orange);
  color: white;
}

.progress-step.completed .step-number {
  background: var(--emerald);
  color: white;
}

.progress-step .step-label {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
}

.progress-step.active .step-label {
  color: var(--iraq-orange);
  font-weight: 600;
}

.progress-step.completed .step-label {
  color: var(--emerald);
  font-weight: 600;
}

/* Loading state for submit button */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading .btn-text {
  opacity: 0;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Itinerary Day Styling */
.itinerary-day {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--iraq-orange);
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.itinerary-day:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.itinerary-day:last-child {
  margin-bottom: 0;
}

.itinerary-intro {
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* Improve itinerary day styling */
.itinerary-day strong {
  color: var(--iraq-orange);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.itinerary-day {
  line-height: 1.6;
  font-size: 0.95rem;
}
