/*
Theme Name: London Country Tours
Theme URI: https://iplabon.in/
Author: Satyajit
Author URI: https://iplabon.in
Description: A professional, responsive WordPress theme for London Country Tours.
Version: 1.0.0
Text Domain: london-country-tours
*/

:root {
  --primary-color: #003a6c;
  --accent-color: #df202f;
  --accent-color-dark: #c51c29;
  --text-color: #7A7A7A;
  --heading-color: #376287;
  --bg-color: #ffffff;
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --container-max-width: 1140px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #f7f7f7;
  position: relative;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}


.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

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

.col {
  padding: 0 15px;
  flex: 1;
  min-width: 0;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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


.booking-form-fixed {
  height: 45px;
  padding: 0 30px;
  width: 175px;
  border-radius: 0;
  background: linear-gradient(to bottom, var(--accent-color) 1%, var(--accent-color-dark) 100%);
  color: white;
  position: fixed;
  right: 0;
  top: 50%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(90deg) translateX(50%);
  transform-origin: right 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  z-index: 9999999;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .booking-form-fixed {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100% !important;
    height: 50px;
    transform: none;
    transform-origin: center;
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
  }
}

.booking-form-fixed:hover {
  background: linear-gradient(to bottom, var(--accent-color-dark) 1%, var(--accent-color) 100%);
}


.h-100 {
  height: 100%;
}


header.header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  position: relative; 
}

.header-bg-right {
  display: none; 
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.col-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.col-menu-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  flex: 1;
}

.logo img.main-logo {
  max-height: 80px; 
  transition: all 0.3s;
}


.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
  display: flex;
  list-style: none;
  height: 100%;
  align-items: center;
  margin-right: 40px; 
}

.main-menu li {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative; 
}

.main-menu li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  padding: 0 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px; 
  position: relative;
  letter-spacing: 0.5px;
}

.main-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-menu li a:hover {
  color: var(--accent-color);
}

.main-menu li a:hover::after {
  transform: scaleX(1);
}


.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #002a4e; 
  min-width: 550px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  margin-top: -2px; 
}

.main-menu li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mega-menu {
    position: static;
    min-width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background-color: #f9f9f9;
  }
  
  .main-menu li.open .mega-menu {
    display: block;
  }
  
  .mega-menu-inner {
    flex-direction: column;
    gap: 0;
  }
  
  .mega-column a {
    color: var(--primary-color) !important;
    padding: 12px 40px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  }
}

.mega-menu-inner {
  display: flex;
  gap: 40px;
}

.mega-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mega-column a {
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  text-align: left !important;
  width: 100% !important;
}

.mega-column a::after {
  display: none !important; 
}

.mega-column a:hover {
  color: var(--accent-color) !important;
  padding-left: 8px !important;
  background: rgba(255,255,255,0.05);
}

.mega-column a:last-child {
  border-bottom: none !important;
}


.header-contact {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 40px;
  color: #fff;
  min-width: 250px; 
}

.header-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background-color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
  z-index: 1;
}

.phone-icon-wrap {
  position: absolute;
  left: -24px; 
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  z-index: 2;
}

.phone-icon-wrap i {
  
  transform: rotate(15deg);
}

.phone-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.phone-text h6,
.phone-text .phone-number {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.phone-text h6 a {
  color: #fff;
  text-decoration: none;
}
.phone-text p,
.phone-text .phone-sub {
  margin: 0;
  font-size: 12px;
  color: #e0e0e0;
  margin-top: 2px;
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 465px;
  overflow: hidden;
  background: #000;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.slide-text {
  font-size: 26px;
  line-height: 31px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1.0);
  white-space: nowrap;
  font-family: var(--font-primary);
}

.slider-badge {
  position: absolute;
  top: 152px;
  right: 150px; 
  z-index: 10;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 5;
}

.slider-arrow {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}


.welcome-section {
  padding: 80px 0;
}

.welcome-content {
  flex: 0 0 calc(58.333% - 30px);
  max-width: calc(58.333% - 30px);
}

