body {
    font-family: "Nunito", sans-serif;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
    /* scroll-behavior: smooth; */
}
section {
  scroll-margin-top: 76px; /* height of your fixed header */
}
#header{
  transition:  0.3s ease-in-out;
  background: transparent;
}
#header.scrolled{
  transition:  0.3s ease-in-out;
  background: rgba(0,0,0,0.8);
}
#header .navbar-brand .logo{
  width: 100px;
}
#header.scrolled .navbar-brand .logo{
  width: 50px !important;
  transition:  0.3s ease-in-out;
}
.navbar .nav-link {
  position: relative;
  color: #FFF;
  font-weight: 500;
}
.navbar .nav-link:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #EE3F97;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .nav-link:hover {
  color: #f8f9fa !important;
}
.navbar-brand{
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand>p{
  margin: 0;
  font-size: 30px;
  margin-left: 14px;
}
.navbar-brand>p>span{
  color:#EE3F97;
}
/* Hero Section */
/* ensure slides fill viewport */
.carousel-item {
  position: relative;
  height: 100vh;                /* full viewport height */
  background-size: cover;
  background-position: center;
}

/* dark overlay above image */
.carousel-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);  /* change opacity if you want lighter/darker */
  z-index: 1;
}

/* center caption horizontally + vertically, responsive width */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;                   /* above overlay */
  width: 100%;
  padding: 0 20px;
  text-align: center;
  pointer-events: none;         /* avoids accidental clicks on caption background */
}

/* inner container to limit max width of text */
.carousel-caption .caption-inner {
  display: inline-block;
  max-width: 1000px;
  pointer-events: auto;         /* allow clicking buttons inside */
}

/* responsive type scale + readable shadow */
.carousel-caption h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
  font-size: 2.8rem;
  padding-bottom: 100px;
}

.carousel-caption p {
  color: #f8f9fa;
  margin-bottom: 1rem;
  font-size: clamp(14px, 2.2vw, 20px);
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
.carousel-control-next, .carousel-control-prev{
  width: 8%;
}
/* centered CTA — make pointer-events active */
.carousel-caption .btn {
  pointer-events: auto;
  border-radius: 30px;
  padding: .7rem 1.5rem;
  font-weight: 600;
}

/* tweak for small screens if header overlaps a lot */
@media (max-width: 576px) {
  .carousel-caption { padding: 0 12px; transform: translate(-50%, -45%); }
  .carousel-caption h1 { font-size: 22px; }
}

.btn-cta {
  position: absolute;
  /* background:  #1b3bb2; */
  /* background: rgba(27,59,178,0.8); */
  background:   #EE3F97;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.btn-cta:hover {
  background:   #EE3F97;
}
/* Package Section */
#package {
  background-color: #f8f9fa; /* light gray base */
  /* background-image: url('../assets/package-bg.png'); */
  background-repeat: no-repeat;  
  padding: 80px 0;
}

#package h2 {
  color: #333;
  margin-bottom: 50px;
}
.package-card {
  border: none;
  overflow: hidden;
  border-radius: 15px;
      -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
  transition: transform 0.3s;
}
.package-card:hover {
  transform: scale(1.05);
}

.package-card-v1 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    height: 100%;
}

/* .package-card-v1:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
} */

.package-card-v1 .card-img-top {
    overflow: hidden;
    height: 200px;
}

.package-card-v1 .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.package-card-v1:hover .card-img-top img {
    transform: scale(1.05);
}

.package-card-v1 .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.package-card-v1 .card-body .description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.package-card-v1 .card-body h5 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}


.package-card-v2 {
    transition: transform 0.3s ease-in-out;
    height: 100%;
    cursor: pointer;
}

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

.package-card-v2 .card-img-top {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 1rem;
}

.package-card-v2 .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.package-card-v2:hover .card-img-top img {
    transform: scale(1.05);
}

.package-card-v2 .card-body {
    padding: 0;
}

.package-card-v2 .card-body h5 {
    font-size: 1.5rem;
}

.package-card-v2 .card-body .btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.package-card-v2:hover .card-body .btn {
    opacity: 1;
    visibility: visible;
}
.transport-card,
.sight-card {
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
}
.card-img {
  height: 320px;
  object-fit: cover;
}
.card-img-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
}
.package-card .btn-inquiry{
    position: absolute;
    right: 30px;
    bottom: 32px;
}
.btn-inquiry {
  background:  #1b3bb2;
  color: #FFF;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  padding: 8px 40px;
  margin: 0 auto;
}
.btn-inquiry:hover {
  background: #EE3F97;
  color: #fff;
}
/* 
#addon {
  background: #fff;
}

.accordion-button {
  background: #ffb6c1;
  color: #000;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background: #ff8c00;
  color: #fff;
}
.accordion-body ul li {
  padding: 5px 0;
  font-size: 15px;
}

#addon .card img {
  height: 160px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
} */

