/* ========================================
   JETWIDE TRAVEL & SAFARI - MAIN STYLESHEET
   ======================================== */

/* ---- RESET AND BASE STYLES ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Prevent horizontal scroll */
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Work Sans', Arial, sans-serif;
  line-height: 1.6;
  /* Prevent horizontal scroll */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* iOS fixes */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}

/* Center alignment for content areas */
section,
.section-content,
.content-wrapper,
.main-content {
  text-align: center;
}

/* Keep form elements and text blocks left-aligned for readability */
form,
.form-group,
.text-content,
p,
li,
input,
textarea,
select {
  text-align: left;
}

/* Touch-friendly interactive elements */
button, 
a, 
input, 
select, 
textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Improve touch targets on mobile */
@media (max-width: 767px) {
  button, 
  .btn-primary, 
  .btn-secondary, 
  .btn-contact, 
  .btn-cta,
  a[href^="tel:"],
  a[href^="mailto:"] {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Optimize images for different screen densities */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- LAYOUT UTILITY COMPONENTS ---- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Mobile First Responsive Breakpoints */
@media (min-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 48px;
  }
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* ---- HEADER SECTION ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: transform 0.3s ease-in-out;
}

header.header-hidden {
  transform: translateY(-100%);
}

.header-top {
  background-color: rgba(212, 175, 55, 0.95);
  padding: 8px 12px;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #000000;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Mobile landscape */
@media (min-width: 480px) {
  .header-top {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 46px;
  }
}

/* Tablet portrait */
@media (min-width: 768px) {
  .header-top {
    padding: 10px 32px;
    font-size: 14px;
    min-height: 44px;
  }
}

/* Tablet landscape / Desktop */
@media (min-width: 1024px) {
  .header-top {
    padding: 12px 48px;
    font-size: 14px;
    min-height: 48px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .header-top {
    padding: 12px 60px;
  }
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  gap: 6px;
}

@media (min-width: 480px) {
  .header-top-content {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .header-top-content {
    gap: 16px;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
  flex-shrink: 1;
}

@media (min-width: 480px) {
  .header-contact {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .header-contact {
    gap: 20px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  min-height: 36px;
  padding: 2px 0;
  font-size: inherit;
}

@media (min-width: 480px) {
  .contact-item {
    gap: 4px;
    min-height: 38px;
  }
}

@media (min-width: 640px) {
  .contact-item {
    gap: 6px;
  }
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #FE9900;
}

.contact-item img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(85%) sepia(58%) saturate(2504%) hue-rotate(4deg) brightness(104%) contrast(101%);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-social img {
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.header-social img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.desktop-only {
  display: none;
}

@media (min-width: 480px) {
  .header-social {
    gap: 8px;
  }
  
  .header-social img {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 768px) {
  .header-contact {
    gap: 24px;
  }
  
  .header-social {
    gap: 12px;
  }
  
  .header-social img {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .desktop-only {
    display: flex;
  }
  
  .header-contact {
    gap: 32px;
  }
  
  .header-social {
    gap: 16px;
  }
  
  .header-social img {
    width: 20px;
    height: 20px;
  }
}

.header-main {
  background: transparent;
  background-size: cover;
  background-position: center;
  padding: 10px 16px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 480px) {
  .header-main {
    padding: 12px 24px;
  }
}

@media (min-width: 768px) {
  .header-main {
    padding: 12px 48px;
  }
}

@media (min-width: 1024px) {
  .header-main {
    padding: 12px 76px;
  }
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding: 0;
}

.logo {
  width: 120px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

@media (min-width: 480px) {
  .logo {
    width: 140px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .logo {
    width: 160px;
    height: 47px;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Hide toggle on desktop */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Active state for hamburger */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: none;
  gap: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  padding: 16px;
  z-index: 1000;
}

/* Show mobile menu when active */
.nav-menu.active {
  display: flex;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
  padding: 8px 4px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  color: #FE9900;
}

.nav-menu a.active {
  color: #000000;
  font-weight: 700;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    gap: 28px;
    position: relative;
    background: none;
    flex-direction: row;
    padding: 0;
    top: auto;
    left: auto;
    right: auto;
  }
  
  .nav-menu a {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    gap: 38px;
  }
  
  .nav-menu a {
    font-size: 16px;
  }
}

/* Mobile menu button */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile navigation improvements */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    min-height: 56px;
  }
}

/* ---- DROPDOWN STYLES ---- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 350px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e0e0e0;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #333333 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f8f8;
  color: #FE9900 !important;
  padding-left: 20px;
}

.dropdown-section {
  margin-bottom: 15px;
}

.dropdown-section:last-child {
  margin-bottom: 0;
}

.dropdown-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px 6px 16px;
  margin: 0;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}

.dropdown-section .dropdown-item {
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* ================================
   GLOBAL HERO SECTION FIXES
   ================================ */

/* Prevent navbar from covering hero sections and content */
section[class*="hero"],
.page-hero,
.themed-hero,
.beach-hero,
.safari-hero,
.contact-hero,
.car-hire-hero,
.flight-booking-hero,
.recruitment-hero,
.blog-hero,
.visa-hero {
  margin-top: 120px;
}

/* Ensure better text visibility on all hero sections */
section[class*="hero"] h1,
section[class*="hero"] .hero-title,
.page-hero-title,
.hero-title {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

/* Mobile and tablet dropdown adjustments */
@media (max-width: 767px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    min-width: auto;
    margin-left: 16px;
  }
  
  .dropdown-item {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    font-size: 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FE9900 !important;
    padding-left: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown-menu {
    min-width: 180px;
  }
  
  .dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* ---- GLOBAL HERO SECTION FIXES ---- */
/* Add top margin/padding to all hero sections to account for fixed header */
section[class*="-hero"],
section.page-hero,
.package-detail-hero,
.package-content {
  margin-top: 120px !important;
}

/* Exception for sections that already handle spacing */
.hero-section {
  margin-top: 0 !important;
}

/* Ensure hero sections are visible with darker overlays */
section[class*="-hero"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

section[class*="-hero"] > * {
  position: relative;
  z-index: 2;
}

/* ---- HERO SECTION WITH SLIDESHOW ---- */
.hero-section {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fix for iOS */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Fix viewport issues on mobile */
  width: 100%;
  max-width: 100vw;
}

/* iPhone specific fixes */
@media screen and (max-width: 430px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero-section {
    min-height: 80vh;
  }
}

@media (min-width: 375px) and (max-width: 430px) {
  .hero-section {
    min-height: 80vh;
  }
}

@media (min-width: 480px) {
  .hero-section {
    min-height: 85vh;
  }
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 90vh;
  }
}

/* Hero Slideshow Container */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Fix for mobile rendering */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Mobile optimization */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
  /* Ensure images load properly on mobile */
  background-attachment: scroll !important;
}

.hero-slide.active {
  opacity: 1;
  animation: zoomIn 5s ease-out forwards;
}

/* Zoom animation keyframes */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Force background image loading on mobile */
.hero-slide[style*="background-image"] {
  background-attachment: scroll !important;
}

/* Default fallback backgrounds for hero slides */
.hero-slide[data-bg*="hero-section-images%20(1)"],
.hero-slide[data-bg*="hero-section-images (1)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (1).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(2)"],
.hero-slide[data-bg*="hero-section-images (2)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (2).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(3)"],
.hero-slide[data-bg*="hero-section-images (3)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (3).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(4)"],
.hero-slide[data-bg*="hero-section-images (4)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (4).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(5)"],
.hero-slide[data-bg*="hero-section-images (5)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (5).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(6)"],
.hero-slide[data-bg*="hero-section-images (6)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (6).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(7)"],
.hero-slide[data-bg*="hero-section-images (7)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (7).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(8)"],
.hero-slide[data-bg*="hero-section-images (8)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (8).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(9)"],
.hero-slide[data-bg*="hero-section-images (9)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (9).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide[data-bg*="hero-section-images%20(10)"],
.hero-slide[data-bg*="hero-section-images (10)"] {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/Hero-Section/hero-section-images (10).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero Content Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 120px 16px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-overlay {
    padding: 140px 24px 80px;
  }
}

@media (min-width: 768px) {
  .hero-overlay {
    padding: 160px 48px 100px;
  }
}

@media (min-width: 1024px) {
  .hero-overlay {
    padding: 196px 56px 120px;
  }
}

.hero-title {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 34px;
    max-width: 85%;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 40px;
    line-height: 48px;
    max-width: 80%;
  }
}

.hero-subtitle {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 480px) {
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 80%;
    line-height: 1.5;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-bottom: 52px;
    max-width: 70%;
    line-height: 20px;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    gap: 24px;
  }
}

.btn-primary {
  background-color: #FE9900;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 28px;
  border: 1px solid #000000;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 140px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
}

@media (min-width: 480px) {
  .btn-primary {
    padding: 15px 30px;
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .btn-primary {
    padding: 16px 34px;
  }
}

.btn-primary:hover {
  background-color: #FE9900;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #abff35;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 28px;
  border: 1px solid #000000;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 140px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
}

@media (min-width: 480px) {
  .btn-secondary {
    padding: 15px 28px;
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .btn-secondary {
    padding: 16px 30px;
  }
}

.btn-secondary:hover {
  background-color: #95e620;
  transform: translateY(-2px);
}

/* Hero Navigation Buttons */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.hero-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0.6;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-nav {
    padding: 0 15px;
  }
  
  .hero-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
    /* Better touch targets for mobile */
    min-height: 44px;
    min-width: 44px;
    /* iOS specific fixes */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Improve mobile package layout */
  .package-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .package-card {
    height: 280px;
    margin-bottom: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 25px;
  }
  
  /* Improve CTA section mobile */
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* iPhone specific adjustments */
@media screen and (max-width: 430px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero-nav {
    padding: 0 12px;
  }
  
  .hero-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.hero-indicator.active,
.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-indicators {
    bottom: 25px;
    gap: 8px;
  }
  
  .hero-indicator {
    width: 12px;
    height: 12px;
    /* Better touch targets */
    padding: 8px;
    min-width: 28px;
    min-height: 28px;
    /* iOS fixes */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
}

/* iPhone specific indicator fixes */
@media screen and (max-width: 430px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero-indicators {
    bottom: 20px;
    gap: 6px;
  }
  
  .hero-indicator {
    width: 10px;
    height: 10px;
    padding: 6px;
    min-width: 22px;
    min-height: 22px;
  }
}

/* Additional mobile device compatibility */
@media screen and (max-device-width: 480px) {
  .hero-section {
    /* Force hardware acceleration on mobile */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .hero-slide {
    /* Improve mobile rendering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* Landscape mobile orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-nav {
    padding: 0 20px;
  }
  
  .hero-indicators {
    bottom: 15px;
  }
}

/* ---- UNIVERSAL HERO STYLES FOR ALL PAGES ---- */
.visa-hero,
.car-hire-hero,
.themed-hero,
.contact-hero,
.beach-hero,
.blog-hero,
/* ---- ANIMATED DESTINATIONS SCROLL ---- */
.destinations-scroll {
  overflow: hidden;
  margin: 8px 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.destinations-container {
  display: flex;
  min-width: max-content;
  gap: 20px;
  padding: 0 20px;
  animation: scroll-destinations 20s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Add duplicate items for seamless loop */
.destinations-container::after {
  content: "";
  display: flex;
  min-width: max-content;
  gap: 20px;
}

/* Pause animation on hover */
.destinations-scroll:hover .destinations-container {
  animation-play-state: paused;
}

/* Keyframe animation for smooth scrolling */
@keyframes scroll-destinations {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.destination-item {
  position: relative;
  min-width: 250px;
  height: 180px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .destination-item {
    min-width: 280px;
    height: 200px;
  }
}

@media (min-width: 768px) {
  .destination-item {
    min-width: 300px;
    height: 214px;
  }
}

.destination-text {
  font-size: 60px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #f2f0ee;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}

@media (min-width: 480px) {
  .destination-text {
    font-size: 70px;
  }
}

@media (min-width: 640px) {
  .destination-text {
    font-size: 80px;
  }
}

@media (min-width: 768px) {
  .destination-text {
    font-size: 100px;
  }
}

@media (min-width: 1024px) {
  .destination-text {
    font-size: 130px;
  }
}

@media (min-width: 1200px) {
  .destination-text {
    font-size: 153px;
    line-height: 228px;
  }
}

/* Special offers section */
.special-offers {
  padding: 60px 16px 0;
  position: relative;
}

@media (min-width: 480px) {
  .special-offers {
    padding: 70px 24px 0;
  }
}

@media (min-width: 768px) {
  .special-offers {
    padding: 80px 32px 0;
  }
}

@media (min-width: 1024px) {
  .special-offers {
    padding: 100px 48px 0;
  }
}

.offers-title {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .offers-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .offers-title {
    font-size: 48px;
    line-height: 63px;
  }
}

.special-offers-container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

@media (max-width: 1023px) {
  .special-offers-container {
    flex-direction: column;
    gap: 20px;
  }
}

.offers-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giraffe-image {
  width: 140px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (min-width: 480px) {
  .giraffe-image {
    width: 160px;
    height: 280px;
  }
}

@media (min-width: 768px) {
  .giraffe-image {
    width: 180px;
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .giraffe-image {
    width: 200px;
    height: 350px;
  }
}

@media (min-width: 1200px) {
  .giraffe-image {
    width: 220px;
    height: 380px;
  }
}

@media (max-width: 767px) {
  .offers-image {
    order: -1;
  }
}

.offers-content {
  background: linear-gradient(90deg, #FE9900 0%, rgba(0,115,170,0.11) 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .offers-content {
    padding: 24px;
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  .offers-content {
    padding: 28px;
    border-radius: 24px;
  }
}

@media (min-width: 1024px) {
  .offers-content {
    padding: 32px;
  }
}

.offers-subtitle {
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .offers-subtitle {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .offers-subtitle {
    font-size: 32px;
    line-height: 44px;
  }
}

.offers-description {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .offers-description {
    font-size: 18px;
    line-height: 26px;
  }
}

.btn-contact {
  background-color: #f98b02;
  color: #ffffff;
  padding: 8px 34px;
  border-radius: 22px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #e67a00;
  transform: translateY(-2px);
}

/* ---- SEASONAL SPECIALS SECTION ---- */
.seasonal-specials {
  padding: 60px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (min-width: 480px) {
  .seasonal-specials {
    padding: 80px 24px;
  }
}

@media (min-width: 768px) {
  .seasonal-specials {
    padding: 100px 48px;
  }
}

@media (min-width: 1024px) {
  .seasonal-specials {
    padding: 120px 76px;
  }
}

.seasonal-specials .section-title {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #333333;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .seasonal-specials .section-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}

.seasonal-specials .section-subtitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .seasonal-specials .section-subtitle {
    font-size: 20px;
    margin-bottom: 64px;
  }
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .specials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .specials-grid {
    gap: 32px;
  }
}

.special-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.special-card:hover::before {
  opacity: 1;
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.special-image {
  width: 100%;
  height: 212px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.special-card:hover .special-image {
  transform: scale(1.05);
}

.special-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.special-title {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .special-title {
    font-size: 20px;
  }
}

.special-price {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #666666;
  margin-bottom: 12px;
}

.price-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #FE9900;
}

.special-description {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.specials-cta {
  text-align: center;
}

.btn-view-offers {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-view-offers:hover {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ---- POPULAR DESTINATIONS SECTION ---- */
.popular-destinations {
  padding: 60px 16px;
  background: #f8f9fa;
}

@media (min-width: 480px) {
  .popular-destinations {
    padding: 80px 24px;
  }
}

@media (min-width: 768px) {
  .popular-destinations {
    padding: 100px 48px;
  }
}

@media (min-width: 1024px) {
  .popular-destinations {
    padding: 120px 76px;
  }
}

.section-title {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 40px;
    line-height: 53px;
  }
}

.destinations-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.destinations-slider::-webkit-scrollbar {
  display: none;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 480px) {
  .destinations-grid {
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .destinations-grid {
    gap: 30px;
    padding: 0 20px;
  }
}

.destination-card {
  background-color: rgba(255,255,255,0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .destination-card {
    min-width: 260px;
  }
}

@media (min-width: 768px) {
  .destination-card {
    min-width: 266px;
  }
}

.destination-card:hover {
  transform: translateY(-4px);
}

.destination-image {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.destination-info {
  padding: 12px 16px;
}

@media (min-width: 480px) {
  .destination-info {
    padding: 14px 20px;
  }
}

@media (min-width: 768px) {
  .destination-info {
    padding: 16px 24px;
  }
}

.destination-location {
  font-size: 14px;
  font-family: 'Grape Nuts', cursive;
  font-weight: 400;
  line-height: 18px;
  color: #000000;
  margin-bottom: 8px;
}

.destination-price {
  font-size: 20px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  text-align: right;
}

.price-per-person {
  font-size: 6px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  line-height: 8px;
  color: #000000;
}

.destination-description {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin-top: 8px;
}

/* Updated destination layout styles */
.destinations-category {
  margin-bottom: 48px;
}

.category-title {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333333;
  margin-bottom: 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.destination-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.destination-location {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.destination-price {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #FE9900;
  margin: 0;
}

/* International packages section */
.international-category {
  margin-bottom: 48px;
}

.international-destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .international-destinations {
    gap: 24px;
  }
}

.international-item {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .international-item {
    padding: 14px 28px;
    font-size: 18px;
  }
}

.international-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
}

.international-separator {
  font-size: 20px;
  color: #FE9900;
  font-weight: bold;
}

@media (min-width: 768px) {
  .international-separator {
    font-size: 24px;
  }
}

.destinations-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-discover-more {
  background: linear-gradient(135deg, #333333 0%, #555555 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-discover-more:hover {
  background: linear-gradient(135deg, #555555 0%, #333333 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

/* Legacy international section (can be removed if not used elsewhere) */
.international-section {
  background-color: #FE9900;
  padding: 12px;
  text-align: center;
  color: #ffffff;
}

.international-title {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .international-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .international-title {
    font-size: 40px;
    line-height: 53px;
  }
}

.international-description {
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .international-description {
    font-size: 17px;
    line-height: 27px;
  }
}

/* Special offers themed holidays */
.themed-holidays {
  padding: 60px 16px;
}

@media (min-width: 480px) {
  .themed-holidays {
    padding: 70px 24px;
  }
}

@media (min-width: 768px) {
  .themed-holidays {
    padding: 80px 32px;
  }
}

@media (min-width: 1024px) {
  .themed-holidays {
    padding: 90px 48px;
  }
}

@media (min-width: 1200px) {
  .themed-holidays {
    padding: 100px 56px;
  }
}

.themed-title {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin-bottom: 38px;
}

@media (min-width: 768px) {
  .themed-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .themed-title {
    font-size: 32px;
    line-height: 43px;
  }
}

.themed-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.themed-slider::-webkit-scrollbar {
  display: none;
}

.themed-grid {
  scroll-snap-type: x mandatory;
}

.themed-card {
  scroll-snap-align: start;
}

.themed-grid {
  display: flex;
  gap: 32px;
  min-width: max-content;
  padding: 0 16px;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .themed-grid {
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .themed-grid {
    gap: 50px;
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .themed-grid {
    gap: 64px;
  }
}

.themed-card {
  min-width: 260px;
  text-align: center;
  flex-shrink: 0;
  background-color: rgba(255,255,255,0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .themed-card {
    min-width: 260px;
  }
}

@media (min-width: 768px) {
  .themed-card {
    min-width: 266px;
  }
}

.themed-image {
  width: 100%;
  height: 212px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.themed-nav-buttons {
  display: flex;
  gap: 20px;
}

.themed-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.themed-nav-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
}

.themed-nav-btn img {
  width: 50px;
  height: 50px;
}

.themed-card-content {
  padding: 16px;
}

.themed-card-title {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .themed-card-title {
    font-size: 24px;
    line-height: 33px;
  }
}

.themed-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price-from {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 25px;
  color: rgba(51,51,51,0.8);
}

@media (min-width: 768px) {
  .price-from {
    font-size: 18px;
  }
}

.price-amount {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 1.4;
  color: #f98b02;
}

@media (min-width: 768px) {
  .price-amount {
    font-size: 24px;
    line-height: 33px;
  }
}

.themed-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-icon {
  width: 24px;
  height: 24px;
}

.detail-text {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 22px;
  color: #f98b02;
}

@media (min-width: 768px) {
  .detail-text {
    font-size: 16px;
  }
}

.themed-description {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
  text-align: left;
}

@media (min-width: 768px) {
  .themed-description {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ---- SERVICES SECTION ---- */
/* Lead Capture Section */
.lead-capture-section {
  padding: 60px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (min-width: 480px) {
  .lead-capture-section {
    padding: 80px 24px;
  }
}

@media (min-width: 768px) {
  .lead-capture-section {
    padding: 100px 48px;
  }
}

@media (min-width: 1024px) {
  .lead-capture-section {
    padding: 120px 76px;
  }
}

.lead-capture-intro {
  text-align: center;
  margin-bottom: 48px;
}

.lead-capture-title {
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .lead-capture-title {
    font-size: 44px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .lead-capture-title {
    font-size: 52px;
  }
}

.lead-capture-subtitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .lead-capture-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.btn-plan-trip {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-plan-trip:hover {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}

.services-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.services-info {
  flex: 1;
  max-width: 600px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.service-details {
  flex: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-title {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .service-title {
    font-size: 24px;
  }
}

.service-description {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

@media (min-width: 768px) {
  .service-description {
    font-size: 17px;
  }
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FE9900;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  padding: 8px 16px;
  border: 2px solid #FE9900;
  border-radius: 25px;
  background: transparent;
}

.service-link:hover {
  background: #FE9900;
  color: #ffffff;
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .service-link {
    font-size: 17px;
    padding: 10px 20px;
  }
}

.service-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover .service-arrow {
  transform: translateX(2px);
}

/* Trust & Numbers Section (Social Proof) */
.stats-section {
  background: linear-gradient(135deg, #14132A 0%, #1e1d3d 50%, #14132A 100%);
  padding: 50px 16px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(254,153,0,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
}

@media (min-width: 480px) {
  .stats-section {
    padding: 60px 24px;
  }
}

@media (min-width: 768px) {
  .stats-section {
    padding: 70px 48px;
  }
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 80px 76px;
  }
}

.stats-intro {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-intro {
    margin-bottom: 50px;
  }
}

.stats-title {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .stats-title {
    font-size: 38px;
    margin-bottom: 14px;
  }
}

@media (min-width: 1024px) {
  .stats-title {
    font-size: 42px;
  }
}

.stats-subtitle {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #FE9900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(254, 153, 0, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 2px 8px rgba(254, 153, 0, 0.3);
  }
  50% {
    text-shadow: 0 2px 15px rgba(254, 153, 0, 0.6);
  }
}

@media (min-width: 768px) {
  .stats-subtitle {
    font-size: 20px;
    letter-spacing: 3px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(254, 153, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 153, 0, 0.2), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #FE9900;
}

@media (min-width: 768px) {
  .stat-item {
    padding: 28px 20px;
  }
}

.stat-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(20, 19, 42, 0.3));
}

@media (min-width: 768px) {
  .stat-icon svg {
    width: 44px;
    height: 44px;
  }
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #14132A;
  margin: 0;
  background: linear-gradient(135deg, #14132A, #FE9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 480px) {
  .stat-number {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 32px;
  }
}

/* Text-based stats (non-numeric) */
.stat-text {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: #FE9900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 480px) {
  .stat-text {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .stat-text {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .stat-text {
    font-size: 26px;
  }
}

.stat-label {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #4a4a4a;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .stat-label {
    font-size: 14px;
  }
}



/* CTA section */
.cta-section {
  padding: 20px 16px 16px;
  text-align: center;
}

@media (min-width: 480px) {
  .cta-section {
    padding: 24px 24px 18px;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 26px 32px 18px;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 26px 48px 18px;
  }
}

@media (min-width: 1200px) {
  .cta-section {
    padding: 26px 56px 18px;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 832px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cta-title {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-align: left;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 36px;
    line-height: 47px;
  }
}

.btn-cta {
  background-color: #FE9900;
  color: #141841;
  padding: 12px 50px 12px 34px;
  border: 2px solid #cbf32e;
  border-radius: 22px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #FE9900;
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ---- FOOTER SECTION ---- */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 40px 20px 0;
  margin: 0;
  width: 100%;
}

.footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}

.footer-logo-section {
  flex-shrink: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 70px;
  }
}

.newsletter-section {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

@media (min-width: 768px) {
  .newsletter-section {
    display: flex;
    justify-content: flex-end;
  }
}

.newsletter-form {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  min-width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.newsletter-input::placeholder {
  color: #888;
}

/* Prevent zoom on iOS when focusing inputs */
@media screen and (max-width: 767px) {
  .newsletter-input {
    font-size: 16px; /* Minimum font size to prevent iOS zoom */
  }
}

.newsletter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 2px solid #FE9900;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.newsletter-button:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
}

.newsletter-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(88%) saturate(1088%) hue-rotate(353deg) brightness(96%) contrast(89%);
}

.newsletter-text {
  display: none;
}

@media (min-width: 640px) {
  .newsletter-text {
    display: inline;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
  }
}

.footer-section h3 {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-section h3 {
    font-size: 20px;
  }
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 22px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FE9900;
}

@media (min-width: 768px) {
  .footer-section a {
    font-size: 15px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(85%) sepia(58%) saturate(2504%) hue-rotate(4deg) brightness(104%) contrast(101%);
}

.contact-text {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

@media (min-width: 768px) {
  .contact-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-bottom {
  background-color: #ffd700;
  color: black;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.footer-bottom p {
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 21px;
  color: black;
  margin: 0;
  text-align: center;
}

/* Interactive states */
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.themed-card:hover {
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 479px) {
  .container {
    padding: 0 12px;
  }
  
  .header-top {
    padding: 6px 10px;
    font-size: 10px;
    min-height: 40px;
  }
  
  .header-main {
    padding: 8px 10px;
  }
  
  .logo {
    width: 75px;
    height: 22px;
  }
  
  .header-social img {
    width: 12px;
    height: 12px;
  }
  
  .contact-item {
    gap: 2px;
  }
  
  .header-contact {
    gap: 6px;
  }
  
  .header-social {
    gap: 4px;
  }
  
  .hero-section {
    padding: 100px 12px 60px;
    min-height: 60vh;
  }
  
  /* Extra mobile-specific improvements */
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .package-card {
    height: 250px;
  }
  
  .package-name-overlay h3 {
    font-size: 1rem;
  }
  
  /* Improved CTA for small phones */
  .cta-section {
    padding: 30px 15px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .offers-title {
    font-size: 28px;
  }
}

/* Small Devices (landscape phones, 480px and up) */
@media (min-width: 480px) and (max-width: 639px) {
  .hero-title {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .offers-title {
    font-size: 32px;
  }
}

/* Medium Devices (tablets, 640px and up) */
@media (min-width: 640px) and (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .offers-title {
    font-size: 34px;
  }
}

/* Large Devices (tablets landscape, 768px and up) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 34px;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .offers-title {
    font-size: 38px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
}

/* Extra Large Devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }
  
  .section-title {
    font-size: 38px;
  }
}

/* ========================================
   VISA SERVICES PAGE STYLES
   ======================================== */

/* ---- VISA PAGE HERO SECTION ---- */
.visa-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/Visa-Application-Heros-section-min.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 80px 16px 60px;
  text-align: center;
  color: white;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .visa-hero {
    padding: 100px 24px 70px;
    min-height: 65vh;
  }
}

@media (min-width: 768px) {
  .visa-hero {
    padding: 120px 32px 80px;
    min-height: 70vh;
    background-attachment: fixed;
  }
}

@media (min-width: 1024px) {
  .visa-hero {
    padding: 120px 0 80px;
  }
}

.visa-hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .visa-hero-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
  }
}

@media (min-width: 768px) {
  .visa-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .visa-hero-title {
    font-size: 3.5rem;
  }
}

.visa-hero-subtitle {
  font-size: 1rem;
  max-width: 90%;
  margin: 0 auto 24px;
  line-height: 1.6;
  opacity: 0.9;
}

@media (min-width: 480px) {
  .visa-hero-subtitle {
    font-size: 1.1rem;
    max-width: 80%;
    margin-bottom: 28px;
  }
}

@media (min-width: 768px) {
  .visa-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
  }
}

.contact-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn:hover {
  background: white;
  color: #333;
}

/* ---- VISA PAGE CONTENT SECTIONS ---- */
.planning-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.planning-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

/* ---- IMPORTANT NOTICE BANNER ---- */
.important-notice {
  background: #1a365d;
  color: white;
  padding: 30px 0;
  position: relative;
}

.important-notice::before {
  content: '⚠️';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
}

.notice-content {
  max-width: 800px;
  margin: 0 auto;
}

.notice-title {
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.notice-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.consult-btn {
  background: #ffd700;
  color: #1a365d;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  float: right;
  margin-top: 20px;
}

/* ---- VISA CARDS GRID ---- */
.visa-intro {
  text-align: center;
  padding: 80px 0 40px;
}

.visa-intro-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.visa-main-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
}

.visa-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 16px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .visa-cards-grid {
    gap: 24px;
    padding: 0 20px 70px;
  }
}

@media (min-width: 640px) {
  .visa-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (min-width: 768px) {
  .visa-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 80px;
  }
}

.visa-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.visa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.visa-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}

.visa-card-content {
  padding: 25px;
  text-align: left;
}

.visa-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a365d;
  margin-bottom: 15px;
}

.visa-types {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ---- COUNTRY DETAILS SECTIONS ---- */
.country-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.country-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a365d;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.country-details {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.detail-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #1a365d;
}

.detail-title {
  font-weight: bold;
  color: #1a365d;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.detail-text {
  color: #666;
  line-height: 1.6;
}

.detail-list {
  list-style: none;
  padding: 0;
}

.detail-list li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.detail-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* ---- HOW IT WORKS SECTION ---- */
.how-it-works {
  background: #1a1a1a;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.how-title {
  font-size: 3rem;
  margin-bottom: 50px;
  font-family: 'Brush Script MT', cursive;
  color: #ffd700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: left;
}

.step-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffd700;
  font-size: 1.1rem;
}

.step-description {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---- WHY CHOOSE US SECTION ---- */
.why-choose-us {
  padding: 80px 0;
  background: white;
}

.why-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #1a365d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.benefit-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a365d;
}

.benefit-text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ---- CONTACT AND CTA SECTIONS ---- */
.contact-section {
  background: white;
  padding: 60px 0;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-address {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-cta {
  background: #ffd700;
  color: #1a365d;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-cta:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

/* ---- CAR HIRE PAGE STYLES ---- */

/* Car Hire Hero Section */
.car-hire-hero {
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('images/Car-Hire-Page/Car-hire-heros-section.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .car-hire-hero {
    min-height: 350px;
    padding: 95px 24px 50px;
  }
}

@media (min-width: 768px) {
  .car-hire-hero {
    min-height: 400px;
    padding: 100px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .car-hire-hero {
    min-height: 400px;
    padding: 110px 48px 60px;
  }
}

.car-hire-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/car_icon.png') no-repeat center;
  background-size: 800px;
  opacity: 0.1;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.car-hire-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.car-hire-hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .car-hire-hero-title {
    font-size: 32px;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
  }
}

@media (min-width: 768px) {
  .car-hire-hero-title {
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
}

@media (min-width: 1024px) {
  .car-hire-hero-title {
    font-size: 48px;
  }
}

.car-hire-hero-subtitle {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #e6f3ff;
}

@media (min-width: 480px) {
  .car-hire-hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

@media (min-width: 768px) {
  .car-hire-hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.car-hire-hero-subtitle strong {
  color: #00bfff;
  font-weight: 600;
}

.car-hire-cta {
  background: linear-gradient(45deg, #FE9900, #ffed4e);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.car-hire-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  background: linear-gradient(45deg, #ffed4e, #FE9900);
}

/* Car Selection Section */
.car-selection-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.section-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.car-selection-cta .btn-secondary {
  background: linear-gradient(45deg, #FE9900, #ffed4e);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.car-selection-cta .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Available Cars Grid */
.available-cars-section {
  padding: 80px 0;
  background: #ffffff;
}

.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 480px) {
  .cars-grid {
    gap: 24px;
    margin-top: 50px;
  }
}

@media (min-width: 640px) {
  .cars-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

.car-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.car-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(0, 191, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.car-card:hover::before {
  opacity: 1;
}

.car-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.1);
}

.car-info {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.car-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.car-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-location::before {
  content: '📍';
  font-size: 12px;
}

.car-price {
  font-size: 18px;
  font-weight: 700;
  color: #FE9900;
}

/* Car Statistics Section */
.car-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, #FE9900, #ffed4e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.stat-circle:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.stat-circle img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: brightness(0);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Car Services Section */
.car-services-section {
  padding: 60px 0;
  background: #ffffff;
}

.services-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #FE9900;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.service-icon {
  color: #FE9900;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.service-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.service-text strong {
  color: #000;
}

/* Customer Testimonials */
.car-testimonials-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.testimonials-content {
  margin: 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-placeholder {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid #FE9900;
}

.testimonial-placeholder p {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #FE9900;
  font-size: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #FE9900;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tagline {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 40px 0 30px;
  font-style: italic;
}

.contact-cta {
  margin-top: 40px;
}

.contact-cta .btn-primary {
  background: linear-gradient(45deg, #FE9900, #ffed4e);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive Design for Car Hire Page */
@media (max-width: 479px) {
  .car-hire-hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .car-hire-hero {
    min-height: 50vh;
    padding: 30px 12px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-circle {
    width: 100px;
    height: 100px;
  }
  
  .stat-number {
    font-size: 18px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .car-hire-hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stat-circle {
    width: 120px;
    height: 120px;
  }
  
  .stat-number {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .stat-circle {
    width: 130px;
    height: 130px;
  }
  
  .stat-number {
    font-size: 22px;
  }
}

/* ---- INTERACTIVE COMPONENTS ---- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.chat-widget:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.service-packages-btn {
  text-align: center;
  margin: 60px 0;
}

.packages-btn {
  background: #28a745;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.packages-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* ========================================
   VISA PAGE RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   VISA PAGE RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 479px) {
  .visa-main-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .country-title {
    font-size: 1.5rem;
  }
  
  .how-title {
    font-size: 1.8rem;
  }
  
  .why-title {
    font-size: 1.8rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .consult-btn {
    float: none;
    display: block;
    text-align: center;
    margin: 15px auto 0;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .visa-main-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .country-title {
    font-size: 1.6rem;
  }
  
  .how-title {
    font-size: 2rem;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .consult-btn {
    float: none;
    display: block;
    text-align: center;
    margin: 20px auto 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .visa-main-title {
    font-size: 2.5rem;
  }
  
  .country-title {
    font-size: 1.8rem;
  }
  
  .how-title {
    font-size: 2.5rem;
  }
  
  .why-title {
    font-size: 2.2rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

/* New Visa Page Styles - Modern Professional Design */
.visa-hero {
  min-height: 500px;
  background: linear-gradient(rgba(26, 95, 122, 0.7), rgba(212, 175, 55, 0.6)), 
              url('../assets/images/Visa-Page/Visa-Application-Heros\ section-min.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .visa-hero {
    min-height: 450px;
    padding: 95px 24px 50px;
  }
}

@media (min-width: 768px) {
  .visa-hero {
    min-height: 500px;
    padding: 100px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .visa-hero {
    padding: 110px 48px 80px;
  }
}

.visa-hero .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.visa-hero .container {
  position: relative;
  z-index: 2;
}

.visa-hero-content {
  color: white;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.visa-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  color: white;
}

.visa-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.visa-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.visa-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.visa-cta-btn:not(.secondary) {
  background: #FE9900;
  color: white;
  border-color: #FE9900;
}

.visa-cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.visa-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.visa-main {
  background: #f8f9fa;
  padding: 80px 0;
}

.visa-section {
  margin-bottom: 80px;
}

.visa-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.visa-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FE9900, #FE9900);
  border-radius: 2px;
}

.visa-section-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.visa-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.visa-service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.visa-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.visa-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FE9900, #FE9900);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.visa-service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.visa-service-card p {
  color: #666;
  line-height: 1.6;
}

.visa-disclaimer {
  background: linear-gradient(135deg, #fff9e6, #f7f2d8);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #FE9900;
  text-align: center;
}

.visa-disclaimer p {
  margin: 0;
  font-size: 1.1rem;
  color: #8b7355;
}

.visa-important-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visa-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.visa-info-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.visa-info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FE9900;
  margin-bottom: 15px;
}

.visa-info-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.visa-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.visa-country-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.visa-country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.visa-country-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.visa-country-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.visa-country-card:hover .visa-country-image {
  transform: scale(1.05);
}

.visa-country-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 25px 20px;
}

.visa-country-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.visa-country-types {
  font-size: 0.9rem;
  opacity: 0.9;
}

.visa-country-content {
  padding: 25px;
}

.visa-country-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FE9900;
  margin-bottom: 10px;
  margin-top: 20px;
}

.visa-country-content h4:first-child {
  margin-top: 0;
}

.visa-country-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.passport-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.passport-service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.passport-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.passport-service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.passport-service-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.visa-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.visa-process-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.visa-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.visa-process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FE9900, #FE9900);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.visa-process-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.visa-process-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-choose-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  background: linear-gradient(135deg, #FE9900, #FE9900);
  color: white;
  transform: translateY(-5px);
}

.why-choose-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-choose-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-choose-item p {
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.visa-faqs {
  max-width: 800px;
  margin: 0 auto;
}

.visa-faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visa-faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visa-faq-question:hover {
  background: #f8f9fa;
}

.visa-faq-question h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.visa-faq-toggle {
  font-size: 1.5rem;
  color: #FE9900;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.visa-faq-item.active .visa-faq-toggle {
  transform: rotate(45deg);
}

.visa-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.visa-faq-item.active .visa-faq-answer {
  max-height: 150px;
  padding: 25px;
}

.visa-faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.visa-contact-cta {
  background: linear-gradient(135deg, #14132A, #57cc99);
  padding: 80px 0;
  color: white;
}

.visa-contact-content {
  text-align: center;
}

.visa-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.visa-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.visa-contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.visa-contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.visa-contact-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.visa-contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.visa-contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.visa-contact-item a:hover {
  color: #FE9900;
}

.visa-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.visa-whatsapp-btn:hover {
  background: #20b558;
  transform: scale(1.05);
}

/* Mobile Responsiveness for New Visa Page */
@media (max-width: 768px) {
  .visa-hero {
    min-height: 60vh;
  }

  .visa-hero-title {
    font-size: 2.2rem;
  }

  .visa-hero-subtitle {
    font-size: 1.1rem;
  }

  .visa-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .visa-cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .visa-section-title {
    font-size: 2rem;
  }

  .visa-services-grid,
  .visa-info-cards,
  .passport-services,
  .visa-process,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .visa-countries-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .visa-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .visa-contact-title {
    font-size: 2rem;
  }

  .visa-main {
    padding: 60px 0;
  }

  .visa-section {
    margin-bottom: 60px;
  }

  .visa-important-info {
    padding: 30px 20px;
  }

  .visa-faq-question {
    padding: 20px;
  }

  .visa-faq-question h4 {
    font-size: 1.1rem;
  }

  .visa-faq-answer {
    padding: 0 20px;
  }

  .visa-faq-item.active .visa-faq-answer {
    padding: 20px;
  }
}

/* =====================================================
   VISA APPLICATION FORM STYLES
   ===================================================== */

.visa-application-section {
  background: #f9f9f9;
  padding: 80px 0;
  margin: 0;
}

.visa-form-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.visa-form-header h2 {
  font-size: 2.5rem;
  color: #14132A;
  margin-bottom: 15px;
  font-weight: 700;
}

.visa-form-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.visa-application-form {
  background: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.visa-form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.visa-form-section:last-of-type {
  border-bottom: none;
}

.visa-form-section-title {
  font-size: 1.5rem;
  color: #14132A;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.visa-form-note {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

.visa-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visa-form-group {
  display: flex;
  flex-direction: column;
}

.visa-form-group.full-width {
  grid-column: 1 / -1;
}

.visa-form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

.visa-form-group input[type="text"],
.visa-form-group input[type="email"],
.visa-form-group input[type="tel"],
.visa-form-group input[type="date"],
.visa-form-group select,
.visa-form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.visa-form-group input:focus,
.visa-form-group select:focus,
.visa-form-group textarea:focus {
  outline: none;
  border-color: #FE9900;
  box-shadow: 0 0 0 3px rgba(254, 153, 0, 0.1);
}

.visa-form-group input[type="file"] {
  padding: 10px;
  border: 2px dashed #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.visa-form-group input[type="file"]:hover {
  border-color: #FE9900;
  background: #fff8f0;
}

.visa-form-help {
  color: #999;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.visa-form-declaration {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FE9900;
}

.visa-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.6;
}

.visa-checkbox-label input[type="checkbox"] {
  margin-right: 12px;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.visa-form-submit {
  text-align: center;
  margin-top: 30px;
}

.visa-submit-btn {
  background: linear-gradient(135deg, #FE9900 0%, #ff8800 100%);
  color: white;
  border: none;
  padding: 15px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 153, 0, 0.3);
}

.visa-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 153, 0, 0.4);
}

.visa-submit-btn:active {
  transform: translateY(0);
}

.visa-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.visa-form-response {
  margin-top: 25px;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.6;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Styles for Visa Application Form */
@media (max-width: 768px) {
  .visa-application-section {
    padding: 60px 0;
  }

  .visa-form-header h2 {
    font-size: 2rem;
  }

  .visa-form-subtitle {
    font-size: 1rem;
  }

  .visa-application-form {
    padding: 30px 20px;
  }

  .visa-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .visa-form-section-title {
    font-size: 1.3rem;
  }

  .visa-submit-btn {
    padding: 12px 35px;
    font-size: 1rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .visa-form-header {
    margin-bottom: 30px;
  }

  .visa-form-header h2 {
    font-size: 1.75rem;
  }

  .visa-application-form {
    padding: 25px 15px;
  }

  .visa-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .visa-form-group input,
  .visa-form-group select,
  .visa-form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Themed Packages Styles */
.themed-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('images/International-Packages/International\ Page\ Cover\ Image.jpg') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 90px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .themed-hero {
    min-height: 450px;
    padding: 95px 24px 50px;
  }
}

@media (min-width: 768px) {
  .themed-hero {
    min-height: 500px;
    padding: 100px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .themed-hero {
    padding: 110px 48px 80px;
  }
}

.themed-hero .hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.themed-hero .hero-content {
  z-index: 2;
  text-align: center;
  width: 100%;
}

.themed-hero .hero-title {
  font-size: 4rem;
  font-weight: 300;
  margin: 0 auto 10px;
  letter-spacing: 2px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
  text-align: center;
}

.themed-hero .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 auto;
  opacity: 0.95;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  text-align: center;
}

.themed-packages-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.theme-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #141841;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
  position: relative;
  padding-bottom: 15px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FE9900, #f0d060);
}

.themed-packages-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.package-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 152, 0, 0.95) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card:hover .package-overlay {
  opacity: 1;
}

.package-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.package-content {
  color: white;
}

.package-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.package-content p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.package-content strong {
  font-weight: 600;
}

/* Package Name Overlay - Always Visible */
.package-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 20px 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.package-name-overlay h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.package-card:hover .package-name-overlay {
  opacity: 0;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  z-index: -1;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #ffc107;
}

.cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #cccccc;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #1a1a1a;
  border: 2px solid #ffc107;
}

.cta-button.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: white;
  border: 2px solid #25d366;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.cta-button.whatsapp:hover {
  background: linear-gradient(135deg, #1da851 0%, #0f7935 100%);
}

.cta-urgency {
  margin-top: 15px;
  padding: 8px 20px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 6px;
  display: inline-block;
}

.urgency-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #dc3545;
}

/* Mobile CTA Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-subtext {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-button {
    font-size: 0.95rem;
    padding: 14px 30px;
    width: 90%;
    max-width: 280px;
  }
  
  .urgency-text {
    font-size: 0.8rem;
  }
}

/* Responsive Styles for Themed Packages */
@media (max-width: 768px) {
  .themed-hero {
    margin-top: 80px !important;
    height: 50vh;
    min-height: 350px;
  }
  
  .themed-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .themed-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  section[class*="-hero"],
  section.page-hero {
    margin-top: 80px !important;
    min-height: 350px;
  }

  .package-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .package-card {
    height: 250px;
  }

  .package-overlay {
    padding: 15px;
  }

  .package-content h3 {
    font-size: 1rem;
  }

  .package-content p {
    font-size: 0.8rem;
  }

  .package-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .page-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .package-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Form Styles */
.contact-hero {
  min-height: 350px;
  background: linear-gradient(135deg, rgba(20, 24, 65, 0.75) 0%, rgba(20, 24, 65, 0.65) 100%),
              url('../assets/images/main-header.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 90px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .contact-hero {
    min-height: 350px;
    padding: 95px 24px 50px;
  }
}

@media (min-width: 768px) {
  .contact-hero {
    min-height: 400px;
    padding: 100px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .contact-hero {
    min-height: 400px;
    padding: 110px 48px 60px;
  }
}

.contact-hero .hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-content {
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
  z-index: 2;
}

.contact-hero .hero-title,
.contact-hero-content h1 {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.contact-hero .hero-subtitle,
.contact-hero-content p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 50px;
}

.form-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.form-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.trip-planning-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  gap: 40px;
}

.form-section {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.5rem;
  color: #FE9900;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FE9900;
  display: inline-block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background-color: #fff;
  text-align: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FE9900;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.checkbox-label:hover {
  background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.submit-note {
  margin-top: 15px;
  color: #666;
  font-style: italic;
}

.contact-info {
  margin-top: 60px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-method {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.method-details h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.method-details p {
  margin-bottom: 5px;
}

.method-details a {
  color: #FE9900;
  text-decoration: none;
  font-weight: 600;
}

.method-details span {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .trip-planning-form {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .contact-hero {
    height: 40vh;
  }
  
  .form-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 40px 0;
  }
  
  .trip-planning-form {
    padding: 20px 15px;
  }
  
  .form-intro h2 {
    font-size: 1.8rem;
  }
  
  .submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Beach Getaways Hero */
.beach-hero {
  min-height: 500px;
  background: linear-gradient(135deg, rgba(20, 24, 65, 0.75) 0%, rgba(20, 24, 65, 0.65) 100%),
              url('../assets/images/Hero-Section/hero-section-images\ \(3\).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .beach-hero {
    min-height: 450px;
    padding: 140px 24px 50px;
  }
}

@media (min-width: 768px) {
  .beach-hero {
    min-height: 500px;
    padding: 160px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .beach-hero {
    padding: 180px 48px 80px;
  }
}

.beach-hero .hero-overlay {
  background: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beach-hero .hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: white;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

/* Beach Packages Grid */
.beach-packages-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.beach-packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.beach-package-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.beach-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.beach-package-card .package-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.beach-package-card .package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(46, 204, 113, 0.95) 100%);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beach-package-card:hover .package-overlay {
  opacity: 1;
}

.beach-package-card .package-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  align-self: flex-start;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.beach-package-card .package-content {
  color: white;
  text-align: left;
}

.beach-package-card .package-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.beach-package-card .package-info {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.beach-package-card .package-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.beach-package-card .package-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.beach-package-card .package-details {
  font-size: 0.85rem;
  line-height: 1.4;
}

.beach-package-card .includes,
.beach-package-card .excludes {
  margin-bottom: 10px;
  padding: 8px 0;
}

.beach-package-card .includes strong,
.beach-package-card .excludes strong {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.beach-package-card .includes {
  border-left: 3px solid #2ecc71;
  padding-left: 10px;
}

.beach-package-card .excludes {
  border-left: 3px solid #e74c3c;
  padding-left: 10px;
}

/* Beach Packages Responsive */
@media (max-width: 768px) {
  .beach-hero .hero-title {
    font-size: 2.5rem;
  }

  .beach-packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .beach-package-card {
    height: 300px;
  }

  .beach-package-card .package-overlay {
    padding: 20px;
  }

  .beach-package-card .package-content h3 {
    font-size: 1.1rem;
  }

  .beach-package-card .package-info p {
    font-size: 0.85rem;
  }

  .beach-package-card .package-description {
    font-size: 0.9rem;
  }

  .beach-package-card .package-details {
    font-size: 0.8rem;
  }

  .beach-package-card .package-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .beach-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beach-package-card {
    height: 320px;
  }
}

@media (min-width: 1025px) {
  .beach-hero {
    background-attachment: fixed;
  }
}

/* Kenyan Safaris Hero */
.safari-hero {
  height: 70vh;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(20, 24, 65, 0.75) 0%, rgba(139, 69, 19, 0.65) 100%),
              url('../assets/images/Hero-Section/hero-section-images\ \(8\).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.safari-hero .hero-overlay {
  background: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safari-hero .hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: white;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

/* Safari Packages Grid */
.safari-packages-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.safari-packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safari-package-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.safari-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.safari-package-card .package-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.safari-package-card .package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(210, 180, 140, 0.95) 100%);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.safari-package-card:hover .package-overlay {
  opacity: 1;
}

.safari-package-card .package-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  align-self: flex-start;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.safari-package-card .package-content {
  color: white;
  text-align: left;
}

.safari-package-card .package-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.safari-package-card .package-info {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.safari-package-card .package-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.safari-package-card .package-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.safari-package-card .package-details {
  font-size: 0.85rem;
  line-height: 1.4;
}

.safari-package-card .includes,
.safari-package-card .excludes {
  margin-bottom: 10px;
  padding: 8px 0;
}

.safari-package-card .includes strong,
.safari-package-card .excludes strong {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.safari-package-card .includes {
  border-left: 3px solid #228b22;
  padding-left: 10px;
}

.safari-package-card .excludes {
  border-left: 3px solid #cd853f;
  padding-left: 10px;
}

/* Safari Packages Responsive */
@media (max-width: 768px) {
  .safari-hero .hero-title {
    font-size: 2.5rem;
  }

  .safari-packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safari-package-card {
    height: 300px;
  }

  .safari-package-card .package-overlay {
    padding: 20px;
  }

  .safari-package-card .package-content h3 {
    font-size: 1.1rem;
  }

  .safari-package-card .package-info p {
    font-size: 0.85rem;
  }

  .safari-package-card .package-description {
    font-size: 0.9rem;
  }

  .safari-package-card .package-details {
    font-size: 0.8rem;
  }

  .safari-package-card .package-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .safari-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safari-package-card {
    height: 320px;
  }
}

@media (min-width: 1025px) {
  .safari-hero {
    background-attachment: fixed;
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Page Hero Section */
.page-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px 20px;
  position: relative;
}

.page-hero-title {
  font-size: 72px;
  font-weight: 300;
  color: white;
  margin-bottom: 0;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: white;
}

/* Tagline */
.about-tagline {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 0;
}

.about-tagline h2 {
  font-size: 32px;
  font-weight: 400;
  color: #FE9900;
  font-family: 'Playfair Display', serif;
}

/* Journey Section */
.journey-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.journey-image {
  background: linear-gradient(135deg, #72dfe8 0%, #5fc3d8 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.journey-content {
  padding: 20px;
}

.journey-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.journey-content h3 {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.journey-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.contact-btn:hover {
  background: #333;
  color: white;
}

/* Mission & Vision Section */
.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.mission-content,
.vision-content {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-content:hover,
.vision-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-content h3,
.vision-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #14132A;
  margin-bottom: 20px;
  border-bottom: 3px solid #FE9900;
  padding-bottom: 10px;
}

.mission-content p,
.vision-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.mission-content p:last-child,
.vision-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 968px) {
  .mission-vision-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
}

/* Compass Section */
.compass-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.compass-content {
  padding: 20px;
}

.compass-content h3 {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.compass-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.compass-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.compass-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Beyond the Ticket Section */
.beyond-ticket-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.beyond-ticket-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.beyond-ticket-image img {
  width: 100%;
  height: auto;
  display: block;
}

.beyond-ticket-content {
  padding: 20px;
}

.beyond-ticket-content h3 {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.beyond-ticket-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* Company Profile Download Section */
.company-profile-download {
  margin: 80px 0;
  display: flex;
  justify-content: center;
}

.profile-download-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.profile-download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.profile-download-card .profile-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.profile-download-card h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.profile-download-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #FE9900;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.view-more-link:hover {
  background: #FE9900;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* Services Overview */
.services-overview {
  margin: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Why Choose Us */
.why-choose-us {
  margin: 80px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
}

.feature-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FE9900;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #666;
}

/* About CTA */
.about-cta {
  background: linear-gradient(135deg, #FE9900 0%, #0073aa 100%);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  margin: 80px 0;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Styles for About Us Page */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    padding: 60px 20px;
  }

  .page-hero-title {
    font-size: 48px;
  }

  .about-tagline h2 {
    font-size: 24px;
  }

  .journey-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compass-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .beyond-ticket-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-content h3,
  .compass-content h3 {
    font-size: 28px;
  }

  .beyond-ticket-content h3 {
    font-size: 28px;
  }

  .journey-content p,
  .compass-content p {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 36px;
  }

  .about-tagline h2 {
    font-size: 20px;
  }

  .journey-content h3,
  .compass-content h3 {
    font-size: 24px;
  }

  .beyond-ticket-content h3 {
    font-size: 24px;
  }

  .journey-image {
    padding: 20px;
  }

  .profile-download-card {
    padding: 30px 20px;
  }

  .profile-download-card h3 {
    font-size: 24px;
  }

  .view-more-link {
    padding: 12px 24px;
    font-size: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    padding: 30px 20px;
  }
}

/* ========================================
   Blog Page Styles
   ======================================== */

/* Blog Hero Section */
.blog-hero {
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('images/about-us/about-us.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 16px 30px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .blog-hero {
    min-height: 380px;
    padding: 140px 24px 40px;
  }
}

@media (min-width: 768px) {
  .blog-hero {
    min-height: 400px;
    padding: 160px 32px 50px;
  }
}

@media (min-width: 1024px) {
  .blog-hero {
    min-height: 400px;
    padding: 180px 48px 60px;
  }
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/blog_icon.png') no-repeat center;
  background-size: 800px;
  opacity: 0.05;
  z-index: 1;
}

.blog-hero .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.blog-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, #FE9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 480px) {
  .blog-hero-title {
    font-size: 30px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
  }
}

@media (min-width: 768px) {
  .blog-hero-title {
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
}

@media (min-width: 1024px) {
  .blog-hero-title {
    font-size: 40px;
    margin-bottom: 18px;
  }
}

.blog-hero-subtitle {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-align: center;
}

@media (min-width: 480px) {
  .blog-hero-subtitle {
    font-size: 15px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .blog-hero-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .blog-hero-subtitle {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.blog-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FE9900 0%, #14132A 100%);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .blog-cta {
    padding: 14px 36px;
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .blog-cta {
    padding: 16px 40px;
    font-size: 16px;
  }
}

.blog-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e0bb4a 0%, #217089 100%);
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: #ffffff;
}

.blog-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Blog Image Wrapper */
.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

/* Blog Date Badge */
.blog-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(255,107,53,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 65px;
}

.date-day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.date-month {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}

/* Blog Content */
.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: #ff6b35;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-read-more:hover {
  color: #e55a2b;
  gap: 10px;
}

/* Blog CTA Section */
.blog-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.blog-cta p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FE9900 0%, #f1c850 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* Responsive Design for Blog Page */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-main-title {
    font-size: 36px;
  }

  .blog-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 200px;
  }

  .blog-section {
    padding: 50px 0;
  }

  .blog-main-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .blog-image-wrapper {
    height: 220px;
  }

  .blog-content h3 {
    font-size: 18px;
    min-height: auto;
  }

  .blog-cta {
    margin-top: 50px;
    padding: 40px 20px;
  }

  .blog-cta h2 {
    font-size: 26px;
  }

  .blog-cta p {
    font-size: 18px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ========================================
   SIMPLE CONTACT PAGE STYLES
   ======================================== */

.simple-contact-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Form Box */
.contact-form-box {
  background: white;
  padding: 50px 40px;
  border-radius: 0;
}

.contact-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #FE9900;
}

.simple-contact-form {
  margin-top: 40px;
}

.simple-contact-form .form-group {
  margin-bottom: 20px;
}

.simple-contact-form input,
.simple-contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
  outline: none;
  border-color: #FE9900;
  background-color: white;
}

.simple-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #FE9900;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #c09d2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Social Icons in Form */
.form-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.form-social-icons .social-icon {
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.form-social-icons .social-icon:hover {
  background-color: #FE9900;
  transform: translateY(-3px);
}

.form-social-icons .social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  background-color: white;
  padding: 40px 30px;
  border-left: 4px solid #FE9900;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  color: #FE9900;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.info-value a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #FE9900;
}

/* Map Section */
.map-section {
  margin: 0;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #141841 0%, #1a1f52 100%);
  padding: 60px 0;
}

.cta-content-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 36px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background-color: #FE9900;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #c09d2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .simple-contact-section {
    padding: 50px 20px;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-info-sidebar {
    padding: 30px 20px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .map-container {
    height: 350px;
  }
}

/* ========================================
   SIMPLE CONTACT PAGE STYLES
   ======================================== */

.simple-contact-section {
  padding: 100px 20px 80px;
  background: #f8f8f8;
}

.simple-contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}

.simple-contact-divider {
  width: 60px;
  height: 3px;
  background: #FE9900;
  margin: 0 auto 60px;
}

.simple-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .simple-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Form */
.simple-contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.simple-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.simple-form-group {
  display: flex;
  flex-direction: column;
}

.simple-form-group label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: center;
}

.simple-form-group input,
.simple-form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  font-size: 14px;
  font-family: inherit;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
}

.simple-form-group input:focus,
.simple-form-group textarea:focus {
  outline: none;
  border-color: #FE9900;
  background: #fff;
}

.simple-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.simple-submit-btn {
  background: #FE9900;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: 'Oswald', sans-serif;
}

.simple-submit-btn:hover {
  background: #c29d2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Contact Details */
.simple-contact-details {
  padding: 20px 0;
}

.simple-contact-heading {
  font-size: 18px;
  font-weight: 600;
  color: #FE9900;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
}

.simple-contact-item {
  margin-bottom: 30px;
}

.simple-contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
}

.simple-contact-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.simple-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.simple-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: #fff;
}

.simple-social-link:hover {
  border-color: #FE9900;
  background: #FE9900;
  transform: translateY(-3px);
}

.simple-social-link:hover img {
  filter: brightness(0) invert(1);
}

/* Map Section */
.contact-map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-map-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-map-container {
    height: 350px;
  }
}

/* Car Hire Enquiry Section */
.car-hire-enquiry-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.car-hire-enquiry-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #14132A;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}

.car-hire-enquiry-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.car-hire-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.car-hire-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FE9900;
  background: #fffbf5;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #c41e3a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  font-family: 'Oswald', sans-serif;
  border-radius: 4px;
  min-width: 200px;
}

.submit-btn:hover {
  background: #a01829;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .car-hire-enquiry-section {
    padding: 60px 20px;
  }

  .car-hire-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Simple CTA Section */
.simple-cta-section {
  background: #fff;
  padding: 60px 20px;
}

.simple-cta-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.simple-cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px 0;
  font-family: 'Oswald', sans-serif;
}

.simple-cta-text p {
  font-size: 20px;
  color: #666;
  margin: 0;
  font-weight: 300;
}

.simple-cta-btn {
  background: #FE9900;
  color: #fff;
  padding: 16px 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
}

.simple-cta-btn:hover {
  background: #c29d2e;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .simple-contact-section {
    padding: 80px 20px 60px;
  }

  .simple-contact-title {
    font-size: 26px;
  }

  .simple-contact-form-wrapper {
    padding: 30px 20px;
  }

  .simple-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .simple-cta-text h2 {
    font-size: 28px;
  }

  .simple-cta-text p {
    font-size: 18px;
  }

  .simple-cta-btn {
    width: 100%;
    text-align: center;
  }
}



/* ===================================
   FLIGHT BOOKING PAGE STYLES
   =================================== */

/* Hero Section with Forest Background */
.flight-booking-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('images/Airline-Booking/Dallas\,\ USA-min.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  padding: 120px 20px 20px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .flight-booking-hero {
    min-height: 450px;
    padding: 140px 24px 20px;
  }
}

@media (min-width: 768px) {
  .flight-booking-hero {
    min-height: 500px;
    padding: 160px 32px 20px;
  }
}

@media (min-width: 1024px) {
  .flight-booking-hero {
    padding: 180px 48px 40px;
  }
}

.flight-booking-hero .hero-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px;
  width: 100%;
}

.flight-hero-content {
  text-align: left;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

.book-now-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.flight-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Oswald', sans-serif;
}

.flight-hero-subtitle {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 10px 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-family: 'Open Sans', sans-serif;
}

.flight-hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
  margin: 15px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Open Sans', sans-serif;
}

/* Search Form Container */
.flight-search-container {
  background: white;
  padding: 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.search-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.search-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}

/* Trip Type Options */
.trip-options {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.radio-option span {
  user-select: none;
}

/* Flight Search Form */
.flight-search-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  align-items: end;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.form-field select,
.form-field input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  background: white;
  transition: border-color 0.3s ease;
}

.form-field select:focus,
.form-field input[type="date"]:focus {
  outline: none;
  border-color: #ff6b35;
}

/* People Dropdown */
.people-field {
  position: relative;
}

.people-dropdown {
  position: relative;
  width: 100%;
}

.people-selector {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.people-selector:hover {
  border-color: #ff6b35;
}

.dropdown-arrow {
  font-size: 0.8rem;
  color: #666;
}

.people-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 1000;
}

.people-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.people-counter:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
}

.people-counter label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #666;
}

.counter-btn:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.counter-controls span {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.done-btn {
  width: 100%;
  padding: 10px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.done-btn:hover {
  background: #ff5722;
}

/* Submit Button */
.submit-field {
  display: flex;
  align-items: flex-end;
}

.submit-btn {
  width: 100%;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Destinations Section */
.destinations-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.destinations-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
}

.region-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b35;
  margin: 40px 0 20px;
  font-family: 'Oswald', sans-serif;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-arrow {
  font-size: 1rem;
  margin-left: 10px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.destination-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
}

.special-badge {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
}

.destination-class {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 8px;
}

.destination-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}

.destination-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
}

.discover-more {
  text-align: center;
  margin-top: 40px;
}

.discover-btn {
  padding: 15px 40px;
  background: white;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  background: #ff6b35;
  color: white;
}

/* Airport Transfer Section */
.airport-transfer-section {
  padding: 80px 20px;
  background: white;
}

.airport-transfer-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.transfer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.transfer-content > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.transfer-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.service-column-alt h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}

.service-column-alt ul {
  list-style: none;
  padding: 0;
}

.service-column-alt ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.service-column-alt ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

.transfer-cta {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-btn-secondary {
  background: white;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.cta-btn-secondary:hover {
  background: #ff6b35;
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .submit-field {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .flight-hero-title {
    font-size: 2.5rem;
  }
  
  .flight-hero-subtitle {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .submit-field {
    grid-column: span 1;
  }
  
  .trip-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .transfer-services {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .flight-hero-title {
    font-size: 2rem;
  }
  
  .flight-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .search-title {
    font-size: 1.2rem;
  }
  
  .transfer-cta {
    flex-direction: column;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}

/* ===================================
   DISCOVER THE WORLD SECTION
   =================================== */

.discover-world-section {
  padding: 80px 20px;
  background: white;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.discover-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.discover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.discover-image {
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}

.discover-content {
  color: white;
  position: relative;
  z-index: 2;
}

.discover-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
}

.discover-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 10px;
  opacity: 0.95;
}

.discover-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.discover-more-btn {
  text-align: center;
  margin-top: 30px;
}

/* ===================================
   WHY BOOK WITH JETWIDE SECTION
   =================================== */

.why-book-section {
  padding: 80px 20px;
  background: #ffffff;
}

.benefits-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  color: #ff6b35;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
}

.benefit-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ===================================
   PERFECT DEALS SECTION
   =================================== */

.perfect-deals-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #87CEEB 0%, #B0D4E3 100%);
  position: relative;
  overflow: hidden;
}

.section-heading-white {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
}

.deals-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.deals-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  overflow: visible;
}

.deal-card {
  min-width: 280px;
  flex: 0 0 280px;
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-5px);
}

.current-offer {
  background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
  color: white;
}

.special-month {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
  color: white;
}

.weekly-trip {
  background: linear-gradient(135deg, #DC143C 0%, #FF6347 100%);
  color: white;
}

.whats-new {
  background: linear-gradient(135deg, #B22222 0%, #FF4500 100%);
  color: white;
}

.deal-badge {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.9;
}

.deal-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}

.deal-validity {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.deal-book-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.deal-book-btn:hover {
  background: white;
  color: #DC143C;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #DC143C;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: #DC143C;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating .star {
  color: #FFA500;
  font-size: 1.1rem;
  margin-right: 2px;
}

.testimonial-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #ff6b35;
  width: 30px;
  border-radius: 5px;
}

/* ===================================
   READY TO GO CTA SECTION
   =================================== */

.ready-to-go-section {
  padding: 60px 20px;
  background: white;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px 0;
  font-family: 'Oswald', sans-serif;
}

.cta-text h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.contact-us-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  padding: 18px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-us-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   =================================== */

@media (max-width: 968px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .deals-carousel {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 2rem;
  }
  
  .cta-text h3 {
    font-size: 1.4rem;
  }
  
  .deals-slider {
    gap: 15px;
  }
  
  .deal-card {
    min-width: 250px;
    flex: 0 0 250px;
  }
}

@media (max-width: 480px) {
  .section-heading,
  .section-heading-white {
    font-size: 1.5rem;
  }
  
  .discover-content h3 {
    font-size: 1.4rem;
  }
  
  .deals-carousel {
    padding: 0 40px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}

/* ===================================
   RECRUITMENT / JOB PLACEMENT PAGE
   =================================== */

/* Hero Section */
.recruitment-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/Airport.jpg') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 16px 40px;
  margin-top: 0;
}

@media (min-width: 480px) {
  .recruitment-hero {
    min-height: 450px;
    padding: 140px 24px 50px;
  }
}

@media (min-width: 768px) {
  .recruitment-hero {
    min-height: 500px;
    padding: 160px 32px 60px;
  }
}

@media (min-width: 1024px) {
  .recruitment-hero {
    padding: 180px 48px 80px;
  }
}

.recruitment-hero .hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-breadcrumb {
  font-size: 0.9rem;
  color: #FE9900;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}

.recruitment-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  font-family: 'Oswald', sans-serif;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

/* About Section */
.recruitment-about-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.section-subtitle {
  font-size: 1rem;
  color: #FE9900;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-main-title {
  font-size: 2.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* Professional Jobs Section */
.professional-jobs-section {
  padding: 80px 20px;
  background: white;
}

.professional-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.professional-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.professional-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.professional-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

/* Documents & Countries Section */
.documents-countries-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.docs-countries-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.column-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
}

.title-accent {
  color: #FE9900;
}

.documents-list,
.countries-list {
  list-style: none;
  padding: 0;
}

.documents-list li,
.countries-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.documents-list li:before,
.countries-list li:before {
  content: '';
  color: #FE9900;
  font-size: 1.2rem;
  margin-right: 10px;
}

.diploma-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diploma-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transform: rotate(-5deg);
}

/* Available Jobs Section */
.available-jobs-section {
  padding: 80px 20px;
  background: white;
}

.jobs-section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.jobs-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.job-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 400px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-header {
  background: linear-gradient(135deg, #333, #555);
  color: white;
  padding: 20px 25px;
  grid-column: 1 / -1;
}

.job-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
}

.job-category {
  font-size: 0.85rem;
  color: #FE9900;
  font-weight: 600;
  letter-spacing: 1px;
}

.job-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.job-details h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.job-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.job-details ul li {
  font-size: 0.85rem;
  color: #555;
  padding: 5px 0;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.job-details ul li:before {
  content: '';
  color: #FE9900;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.job-benefits {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: auto;
  margin-bottom: 15px;
}

.job-benefits h4 {
  color: #FE9900;
  margin-bottom: 10px;
}

.job-benefits ul {
  margin-bottom: 10px;
}

.job-salary {
  font-size: 1.1rem;
  color: #333;
  font-weight: 700;
  margin-top: 8px;
}

.apply-btn {
  background: linear-gradient(135deg, #FE9900, #ffed4e);
  color: #000;
  padding: 12px 25px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  margin-top: auto;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #FE9900);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.job-image {
  background: #f0f0f0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  min-height: 500px;
  overflow: hidden;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* CTA Section */
.recruitment-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a1931, #1a3a5f);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.cta-subtitle {
    font-size: 2rem;
    color: #d4edda; /* Light mint green to match your original title color */
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-contact-btn {
    display: inline-block;
    background: #FE9900; /* Orange to stand out against navy */
    color: #0a1931; /* Dark navy text on orange button */
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.cta-contact-btn:hover {
    background: #ffed4e; /* Yellow on hover */
    color: #0a1931;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 153, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .professional-content {
    grid-template-columns: 1fr;
  }
  
  .docs-countries-grid {
    grid-template-columns: 1fr;
  }
  
  .job-card {
    grid-template-columns: 1fr;
  }
  
  .job-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .recruitment-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .section-main-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.5rem;
  }
}


/* Why Choose Jetwide Section */
.why-choose-section {
  padding: 80px 20px;
  background: white;
}

.why-choose-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border-left: 4px solid #ff6b35;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left-color: #FE9900;
}

.why-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.why-item p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}


/* Job Info Grid for Professional & Domestic Jobs */
.jobs-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.job-type-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-type-title {
  font-size: 1.8rem;
  color: #ff6b35;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.job-type-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-requirements-list,
.job-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.job-requirements-list li,
.job-benefits-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.job-requirements-list li:before,
.job-benefits-list li:before {
  content: '';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.job-roles {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}


/* CTA Buttons for New Design */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.cta-apply-btn {
  display: inline-block;
  background: #333;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.cta-apply-btn:hover {
  background: #ff6b35;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .jobs-info-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-apply-btn,
  .cta-contact-btn {
    width: 100%;
    max-width: 300px;
  }
}


/* ===================================
   PACKAGE DETAIL PAGES
   =================================== */

/* Package Detail Hero */
.package-detail-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #454545 100%);
  padding: 140px 20px 60px 20px;
  margin-top: 0;
}

.package-detail-header {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs {
  color: #FE9900;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.breadcrumbs a {
  color: #FE9900;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: #ffed4e;
}

.package-breadcrumb {
  color: #FE9900;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.package-breadcrumb a {
  color: #FE9900;
  text-decoration: none;
}

.package-breadcrumb a:hover {
  text-decoration: underline;
}

.package-detail-hero h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}

.package-detail-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}

.package-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-item strong {
  color: #999;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.meta-item span {
  color: white;
  font-size: 1rem;
}

.package-price {
  color: #FE9900 !important;
  font-size: 1.3rem !important;
  font-weight: 700;
}

.rating {
  color: #ffd700;
}

.tour-type {
  background: #ff6b35;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem !important;
  display: inline-block;
}

/* Gallery Section */
.package-gallery {
  margin-bottom: 30px;
}

.gallery-main {
  max-width: 100%;
  margin: 0;
}

.main-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 15px;
}

.main-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #ff6b35;
  transform: scale(1.05);
}

.see-more-btn {
  background: #333;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.see-more-btn:hover {
  background: #ff6b35;
}

/* Package Content Layout */
.package-content-section {
  padding: 60px 20px;
}

.package-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.package-main-content {
  background: white;
}

/* Tabs */
.package-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  bottom: -2px;
}

.tab-btn:hover {
  color: #ff6b35;
}

.tab-btn.active {
  color: #ff6b35;
  border-bottom-color: #ff6b35;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}

.tab-content h3 {
  color: #ff6b35;
  font-size: 1.4rem;
  margin: 30px 0 15px;
  font-family: 'Oswald', sans-serif;
}

.tab-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.tab-content ul {
  margin: 15px 0 15px 20px;
}

.tab-content ul li {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

.view-more-btn {
  background: none;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: #ff6b35;
  color: white;
}

.hidden-content {
  display: none;
  margin-top: 20px;
}

/* Overview Details Section */
.overview-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 25px 0;
  padding: 0;
}

.overview-details .detail-item {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #FE9900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-details .detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.overview-details .detail-item strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.overview-details .detail-item strong::before {
  margin-right: 8px;
}

@media (min-width: 768px) {
  .overview-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .overview-details .detail-item strong {
    font-size: 1.1rem;
  }
}

/* Hotels List */
.hotels-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hotel-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
}

.hotel-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.hotel-rating {
  color: #ffd700;
  margin-bottom: 10px;
}

.hotel-card p {
  color: #666;
  margin-bottom: 15px;
}

.hotel-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-card ul li {
  color: #555;
  padding-left: 20px;
  position: relative;
}

.hotel-card ul li:before {
  content: '';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Itinerary */
.itinerary-day {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #FE9900;
}

.itinerary-day h3 {
  color: #333 !important;
  font-size: 1.3rem;
  margin-bottom: 15px !important;
}

.itinerary-day p {
  color: #666;
  margin-bottom: 15px;
}

.itinerary-day ul {
  margin: 15px 0;
  padding-left: 20px;
}

.itinerary-day ul li {
  color: #555;
  margin-bottom: 8px;
}

/* Flight Options */
.flight-options h3 {
  color: #333 !important;
  margin-bottom: 20px !important;
}

.flight-options ul {
  background: #f9f9f9;
  padding: 20px 20px 20px 40px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.flight-note {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.flight-note p {
  color: #856404;
  margin-bottom: 10px;
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.booking-form-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.booking-form-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.booking-form-card h3 {
  color: #1a365d;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid #FE9900;
  padding-bottom: 15px;
}

.booking-title {
  color: #1a365d;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.package-booking-form,
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.form-group input[type="date"],
.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-row input[type="date"],
.form-row select,
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #1a365d;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea,
.form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Open Sans', sans-serif;
}

.submit-booking-btn,
.submit-btn,
button[type="submit"] {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.submit-booking-btn:hover,
.submit-btn:hover,
button[type="submit"]:hover {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 54, 93, 0.4);
}

.submit-booking-btn:active,
.submit-btn:active,
button[type="submit"]:active {
  transform: translateY(0);
}

.submit-booking-btn:disabled,
.submit-btn:disabled,
button[type="submit"]:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
    gap: 15px;
  }
  
  .form-row .form-group {
    flex: 1;
  }
  
  .form-row:has(textarea) {
    flex-direction: column;
  }
}

/* Sidebar Ad */
.sidebar-ad {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.sidebar-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-btn {
  background: white;
  color: #333;
  padding: 10px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.ad-btn:hover {
  background: #ff6b35;
  color: white;
  transform: scale(1.05);
}

/* Similar Tours Section */
.similar-tours-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.similar-tours-section .section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b35;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tour-content {
  padding: 25px;
}

.tour-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

.tour-price {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tour-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tour-link {
  color: #FE9900;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.tour-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.package-link {
  color: #FE9900;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: linear-gradient(135deg, #FE9900 0%, #FE9900 100%);
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.package-link:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.package-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.package-card-link:hover .package-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .package-layout {
    grid-template-columns: 1fr;
  }
  
  .booking-form-card {
    position: static;
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .package-detail-title {
    font-size: 2rem;
  }
  
  .package-meta {
    gap: 20px;
  }
  
  .gallery-main {
    grid-template-columns: 1fr;
  }
  
  .main-image-wrapper {
    height: 300px;
  }
  
  .gallery-thumbnails {
    flex-direction: row;
    overflow-x: auto;
  }
  
  .thumbnail {
    min-width: 100px;
    height: 70px;
  }
  
  .package-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-btn {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .tab-content h2 {
    font-size: 1.6rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .hotel-card ul {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   FEATURED SERVICES STRIP
   =================================== */
.featured-services-strip {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
  padding: 60px 20px;
  margin: 0;
  position: relative;
}

.featured-services-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FE9900 0%, #f4d03f 50%, #FE9900 100%);
}

.services-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.quick-link-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  border-color: #FE9900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: white;
}

.quick-link-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  background: linear-gradient(135deg, #FE9900 0%, #f4d03f 100%);
  transform: rotate(360deg);
}

.quick-link-icon svg {
  width: 40px;
  height: 40px;
}

.quick-link-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #8B0000;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.quick-link-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .quick-link-card {
    padding: 25px 15px;
  }
  
  .quick-link-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .quick-link-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .quick-link-title {
    font-size: 0.9rem;
  }
  
  .quick-link-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .services-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-services-strip {
    padding: 40px 15px;
  }
}

/* ===================================
   INTERNATIONAL DESTINATIONS CAROUSEL
   =================================== */
.international-category {
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #FE9900 0%, #c9a961 100%);
  border-radius: 8px;
}

.international-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}

.international-subtitle {
  text-align: center;
  color: #000;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.international-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.international-cards-container {
  overflow: hidden;
  position: relative;
}

.international-cards-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.international-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.international-card:hover {
  transform: scale(1.05);
}

.international-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.international-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.international-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  padding: 20px;
  color: white;
}

.international-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  font-family: 'Oswald', sans-serif;
}

.international-card-meta {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
}

.international-duration,
.international-people {
  display: flex;
  align-items: center;
  gap: 5px;
}

.international-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.international-nav-btn:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.international-nav-btn.prev-btn {
  left: 10px;
}

.international-nav-btn.next-btn {
  right: 10px;
}

@media (max-width: 1024px) {
  .international-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .international-section-title {
    font-size: 2rem;
  }
  
  .international-carousel {
    padding: 0 50px;
  }
  
  .international-card {
    flex: 0 0 100%;
    min-width: 250px;
  }
  
  .international-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .package-detail-title {
    font-size: 1.6rem;
  }
  
  .tab-content h2 {
    font-size: 1.4rem;
  }
  
  .tab-content h3 {
    font-size: 1.2rem;
  }
}

/* ========================================
   BLOG POST PAGE STYLES
   ======================================== */

.blog-post-hero {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%),
              url('../assets/images/Hero-Section/hero-section-images (1).jpg') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 20px 60px;
  margin-top: 0;
}

.blog-post-hero-overlay {
  width: 100%;
}

.blog-post-breadcrumb {
  color: white;
  margin-bottom: 20px;
  font-size: 14px;
}

.blog-post-breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.blog-post-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.blog-post-hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
}

.blog-post-meta {
  display: flex;
  gap: 20px;
  color: white;
  flex-wrap: wrap;
}

.blog-post-meta span {
  opacity: 0.9;
}

.blog-post-article {
  background: white;
  padding: 60px 0;
}

.blog-post-container {
  max-width: 900px;
}

.blog-post-featured-image {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.blog-post-content h2 {
  font-size: 2rem;
  color: #14132A;
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  color: #14132A;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content blockquote {
  border-left: 4px solid #FE9900;
  padding-left: 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 20px 0 20px 30px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.blog-post-share h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.related-posts h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #14132A;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post-card h3 {
  font-size: 1.1rem;
  padding: 20px;
  margin: 0;
  color: #333;
}

.related-post-link {
  display: block;
  padding: 0 20px 20px;
  color: #FE9900;
  text-decoration: none;
  font-weight: 600;
}

.related-post-link:hover {
  color: #14132A;
}

@media (max-width: 768px) {
  .blog-post-hero {
    padding: 120px 20px 40px;
    min-height: 350px;
  }

  .blog-post-hero-title {
    font-size: 2rem;
  }

  .blog-post-content {
    font-size: 16px;
  }

  .blog-post-content h2 {
    font-size: 1.5rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    justify-content: center;
  }
}

/* Blog Post Layout with Sidebar */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  margin-bottom: 60px;
}

.blog-post-main {
  min-width: 0;
}

.post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666;
}

.post-category {
  background: #FE9900;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}

.post-author-meta {
  color: #666;
}

/* Sidebar Styles */
.blog-post-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-widget {
  background: #f8f9fa;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.3rem;
  color: #14132A;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 3px solid #FE9900;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  gap: 5px;
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: #14132A;
}

.search-btn {
  background: #14132A;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #145166;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #FE9900;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.recent-post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recent-post-info a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

.recent-post-info a:hover {
  color: #FE9900;
}

.recent-post-date {
  font-size: 12px;
  color: #999;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: white;
  color: #14132A;
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #14132A;
  color: white;
  border-color: #14132A;
}

.sidebar-cta {
  background: linear-gradient(135deg, #14132A 0%, #FE9900 100%);
  color: white;
}

.sidebar-cta .widget-title {
  color: white;
  border-bottom-color: white;
}

.sidebar-cta p {
  color: white;
  opacity: 0.95;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-btn-sidebar {
  display: block;
  width: 100%;
  text-align: center;
  background: white;
  color: #14132A;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.cta-btn-sidebar:hover {
  transform: translateY(-2px);
}

/* Responsive Sidebar */
@media (max-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-post-sidebar {
    position: static;
  }

  .post-meta-bar {
    font-size: 13px;
  }
}