.welcome-image {
    flex: 0 0 calc(41.666% - 30px);
    max-width: calc(41.666% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-image h3 {
    color: #003a6c;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 20px;
}

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

.rotating-image {
  animation: spin 30s linear infinite;
  display: block;
}

.welcome-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.welcome-content h3 {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 15px;
}

.welcome-content p {
  margin-bottom: 20px;
}

.welcome-content ul {
  margin-bottom: 30px;
}

.welcome-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.welcome-content ul li i {
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 5px;
}

.award-logos {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.award-logos img {
  width: 103px;
  height: 83px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 5px;
}

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

.title-small {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text-color);
  letter-spacing: 2px;
}

.title-large {
  font-size: 75px;
  margin: 5px 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

/* Animated Text Carousel Styles */
.text-carousel-wrapper {
  position: relative;
  display: block;
  text-align: center;
  margin: 10px 0 20px;
  width: 100%;
}

.animated-text {
  background-size: 200% auto;
  background-position: 0 center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  white-space: nowrap;
  animation: slideImage 15s linear infinite;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  /* Default background image */
  background-image: url('images/stonehenge-1.jpg');
}

.text-underline {
  height: 4px;
  background-color: var(--accent-color);
  width: 80%;
  margin: -5px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(223, 32, 47, 0.3);
}

@keyframes slideImage {
  0% { background-position: 0 center; }
  100% { background-position: 200% center; }
}

.animated-text.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.animated-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .title-large {
    font-size: 50px;
  }
}

.btn-dark {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-dark:hover {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.contact-cta-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}


.guided-tours-section {
  padding: 0 0 50px;
}

.section-header-blue {
  background-color: var(--primary-color);
  padding: 20px 0;
  margin-bottom: 50px;
}

.section-header-blue h3 {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.tour-intro-text p {
  text-align: center;
  margin-bottom: 15px;
}

.tour-intro-text h2, .tour-intro-text h3 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.tour-intro-text a {
  color: var(--primary-color);
  font-weight: bold;
}

.margin-top-50 {
  margin-top: 50px;
}

.tours-grid {
  margin-top: 40px;
}

.item-border {
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-border:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.post-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-images {
  overflow: hidden;
}

.item-border:hover .post-images img {
  transform: scale(1.05);
}

.wrapper-content {
  padding: 20px;
  flex-grow: 1;
}

.post-title h3 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.post-title h3 a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
}

.post-title h3 a:hover {
  color: var(--primary-color);
}

.post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #e74c3c;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
}

.post-date i {
  font-size: 16px;
}

.widget-content {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.6;
  margin-bottom: 30px;
}

.read-more {
  background-color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}

.btn-tour {
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 30px 14px 45px;
  font-weight: 800;
  text-transform: uppercase;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.btn-tour:hover {
  background-color: var(--accent-color);
  color: #fff;
}


.features-section {
  padding: 50px 0;
}

.top-border-section {
  border-top: 1px solid #eee;
  padding-top: 60px;
}

.section-center-title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.section-center-title:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.section-center-title span {
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.feature-intro p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.feature-item h4 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}



.feature-icon img {
  width: 60px;
  height: auto;
}


.counters-section {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.counter-box {
  padding: 20px;
  position: relative;
}

.counter-icon {
  font-size: 50px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.counter-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0;
}


.page-hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 58, 108, 0.4); 
}

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

.page-hero-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.breadcrumb {
  font-size: 14px;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  opacity: 0.8;
}

.breadcrumb span {
  margin: 0 5px;
}


.page-section {
  padding: 80px 0;
  background: #fff;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrap p {
  max-width: 800px;
  margin: 15px auto 0;
}


.contact-info-list {
  padding-right: 30px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  margin-bottom: 5px;
  font-size: 16px;
  text-transform: uppercase;
}

.contact-form-wrap {
  background: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  margin-top: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.checkbox-item input {
  width: 16px;
  height: 16px;
}

.btn-send {
  background-color: #f16e22; 
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
}


.page-hero {
  height: 350px; 
}

.page-hero-content h1 {
  font-weight: 400;
  letter-spacing: 1px;
}


.sidebar {
  padding-left: 20px;
}

.sidebar-widget {
  margin-bottom: 30px;
}

.cta-box {
  padding: 30px 20px;
  border-radius: 4px;
}

.cta-box h3 {
  font-size: 18px;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}


.weather-widget {
  background-color: #002a4e;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  font-family: var(--font-secondary);
}

.weather-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.weather-temp {
  font-size: 42px;
  font-weight: 700;
}

.weather-day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

.weather-day-item {
  text-align: center;
  font-size: 11px;
}

.weather-day-item i {
  font-size: 18px;
  display: block;
  margin: 5px 0;
}


.proud-members-box {
  background-color: #002a4e;
  color: #fff;
  padding: 50px;
  border-radius: 4px;
  margin-bottom: 60px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.proud-members-img {
  flex: 0 0 300px;
}

.proud-members-img img {
  border-radius: 4px;
  width: 100%;
}

.proud-members-content {
  flex: 1;
}

.proud-members-content h3 {
  color: #fff;
  margin-bottom: 20px;
}

.feature-box-item {
  background-color: #f7f9fb;
  border: 1px solid #f0f3f6;
}

.feature-box-item h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #376287;
}

.plan-tour-cta {
  border: 1px solid #e1e1e1;
  background-color: #f7f9fb;
  margin: 60px 0;
}

.plan-tour-text h2 {
  font-size: 36px;
  color: #376287;
}

.bottom-about-blue {
  padding: 100px 0;
}

.bottom-about-blue h2 {
  font-size: 42px;
}

.cant-find-section {
  padding: 60px 0;
  background: #fff;
}

.cant-find-section p:first-child {
  font-size: 22px;
  color: #376287;
  font-weight: 600;
  margin-bottom: 15px;
}


.advice-content a {
  color: #007bff;
  text-decoration: underline;
}


.tour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.tour-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tour-card-img {
  height: 200px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: crop;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.1);
}

.tour-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.tour-duration {
  color: #df202f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.tour-card-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-view-tour {
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 30px 14px 45px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
  transition: background-color 0.3s ease;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.btn-view-tour:hover {
  background-color: var(--accent-color);
  transform: none;
}

/* Removed legacy before pseudo-element as we use clip-path now */


.faq-section {
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #333;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #eee;
  margin-bottom: 10px;
  border-radius: 4px;
}

.faq-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.3s;
}

.faq-header:hover {
  background: #fcfcfc;
}

.faq-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #376287;
}

.faq-icon {
  font-size: 18px;
  color: #376287;
}

.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-content {
  padding: 15px 20px 20px;
  max-height: 1000px;
  border-top: 1px solid #eee;
}

.faq-content p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}


.reviews-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.reviews-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-align: center;
}

