/* CSS stylesheet for HIMALYAN Heli Services Pvt Ltd - Vaishno Devi Helicopter Yatra */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0c1a30;     /* Deep Blue/Navy */
  --primary-accent: #2563eb;    /* Royal Blue Accent */
  --accent-orange: #f97316;     /* Vibrant Orange CTA */
  --accent-orange-hover: #ea580c;
  --whatsapp-green: #25d366;    /* Official WhatsApp Green */
  --whatsapp-green-hover: #20ba5a;
  
  --text-dark: #1e293b;         /* Dark Charcoal */
  --text-muted: #64748b;        /* Soft Gray-Blue */
  --text-light: #f8fafc;        /* Off-White */
  
  --bg-light: #f8fafc;          /* Pale Blue/Gray Background */
  --bg-white: #ffffff;          /* Pure White */
  --bg-dark: #0f172a;           /* Slate 900 */
  
  --border-color: #e2e8f0;      /* Light border */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(12, 26, 48, 0.08), 0 2px 4px -1px rgba(12, 26, 48, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(12, 26, 48, 0.1), 0 4px 6px -2px rgba(12, 26, 48, 0.05);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 72px;
  --border-radius: 12px;
  --transition-speed: 0.25s;
}

/* 1. Resets & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* Headings Utilities */
.section-tag {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* 2. Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 20px;
}

/* Logo Brand */
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img-wrap {
  height: 45px;
  width: 68px; /* Aspect ratio ~1.5 to crop out the bottom whitespace dynamically */
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.logo-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.logo-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-subtitle-new {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  border-left: 2px solid var(--border-color);
  padding-left: 8px;
}

/* Fallback styles for text-based logos */
.logo-icon {
  background: var(--primary-color);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
  display: none; /* Hidden on mobile by default */
}

/* Hamburger toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
}

/* Hamburger Active / Open State */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease-out forwards;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
  }

  .header-actions-mobile {
    margin-top: 8px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Header Settings */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-list {
    display: flex;
    gap: 24px;
  }

  .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width var(--transition-speed) ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--primary-accent);
  }
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) ease;
  width: 100%; /* Default mobile-first full width */
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--primary-accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 576px) {
  .btn {
    width: auto;
  }
}

/* 3. Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 60px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(12, 26, 48, 0.85) 0%, rgba(12, 26, 48, 0.7) 50%, rgba(12, 26, 48, 0.9) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 12px;
  display: block;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.feature-tick {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white);
}

.feature-tick span {
  color: var(--accent-orange);
  font-size: 1rem;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding: 140px 0 100px 0;
    min-height: 520px;
  }
  .hero-content h1 {
    font-size: 3.25rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-text {
    font-size: 1.05rem;
  }
}

/* 4. Quick Enquiry Section */
.enquiry-section {
  background-color: var(--bg-white);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 30px 20px;
}

.enquiry-card-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.enquiry-form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.enquiry-form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-light);
  outline: none;
  transition: all var(--transition-speed) ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-accent);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}

.form-message.success {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Honeypot Spam Field */
.hp-field {
  display: none !important;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-group-full {
    grid-column: span 2;
  }
  .enquiry-section {
    padding: 40px;
    margin-top: -60px;
  }
}

/* 5. Package Section */
.package-grid {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.package-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 600px;
  width: 100%;
}

.package-img-wrap {
  position: relative;
  height: 200px;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-orange);
  color: var(--bg-white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.package-body {
  padding: 24px;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.package-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.package-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.package-detail-item .icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.package-detail-item strong {
  font-weight: 700;
  color: var(--primary-color);
  min-width: 110px;
}

.package-features {
  margin-bottom: 24px;
}

.package-features-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.package-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 480px) {
  .package-features-list {
    grid-template-columns: 1fr 1fr;
  }
}

.package-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.package-feature-item span {
  color: var(--primary-accent);
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .package-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* 6. Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-accent);
}

.why-icon {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-accent);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 7. Vaishno Devi Destination Section */
.dest-section {
  background-color: var(--bg-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

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

.dest-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dest-content {
  padding: 0 10px;
}

.dest-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.dest-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* 8. Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  background-color: var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* 9. FAQs Section */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary-accent);
  transition: transform var(--transition-speed) ease;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 1px solid transparent;
}

.faq-answer p {
  padding: 18px 24px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Active FAQ Item State */
.faq-item.active {
  border-color: var(--primary-accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust if needed */
  border-top: 1px solid var(--border-color);
}

/* 10. Final CTA Section */
.cta-section {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .cta-actions {
    flex-direction: row;
    max-width: 100%;
  }
}

/* 11. Contact Section */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 30px;
  width: 100%;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-accent);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-actions-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

/* 12. Footer Section */
.site-footer {
  background-color: var(--primary-color);
  color: #94a3b8;
  padding: 40px 0 20px 0;
  border-top: 1px solid #1e293b;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
}

.footer-links-title {
  color: var(--bg-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-link {
  font-size: 0.85rem;
}

.footer-link:hover {
  color: var(--bg-white);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* 13. Subpage Styles (vaishno-devi-helicopter.html, policies) */
.subpage-hero {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.subpage-hero h1 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.subpage-breadcrumbs {
  font-size: 0.85rem;
  color: #94a3b8;
}

.subpage-breadcrumbs a {
  color: #3b82f6;
}

.content-page-layout {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin: 30px auto;
  max-width: 850px;
}

.content-page-layout h2 {
  font-size: 1.5rem;
  margin: 24px 0 12px 0;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 6px;
}

.content-page-layout h2:first-of-type {
  margin-top: 0;
}

.content-page-layout p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.content-page-layout ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-page-layout li {
  margin-bottom: 8px;
}

/* Detail Info Section Layout (Yatra details pages) */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

.detail-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

/* Features/Includes/Excludes grids */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .grid-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-box {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-box.include span {
  color: #10b981;
}

.feature-box.exclude span {
  color: #ef4444;
}

.feature-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Notice Box style */
.notice-box {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.notice-box h4 {
  color: #b45309;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-box p {
  font-size: 0.875rem;
  color: #78350f;
  margin-bottom: 0;
}

/* Steps Process list */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  background-color: var(--primary-accent);
  color: var(--bg-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-details p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(12, 26, 48, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 12px;
  z-index: 9999;
}

.mobile-bottom-cta .btn {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 4px;
  height: 42px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: none;
}

.mobile-bottom-cta .btn:hover {
  transform: none;
}

/* Hide on desktop and add body padding on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 64px; /* Room for sticky bar */
  }
}

@media (min-width: 768px) {
  .mobile-bottom-cta {
    display: none !important;
  }
}

/* Consolidated Header BOOK NOW Button */
.nav-booking-btn {
  background-color: var(--accent-orange) !important;
  color: var(--bg-white) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  display: inline-block;
  margin-left: 10px;
  box-shadow: var(--shadow-sm);
}

.nav-booking-btn:hover {
  background-color: var(--accent-orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-booking-btn::after {
  display: none !important; /* Remove link hover underline */
}

@media (max-width: 991px) {
  .nav-booking-btn {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    display: block !important;
  }
}