/* Tabs */
#addon .nav-pills .nav-link {
  border-radius: 30px;
  margin: 0 5px;
  font-weight: 500;
  padding: 8px 18px;
  color: #000;
}
#addon .nav-pills .nav-link.active {
  /* background: linear-gradient(90deg, #ffb6c1, #ff8c00); */
  background: #1b3bb2;
  color: #fff;
}

/* Sightseeing Cards */
.sight-card img {
  height: 290px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.sight-card h5 {
  font-weight: bold;
  color: #000
}

.footer-section {
  background: #1b3bb2;
  font-size: 18px;
}
.footer-section h5{
  font-size: 1.5rem;
}

.footer-section a {
  text-decoration: none;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
}


/* Background */
.inquiry-section {
  position: relative;
  background: url("./../assets/hero-banner.jpg") center/cover no-repeat;
  padding: 40px 0;
  color: #fff;
}
.inquiry-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.inquiry-section .container {
  position: relative;
  z-index: 2;
}

/* Gradient Heading */
.gradient-title { 
  font-size: 2.5rem;
}

/* Glassmorphism Form */
.inquiry-form-wrapper {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Input Group */
.input-group-custom {
  position: relative;
}
.input-group-custom .icon {
  position: absolute;
  left: 15px;
  top: 6px;  
  color: #1b3bb2;
  font-size: 1.1rem;
}
.input-group-custom .form-control,
.input-group-custom .form-select,
.input-group-custom textarea {
  padding-left: 45px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  transition: all 0.3s;
}
.input-group-custom .form-control:focus,
.input-group-custom .form-select:focus,
.input-group-custom textarea:focus {
  box-shadow: 0 0 12px rgba(255, 152, 99, 0.5);
  outline: none;
}

/* Button */
.btn-inquiry {
  background: #1b3bb2;
  color: #fff;
  font-weight: 600;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

/* Banner Section */
.tour-banner {
  position: relative;
  height: 60vh;
  background: url("../assets/package/Pattaya-1.jpg") bottom/cover fixed no-repeat;
  color: #fff;
}
.tour-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}
.tour-banner .banner-content {
  position: relative;
  z-index: 2;
}
.tour-banner h1 {
  font-size: 3.5rem;  
}
.text-gradient{
  color: #1b3bb2;
}
.animate-fade {
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Cards */
.detail-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);  
}
.detail-card p, .detail-card li {
  color: #333;
  font-size: 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-icon {
  position: absolute;
  left: -28px;
  top: 0;
  background: #1b3bb2;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.timeline-content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.timeline-content h5 {
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: #444;
}

/* CTA Button */
.btn-inquiry {
  background: #1b3bb2; /* solid orange */
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}


/* Transport Section */
.transport-img-box img {
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px #0000000A;
}

.transport-text-box {
  background: #fff;
  border-left: 6px solid #1b3bb2; /* orange accent */
}

.transport-text-box ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* Banner */
.sight-banner {
  position: relative;
  height: 60vh; 
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  background-size: cover;
}
.sight-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
}
.sight-banner .banner-content {
  position: relative;
  z-index: 2;
}
.sight-banner h1 {
  font-size: 3rem;  
}
.sight-banner p {
  color: #ffe5b4;
}
.about-hero {
  margin-top: 150px;
}
.founder-img{
  max-width: 200px;
}
@media only screen and (max-width: 768px) {
 .navbar-toggler{
      background: #c9c9c9;
    padding: 5px;
 }
 .carousel-item {
    height: 400px !important;
  }
  #header .navbar-brand .logo {
    width: 50px;
  }
  .carousel-caption .btn{
    font-size: 16px;
    padding: 10px 15px;
    bottom: 50px;
  }
  .package-card .btn-inquiry {
      position: absolute;
      right: 10px;      
      font-size: 16px;
      padding: 8px 15px;
  }
  .card-img-overlay{
    padding-right: 100px;
  }
  .navbar .nav-link:after{
    content: none;
  }
  #header {
    transition: 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.8);
  }
  .about-hero {
    margin-top: 130px;
  }
}