.review-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.review-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
}

.review-quote::before {
  content: '\201C';
  font-size: 60px;
  color: #eee;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-family: serif;
}

.review-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.review-author cite {
  font-style: normal;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.review-author cite span {
  font-weight: normal;
  color: #999;
  font-size: 14px;
}

.review-controls {
  margin-top: 30px;
}

.review-dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.review-dot.active {
  background-color: var(--primary-color);
}


.blog-section {
  padding-bottom: 80px;
}

.blog-entry {
  border: 1px solid #eee;
  background: #fff;
  transition: transform 0.3s;
  height: 100%;
}

.blog-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.entry-thumb img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.entry-details {
  padding: 20px 0 0 0;
}

.entry-title h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.entry-title h4 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 700;
}

.entry-title h4 a:hover {
  color: var(--primary-color);
}

.blog-entry.borderless {
  border: none;
  background: transparent;
}

.entry-meta {
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 10px;
}

.entry-excerpt {
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 15px;
}


#footer {
  background-color: var(--primary-color);
  color: #ccc;
  font-size: 14px;
}

.footer-widgets {
  padding: 60px 0;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.textwidget p {
  margin-bottom: 15px;
}

.widget ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget ul li a {
  color: #ccc;
  transition: color 0.3s;
}

.widget ul li a:hover {
  color: #fff;
}

.dt-contact-info p {
  margin-bottom: 15px;
}

.dt-contact-info i {
  margin-right: 10px;
  color: #fff;
}

.dt-contact-info a {
  color: #ccc;
}

.dt-contact-info a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social li {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff !important;
}

.footer-social li a:hover {
  background-color: var(--accent-color);
}

.footer-copyright {
  background-color: #00284d; 
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright p {
  margin: 0;
}

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


.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary-color);
}

