/*
Theme Name: 9ice India Travels
Theme URI: https://www.9iceindiatravels.com
Author: 9ice India Travels | SSB Digital India
Author URI: https://www.9iceindiatravels.com
Description: Official custom WordPress theme for 9ice India Travels â€” Tour and Travels Agency in Delhi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, tour, car-rental, tempo-traveller, delhi
Text Domain: niceindiatravels
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none !important;
  color: inherit;
  transition: color 0.3s;
}
ul {
  list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #e8272d;
  --primary-dark: #b51e23;
  --secondary: #222;
  --accent: #f7a600;
  --light-bg: #f9f9f9;
  --border: #e0e0e0;
  --text-muted: #666;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --transition: 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
h3 {
  font-size: 1.3rem;
}
p {
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 70px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  color: var(--secondary);
}
.section-title h2 span {
  color: var(--primary);
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--white);
}
.top-bar a:hover {
  color: var(--accent);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== HEADER / NAVBAR ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.site-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* ===== MAIN NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary);
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none !important;
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  color: var(--primary);
}
.main-nav > li.menu-item-has-children > a::after {
  content: "\25BE";
  font-size: 0.7rem;
}

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
  min-width: 240px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 200;
}
.main-nav li.nav-dropdown-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none !important;
}
.main-nav .sub-menu li:last-child a {
  border-bottom: none;
}
.main-nav .sub-menu li a:hover {
  background: #fef2f2;
  color: var(--primary);
  padding-left: 24px;
  text-decoration: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  height: 560px;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.2)
  );
}
.hero-content {
  position: relative;
  max-width: 600px;
  padding: 0 40px;
  color: var(--white);
  animation: fadeInUp 0.7s ease both;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-content .btn {
  margin-right: 12px;
  margin-top: 10px;
}
.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.hero-dot.active {
  background: var(--primary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--light-bg);
}
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-strip-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-strip-text h2 {
  margin-bottom: 16px;
}
.about-strip-text h2 span {
  color: var(--primary);
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== PACKAGES (TOUR SECTION) ===== */
.packages-section {
  background: var(--light-bg);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.card-img {
  height: 200px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: 20px;
}
.card-body h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-body .btn {
  font-size: 0.82rem;
  padding: 8px 18px;
}

/* ===== VEHICLES SECTION ===== */
.vehicle-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.vehicle-card-img {
  overflow: hidden;
  height: 160px;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-card-body {
  padding: 20px 20px 20px 0;
}
.vehicle-card-body h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.vehicle-card-body ul {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.vehicle-card-body ul li {
  padding: 3px 0;
}
.vehicle-card-body ul li::before {
  content: "âœ” ";
  color: var(--primary);
}

/* ===== TEMPO SECTION ===== */
.tempo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}
.tempo-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 26px 16px;
  transition: all var(--transition);
}
.tempo-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tempo-card .seats {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.tempo-card h3 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--secondary);
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}
.why-feature-box:hover {
  background: rgba(255, 255, 255, 0.12);
}
.why-feature-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.why-feature-box h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.why-feature-box p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--light-bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-card blockquote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.cta-banner h2 {
  margin-bottom: 12px;
}
.cta-banner p {
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
}
.footer-main {
  padding: 60px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.88rem;
  margin: 14px 0;
  opacity: 0.7;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-col ul li a {
  color: #ccc;
  transition: color var(--transition);
  text-decoration: none !important;
}
.footer-col ul li a:hover {
  color: var(--primary);
  text-decoration: none !important;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item span:first-child {
  font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ===== SINGLE PAGE TEMPLATE ===== */
.page-hero {
  height: 280px;
  background: linear-gradient(135deg, var(--secondary) 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.88rem;
  opacity: 0.7;
}
.page-content {
  padding: 60px 0;
}
.content-section h2 {
  color: var(--primary);
  margin: 30px 0 14px;
}
.content-section ul {
  margin: 14px 0 14px 20px;
  list-style: none;
}
.content-section ul li {
  padding: 4px 0;
}
.content-section ul li::before {
  content: "âœ” ";
  color: var(--primary);
  font-weight: bold;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.feature-tag {
  background: #fef2f2;
  color: var(--primary);
  border: 1px solid #fbc9c9;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-box {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-box h3 {
  color: var(--accent);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item .icon {
  font-size: 1.4rem;
}
.contact-info-item .text strong {
  display: block;
  color: var(--white);
}
.contact-info-item .text span {
  font-size: 0.88rem;
  opacity: 0.75;
}
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  height: 130px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about-stat {
  text-align: center;
  background: #fef2f2;
  border-radius: 10px;
  padding: 20px 10px;
}
.about-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.about-stat .label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== MOBILE MENU ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px; /* Slide from left */
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  overflow-y: auto;
  padding: 20px 0 24px;
  transition: left 0.35s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
}
.mobile-nav.open {
  left: 0;
}
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--secondary);
}

.mobile-nav .menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  cursor: pointer;
}
.mobile-nav ul li a {
  display: block;
  padding: 15px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  text-decoration: none !important;
  flex: 1;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li.current-menu-item > a {
  color: var(--primary);
  text-decoration: none !important;
}
.mobile-nav .sub-toggle {
  background: rgba(232, 39, 45, 0.08); /* Subtle background instead of heavy pill */
  border: none;
  border-radius: 4px; /* Square with slightly rounded edges */
  color: var(--primary);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.mobile-nav .sub-toggle i {
  transition: transform 0.3s ease;
}
.mobile-nav .sub-toggle.active {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav .sub-toggle.active i {
  transform: rotate(180deg);
}
.mobile-nav .sub-menu {
  padding-left: 24px;
  padding-right: 20px;
  display: none;
}
.mobile-nav .sub-menu li a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  color: var(--text-muted);
}

/* ===== NEW COMPS (PILLS & STICKY TAB) ===== */
.pill {
  width: 140px;
  height: 300px;
  border-radius: 100px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.4s;
}
.pill:hover {
  transform: translateY(-10px) !important;
}
.pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-enquiry-tab {
  position: fixed;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  letter-spacing: 1px;
}
.sticky-enquiry-tab:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-strip .container,
  .why-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 44px 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .tempo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider {
    height: 320px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-content {
    padding: 0 20px;
  }
  .vehicle-card {
    grid-template-columns: 1fr;
  }
  .vehicle-card-body {
    padding: 16px;
  }
}

/* ===== FIX: TOP BAR LINK UNDERLINES ===== */
.top-bar a,
.top-bar a:hover {
  text-decoration: none !important;
}

/* ===== FIX: INNER PAGE CONTENT ALIGNMENT ===== */
.tour-package .container,
.page-content .container {
  text-align: left;
}
.tour-package h2,
.content-section h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--primary);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.tour-package p,
.content-section p {
  margin-bottom: 0.85rem;
  line-height: 1.75;
  font-size: 0.95rem;
}
/* Fix inline h2 inside p tag â€” common CMS paste issue */
.tour-package p h2,
.tour-package p h3 {
  display: block;
  margin-top: 0;
}
/* Blog card image alignment */
.blog-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}
/* Footer contact item links */
.footer-contact-item a {
  text-decoration: none !important;
  color: #ccc;
  transition: color var(--transition);
}
.footer-contact-item a:hover {
  color: var(--primary);
}
/* Site logo underline */
.site-logo,
.site-logo span {
  text-decoration: none !important;
}
/* Bootstrap override: blanket no-underline on all nav/footer links except main nav hover */
.main-nav a,
.main-nav a:focus,
.mobile-nav a,
.mobile-nav a:hover,
.footer-col a,
.footer-col a:hover,
.top-bar a,
.top-bar a:hover {
  text-decoration: none !important;
}

/* Restore the red underline on hover and selection for main nav */
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  text-decoration: underline !important;
  text-underline-offset: 6px;
  color: var(--primary) !important;
}

/* â”€â”€ Restore inline styles from old footer.php â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary,
.btn.btn-primary {
  background: #ea5347 !important;
  border-color: #ea5347 !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn.btn-primary:hover {
  background: #c9392e !important;
  border-color: #c9392e !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ea5347 !important;
}
.swiper-pagination-bullet-active {
  background: #ea5347 !important;
}

/* â”€â”€ Hero Banners Global Alignment Fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-hero {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
  z-index: 1;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* ===== CUSTOM MOBILE ALIGNMENT FIXES ===== */
/* ==============================================
   LUXURY PACKAGES RESPONSIVE GRID FIX
============================================== */
.packages-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
}
.packages-grid-row .card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.packages-grid-row .card .card-img {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.packages-grid-row .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .packages-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .packages-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .packages-grid-row .card .card-img {
    height: 180px; /* shorter images on mobile */
  }
  .packages-grid-row .card .card-body h3 {
    font-size: 1.1rem;
  }
}

/* Fix About Strip Grid */
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 992px) {
  .about-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* Fix Mobile Padding for Why Section Text */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Prevent sticky bar from overlapping content */
  }
  .why-text-col {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

