/* Iraq Tours - Unified Styles */

/* 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;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: var(--white);
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--iraq-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--iraq-orange-dark);
}

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

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

.text-white {
  color: var(--white) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.text-center {
  text-align: center !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.btn-outline-primary {
  border-color: var(--iraq-orange);
  color: var(--iraq-orange);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--iraq-orange);
  color: var(--white);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--iraq-orange);
}

.btn-light {
  background: var(--white);
  color: var(--iraq-orange);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--gray-100);
  color: var(--iraq-orange-dark);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20b65c 100%);
  border: none;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20b65c 0%, #1da851 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.hover-effect:hover {
  transform: translateY(-2px);
}

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

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

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Background Gradients */
.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%
  );
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(251, 226, 199, 0.3);
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 1rem;
}

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

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

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

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

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s, background 0.2s, border-radius 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--iraq-orange);
}

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

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.card-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-text {
  color: var(--gray-600);
}

/* Forms */
.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-700);
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.5rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.5rem;
}

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

.form-check-label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Alerts */
.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  background-color: var(--iraq-orange);
}

.badge.bg-success {
  background-color: var(--success) !important;
}

.badge.bg-warning {
  background-color: var(--warning) !important;
  color: var(--gray-900) !important;
}

.badge.bg-danger {
  background-color: var(--danger) !important;
}

/* Page Headers */
.page-header {
  padding: 120px 0 80px;
  min-height: 60vh;
  position: relative;
}

.header-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

/* Footer */
.footer-section {
  background: linear-gradient(
    135deg,
    var(--gray-900) 0%,
    var(--gray-800) 50%,
    #0f172a 100%
  );
  color: var(--white);
  padding: 3rem 0;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-section .text-white {
  color: var(--white) !important;
}

.footer-section .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

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

@keyframes fadeInUp {
  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 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);
  }
}

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

/* Loading States */
.btn[data-loading="true"] {
  position: relative;
  color: transparent !important;
}

.btn[data-loading="true"]::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }

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

  .page-header {
    padding: 100px 0 60px;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    margin-top: 4.5rem;
  }
  .hero-main-content {
    margin-top: 4.5rem !important;
  }
  /* تحسين كروت التواصل في الموبايل */
  .contact-section .card,
  .contact-section .card.h-100 {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .contact-section .card-title {
    font-size: 1.1rem;
  }
  .contact-section .fa-2x {
    font-size: 1.3rem;
  }
  .contact-section .card-body {
    padding: 1rem;
  }
  .contact-section .row.g-4 {
    gap: 0.5rem !important;
  }
  /* أزرار CTA section */
  .cta-section .btn {
    width: 100%;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  .cta-section .d-flex {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  h1 {
    font-size: 2rem;
  }

  .page-header {
    padding: 90px 0 50px;
  }
}

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

.btn:focus,
.nav-link:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--iraq-orange);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--gray-900);
  }

  .btn-primary-custom {
    background: var(--gray-900) !important;
    color: var(--white) !important;
  }

  .btn-whatsapp {
    background: #006600 !important;
    color: var(--white) !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer-section {
    display: none !important;
  }

  .page-header {
    background: none !important;
    color: black !important;
    padding: 2rem 0;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

.nav-link:active,
.nav-link.active,
.nav-link:focus {
  color: var(--iraq-orange) !important;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

/* توحيد الكروت */
.card, .card.h-100 {
  border-radius: 1rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 1.5rem;
}
.card-title, h2.section-title, h1, h2, h3, h4, h5, h6 {
  color: var(--iraq-orange-darker);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.2rem;
  color: var(--iraq-orange-darker);
  text-align: center;
  margin-bottom: 1.5rem;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* توحيد الأزرار */
.btn-primary-custom, .btn-primary {
  background: linear-gradient(135deg, var(--iraq-orange), var(--iraq-orange-dark));
  border: none;
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.btn-primary-custom:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--iraq-orange-dark), var(--iraq-orange-darker));
  color: var(--white) !important;
}
.btn-light {
  background: var(--white);
  color: var(--iraq-orange);
  border: 1px solid var(--iraq-orange);
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-light:hover {
  background: var(--iraq-orange);
  color: var(--white);
}
.btn-outline-primary {
  border: 1.5px solid var(--iraq-orange);
  color: var(--iraq-orange);
  background: var(--white);
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-primary:hover {
  background: var(--iraq-orange);
  color: var(--white);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 0.9rem;
}

/* توحيد البادجات */
.badge {
  border-radius: 0.5rem;
  font-size: 0.95em;
  font-weight: 600;
  padding: 0.45em 1em;
  background: var(--iraq-orange);
  color: var(--white);
}
.badge.bg-success { background: var(--success) !important; }
.badge.bg-warning { background: var(--warning) !important; color: var(--gray-900) !important; }
.badge.bg-danger { background: var(--danger) !important; }

/* توحيد المسافات */
.mb-4, .my-4 { margin-bottom: 1.5rem !important; }
.mt-4, .my-4 { margin-top: 1.5rem !important; }
.mb-3, .my-3 { margin-bottom: 1rem !important; }
.mt-3, .my-3 { margin-top: 1rem !important; }

/* توحيد responsive للكروت والأزرار */
@media (max-width: 768px) {
  .card, .card.h-100 {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.2rem;
  }
}

/* === Unified Navbar Background & Animation === */
.navbar, .glass-nav {
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  backdrop-filter: blur(8px);
}

.navbar .nav-link, .glass-nav .nav-link {
  color: var(--gray-900);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s, border-radius 0.2s;
}

.navbar .nav-link.active, .glass-nav .nav-link.active,
.navbar .nav-link:focus, .glass-nav .nav-link:focus {
  color: var(--iraq-orange) !important;
  background: rgba(249,115,22,0.08);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.navbar .nav-link:hover, .glass-nav .nav-link:hover {
  color: var(--iraq-orange) !important;
  background: rgba(249,115,22,0.12);
  border-radius: 0.5rem;
}