/* Proud Members Box */
.proud-members-box {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.proud-members-img {
  flex: 0 0 40%;
}

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

.proud-members-content {
  flex: 0 0 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proud-members-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Bottom About Blue */
.bottom-about-blue {
  background-color: #002a4e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.bottom-about-blue h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 30px;
}

.bottom-about-blue p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: #e0e0e0;
}

.btn-outline-white {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 40px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: #fff;
  color: #002a4e;
}

/* Membership Section Redesign */
.membership-section {
  margin: 80px 0;
}

.membership-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.membership-card {
  flex: 1;
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--primary-color);
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-bottom-color: var(--accent-color);
}

.membership-icon {
  font-size: 32px;
  color: var(--accent-color);
  background: rgba(223, 32, 47, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.membership-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.membership-info p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.redesigned-box {
  background: #fcfcfc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}

.badge-label {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.proud-members-content {
  flex: 1;
  padding: 50px !important;
}

.proud-members-content h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
}

.proud-members-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
  font-weight: 600;
}

.benefit-list li i {
  color: #28a745;
  font-size: 18px;
}

@media (max-width: 768px) {
  .membership-grid {
    flex-direction: column;
  }
  
  .membership-card {
    padding: 20px;
  }

  .redesigned-box {
    display: block !important;
  }

  .redesigned-box .proud-members-content {
    padding: 30px 20px !important;
  }
  
  .redesigned-box h3 {
    font-size: 24px !important;
  }
}


@media (max-width: 991px) {
  .main-menu {
    margin-right: 0;
  }
  .header-contact::before {
    width: 0;
  }
  .header-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .col-menu-contact {
    justify-content: flex-end;
  }
  .main-nav {
    position: static; 
  }
  .main-menu {
    display: block;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 100000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
    border-top: 2px solid var(--accent-color);
  }

  .main-menu.active {
    max-height: calc(100vh - 90px);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
  }

  
  .welcome-section {
    padding: 40px 0 60px;
    text-align: center;
  }
  
  .welcome-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .welcome-content h1 {
    text-align: center;
    font-size: 26px;
  }
  
  .welcome-content ul li {
    text-align: left;
    display: inline-block;
    width: 100%;
  }

  .award-logos {
    justify-content: center;
    gap: 10px;
  }

  .award-logos img {
    width: 90px;
    height: 70px;
  }

  .btn.large-margin {
    margin: 20px auto 40px !important;
    display: table;
  }

  .welcome-image {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 40px;
  }

  .main-menu li {
    width: 100%;
    display: block;
    height: auto;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .main-menu li:last-child {
    border-bottom: none;
  }

  .main-menu li a {
    padding: 15px 25px;
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--primary-color);
  }

  .main-menu li a::after {
    display: none; 
  }

  .main-menu li a:hover,
  .main-menu li a:active {
    background-color: #f9f9f9;
    padding-left: 30px;
    color: var(--accent-color);
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 4px;
    margin-right: 15px;
    transition: all 0.3s;
    color: var(--primary-color);
    font-size: 26px;
  }

  .menu-toggle:hover {
    background: rgba(0,0,0,0.05);
  }

  .menu-toggle:active {
    background: #eee;
  }

  .header-contact {
    display: none;
  }

  .col-md-3, .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-copyright {
    text-align: center;
  }
  .footer-copyright .text-right {
    text-align: center;
    margin-top: 10px;
  }
  .text-right {
    text-align: center;
  }
  
  .welcome-content h1 {
    font-size: 24px;
  }
  
  .title-large {
    font-size: 40px;
  }

  .slider-badge {
    display: none; 
  }

  .award-logos {
    justify-content: center;
  }
  
  .slide-content {
    left: 20px;
    right: 20px;
    text-align: center;
    align-items: center;
  }

  .reviews-carousel {
    height: auto;
    min-height: 250px;
  }
}
.contact-float-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.contact-float-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-float-icons a img {
  width: 28px !important;
}

.contact-float-icons a:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-email {
  background-color: #0066cc;
}

.float-whatsapp {
  background-color: #25d366;
}

@media (max-width: 768px) {
  .contact-float-icons {
    bottom: 70px !important; /* Above the booking bar */
    right: 15px;
    gap: 10px;
  }
  .contact-float-icons a {
    width: 45px;
    height: 45px;
    font-size: 24px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .contact-float-icons a img {
    width: 22px !important;
    height: auto !important;
    margin: 0 !important;
  }
}


.different-section {
    padding: 0;
    background: #fff;
    margin-top: 60px;
}

.different-header {
    background-color: #004a8e;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.different-header h2 {
    color: #fff;
    font-size: 32px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.different-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #004a8e;
}

.different-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 15px;
}

.different-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-radius: 6px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 36px;
    color: #00adef;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.feature-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 0;
}


.stats-section {
    background: linear-gradient(rgba(0, 58, 108, 0.9), rgba(0, 58, 108, 0.9)), url('images/photo-1526778548025-fa2f459cd5c1.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.stats-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-curve {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.stat-item {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-icon-box img {
    width: 100%;
    height: auto;
    max-height: 60px;
    filter: invert(1) brightness(100); /* Invert black icons to white */
}

.stat-item:hover .stat-icon-box {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-curve {
        display: none;
    }
    .stats-grid {
        flex-wrap: wrap;
    }
    .stat-item {
        width: 50%;
        flex: none;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        width: 50%;
    }
}

/* Global Mobile Fixes */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    position: relative;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .row {
    display: block !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .col, [class*="col-"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 20px 0 !important;
    margin: 0 !important;
    flex: none !important;
  }

  .about-intro-text h2 {
    font-size: 24px !important;
    text-align: center;
    margin-top: 10px;
  }
  
  .about-intro-text p {
    text-align: center;
    font-size: 14px;
    padding: 0 5px;
  }
  
  .about-intro-images {
    display: block !important;
    width: 100% !important;
  }
  
  .about-intro-images img {
    border-radius: 8px;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
  }

  .tour-grid {
    display: block !important;
    width: 100% !important;
  }

  .tour-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 30px 0 !important;
    display: block !important;
    flex: none !important;
  }
  
  .tour-card-img img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  .plan-tour-cta {
    display: block !important;
    padding: 30px 20px !important;
    text-align: center !important;
  }
  
  .plan-tour-text {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 20px;
  }

  .btn-dark {
    display: inline-block !important;
    width: auto !important;
    min-width: 200px;
  }
  
  .page-hero-content h1 {
    font-size: 28px !important;
    text-align: center;
    width: 100%;
  }

  header.header {
    height: 70px !important;
    width: 100% !important;
  }
  
  .header-inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
  }

  .col-logo {
    width: auto !important;
    flex: none !important;
  }

  .logo img.main-logo {
    max-height: 50px !important;
    width: auto !important;
  }
  
  .col-menu-contact {
    width: auto !important;
    flex: none !important;
  }

  .main-nav {
    position: static !important;
  }

  .main-menu {
    position: absolute !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: #fff !important;
    z-index: 1000 !important;
    display: none !important; /* Hidden by default */
    flex-direction: column !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease-in-out !important;
    max-height: 0;
    overflow: hidden;
  }
  
  .main-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    max-height: 100vh;
    overflow-y: auto;
  }

  .menu-overlay {
    display: none !important; /* Remove overlay for dropdown style */
  }

  .main-menu li {
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-menu li a {
    display: block !important;
    padding: 15px 0 !important;
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  .has-dropdown > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .has-dropdown > a i {
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
  }

  .has-dropdown.open > a i {
    transform: rotate(180deg) !important;
  }

  .mega-menu {
    display: none;
    background: #f9f9f9 !important;
    padding: 0 15px !important;
    width: 100% !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease !important;
  }

  .has-dropdown.open .mega-menu {
    display: block !important;
    max-height: 1000px !important;
    padding: 10px 15px !important;
  }

  .mega-menu-inner {
    display: block !important;
  }

  .mega-column {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .mega-column a {
    padding: 10px 0 !important;
    border-bottom: 1px solid #ddd !important;
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 500 !important;
  }

  .mega-column a:last-child {
    border-bottom: none !important;
  }

  .header-contact {
    display: none !important;
  }
  
  .header-contact::before {
    display: none !important;
  }

  .stat-item {
    width: 100% !important;
    padding: 15px 0 !important;
  }
  
  .page-hero {
    height: 200px !important;
  }

  /* Proud Members Box Fix */
  .proud-members-box {
    display: block !important;
    padding: 30px 20px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    margin: 40px 0 !important;
    text-align: center !important;
  }

  .proud-members-img {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .proud-members-img img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  .proud-members-content h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }

  /* Bottom About Blue Section Fix */
  .bottom-about-blue {
    padding: 50px 20px !important;
  }

  .bottom-about-blue h2 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
  }

  .bottom-about-blue p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
  }
}

