/* ============================================
   Alnashra Tour & Travels – Premium Style
   ============================================ */

/* --- Variables --- */
:root {
  --primary: #0a6e4e;
  --primary-d: #085a3f;
  --accent: #e8a020;
  --accent-d: #c8880f;
  --sky: #1a6fa3;
  --sky-d: #145c89;
  --dark: #0d1f1a;
  --text: #2c3e35;
  --muted: #6b8279;
  --light-bg: #f4f9f7;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(10, 110, 78, .10);
  --shadow-md: 0 8px 40px rgba(10, 110, 78, .15);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 70px;
  /* mobile sticky bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- Navbar --- */
#mainNav {
  background: transparent;
  padding: 16px 0;
  transition: background .35s, padding .35s, box-shadow .35s;
}

#mainNav.scrolled {
  background: rgba(13, 31, 26, .96);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
  backdrop-filter: blur(8px);
}

.brand-icon {
  font-size: 1.6rem;
  color: var(--accent);
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.brand-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .88) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .1);
}

.btn-call-nav {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s, transform .2s;
}

.btn-call-nav:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

/* .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
} */

/* --- Hero --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(13, 31, 26, .85) 0%, rgba(13, 31, 26, .5) 60%, rgba(10, 110, 78, .3) 100%),
    url('../images/slider1.jpg?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 160, 32, .2);
  border: 1px solid rgba(232, 160, 32, .5);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-primary-call {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232, 160, 32, .4);
}

.btn-primary-call:hover {
  background: var(--accent-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 160, 32, .5);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: #1eb758;
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
}

.trust-chip i {
  color: var(--accent);
}

/* --- Hero Form Card --- */
.hero-form-card {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  position: relative;
  z-index: 2;
}

.form-card-badge {
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-form-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-form-card .form-sub {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-control,
.form-select {
  border: 1.5px solid #dde8e4;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 110, 78, .12);
  outline: none;
}

label.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(10, 110, 78, .35);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 110, 78, .45);
}

.privacy-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* --- Section Utilities --- */
.section-pad {
  padding: 80px 0;
}

.section-sm-pad {
  padding: 60px 0;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px 0;
}

/* --- Why Us Section --- */
.why-us-section {
  background: var(--light-bg);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--light-bg), #d4ede4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: background .3s, color .3s;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
}

.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Stats Strip --- */
.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  padding: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* --- Packages --- */
.packages-section {
  background: var(--white);
}

.pkg-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.07);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pkg-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(13, 31, 26, .8);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.pkg-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.pkg-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.pkg-highlights li {
  font-size: .82rem;
  color: var(--muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pkg-highlights li i {
  color: var(--primary);
  font-size: .75rem;
}

.pkg-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-pkg-call {
  flex: 1;
  min-width: 80px;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
  text-align: center;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-pkg-call:hover {
  background: var(--primary-d);
  color: #fff;
}

.btn-pkg-wa {
  flex: 1;
  min-width: 80px;
  background: #25d366;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
  text-align: center;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-pkg-wa:hover {
  background: #1eb758;
  color: #fff;
}

.btn-pkg-enq {
  flex: 1;
  min-width: 80px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
  text-align: center;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.btn-pkg-enq:hover {
  background: var(--primary);
  color: #fff;
}

/* --- CTA Banner --- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10, 110, 78, .92) 0%, rgba(26, 111, 163, .85) 100%),
    url('https://images.unsplash.com/photo-1598091383021-15ddea10925d?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
  padding: 72px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
}

.cta-phone {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .03em;
  display: block;
  margin-bottom: 24px;
}

.cta-phone i {
  font-size: 80%;
  margin-right: 8px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* --- About Section --- */
.about-section {
  background: var(--light-bg);
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-img-badge .badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-img-badge .badge-txt {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
}

.about-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Enquiry Section (2nd form) --- */
.enquiry-section {
  background: var(--white);
}

.enquiry-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, #0f8a61 100%);
  border-radius: 24px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.enquiry-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.enquiry-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.enquiry-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.enquiry-info p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.enquiry-contact-list {
  list-style: none;
  padding: 0;
}

.enquiry-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9);
  font-size: .92rem;
  margin-bottom: 14px;
}

.enquiry-contact-list li i {
  font-size: 1.1rem;
  color: var(--accent);
  width: 20px;
}

.enquiry-contact-list li a {
  color: rgba(255, 255, 255, .9);
}

.enquiry-form-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  z-index: 1;
}

/* --- Alert --- */
.alert-success-custom {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-error-custom {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  margin-bottom: 16px;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}

.footer-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* --- Mobile Sticky Bar --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.sticky-btn:hover {
  opacity: .9;
  color: #fff;
}

.sticky-btn i {
  font-size: 1.25rem;
}

.sticky-call {
  background: var(--sky);
}

.sticky-whatsapp {
  background: #25d366;
}

/* --- Enquiry Modal --- */
.modal-content {
  border-radius: var(--radius);
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), #0f8a61);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: none;
  padding: 20px 24px;
}

.modal-header .modal-title {
  font-family: var(--font-head);
  font-weight: 700;
}

.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: .8;
}

.modal-body {
  padding: 24px;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

.fade-up-1 {
  animation-delay: .1s;
}

.fade-up-2 {
  animation-delay: .25s;
}

.fade-up-3 {
  animation-delay: .4s;
}

.fade-up-4 {
  animation-delay: .55s;
}

.fade-up-5 {
  animation-delay: .7s;
}

/* --- Misc Helpers --- */
.text-primary-custom {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.bg-light-custom {
  background: var(--light-bg);
}

@media (max-width: 768px) {
  .hero-form-card {
    margin-top: 32px;
  }

  .enquiry-wrap {
    padding: 32px 20px;
  }

  .enquiry-form-box {
    padding: 24px 16px;
    margin-top: 24px;
  }

  .pkg-actions {
    gap: 6px;
  }

  .btn-pkg-call,
  .btn-pkg-wa,
  .btn-pkg-enq {
    font-size: .72rem;
    padding: 8px 6px;
  }
}