/* =========================================
   Tour Category Page Styles 
   ========================================= */
.page-hero-blue {
    background-color: #4075A6;
    padding: 30px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.page-hero-blue h1 {
    font-size: 32px;
    margin: 0 0 10px;
    font-weight: 300;
}
.page-hero-blue .breadcrumb {
    font-size: 14px;
    color: #e0e0e0;
}
.page-hero-blue .breadcrumb a {
    color: #fff;
}
.page-hero-blue .breadcrumb span {
    margin: 0 5px;
}
.category-page-bg {
    background-color: #f5f5f5;
    padding-bottom: 60px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
.category-card {
    background: #fff;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.category-card .card-img {
    height: 220px;
    overflow: hidden;
}
.category-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.category-card:hover .card-img img {
    transform: scale(1.05);
}
.category-card .card-content {
    padding: 25px 25px 70px;
    flex-grow: 1;
}
.category-card h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-weight: 400;
}
.category-card .card-duration {
    color: #e32636;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.category-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.btn-view-tour-category {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px 12px 45px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-view-tour-category:hover {
    background-color: #002244;
    color: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination span, .pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #555;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.pagination .page-current, .pagination a:hover {
    background: #4075A6;
    color: #fff;
}

/* =========================================
   Tour Booking Page Styles (Image 2)
   ========================================= */
.tour-details-wrapper {
    margin-top: 20px;
    padding-bottom: 60px;
}
.tour-header-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #ff6b00;
}
.tour-header-info i {
    margin-right: 5px;
}
.tour-gallery {
    margin-bottom: 30px;
}
.gallery-main {
    position: relative;
    margin-bottom: 10px;
    height: 400px;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}
.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }
.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.gallery-thumbs img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active {
    opacity: 1;
}
.tour-text h3 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 400;
}
.tour-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.why-different-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.why-different-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}
.text-green { color: #2ecc71; }
.text-red { color: #e74c3c; }
.text-blue { color: #3498db; }
.info-alert {
    background-color: #d1ecf1;
    border-left: 4px solid #e74c3c;
    padding: 20px;
    color: #0c5460;
    font-size: 14px;
    margin: 30px 0;
}
.info-alert p {
    margin: 0;
    color: inherit;
}
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.w-100 { width: 100%; }

/* Sidebar Widget */
.booking-widget-sticky {
    position: sticky;
    top: 20px;
}
.booking-widget {
    border: 1px solid #ddd;
    background: #fff;
}
.widget-price-header {
    background: #e67e22;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
}
.widget-price-body {
    background: #34495e;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.price-amount {
    font-size: 16px;
}
.price-amount strong {
    font-size: 28px;
}
.widget-tabs {
    display: flex;
}
.tab-btn {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.tab-btn.active {
    background: #2c3e50;
    color: #fff;
}
.tab-btn.book-btn {
    background: #e74c3c;
    color: #fff;
}
.tab-btn.book-btn:hover {
    background: #c0392b;
}
.widget-form {
    padding: 25px;
    background: #f9f9f9;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.form-group label i {
    color: #3498db;
}
.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}
.btn-inquire {
    background: #003B73;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn-inquire:hover {
    background: #002244;
}
.btn-proceed {
    background: #003B73;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn-proceed:hover {
    background: #002244;
}
.extras-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}
.action-links {
    display: flex;
    justify-content: space-around;
}
.action-btn {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.action-btn i {
    margin-right: 5px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 24px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  height: 2px;
  width: 40px;
  background-color: var(--primary-color);
}

.divider-icon {
  color: var(--primary-color);
  font-size: 10px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  background-color: #f1f1f1;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.reviewer-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

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

.reviewer-info h3 {
  font-size: 20px;
  color: #376287;
  margin-bottom: 0;
  font-weight: 700;
}

.review-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.reviews-pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
}

.reviews-pagination .dot.active {
  background-color: var(--primary-color);
}

.view-all-reviews {
  text-align: center;
}

.view-all-reviews a {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.view-all-reviews a:hover {
  text-decoration: underline;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviewer-img {
    width: 60px;
    height: 60px;
  }
}

