@font-face {
  font-family: "KactigonaRegular-E4m3j";
  src: url("../fonts/KactigonaRegular-E4m3j.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "RememberSummer-e97ap";
  src: url("../fonts/RememberSummer-e97ap.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --teal: #0d4c77;
  --yellow: #f6c435;
  --white: #ffffff;
  --ff-display: "Oswald", sans-serif;
  --ff-body: "Inter", sans-serif;
  --ff-script: "KactigonaRegular-E4m3j", cursive;
}

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

body {
  font-family: var(--ff-body);
  overflow-x: hidden;
}

.banner-two {
  position: relative;
  width: 100%;
  min-height: 120vh;
  background-image: url("../images/KSPhuketGallery/banner-4.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 1rem 4rem;
  overflow: hidden;
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
  background: rgba(13, 9, 6, 0.95);
  padding: 8px 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1rem, 3vw, 3rem);
  width: 100%;
}

.header-nav-left {
  display: flex;
  justify-content: flex-start;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.header-nav-right {
  display: flex;
  justify-content: flex-end;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
  transition: opacity 0.3s ease;
}

.header-logo:hover img {
  opacity: 0.85;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.5rem);
  list-style: none;
}

.nav-list li {
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c0a66d;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #c0a66d;
}

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

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(192, 166, 109, 0.15);
  color: #c0a66d;
}

.nav-link i {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

/* Pay Now Button */
.pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0a66d;
  color: #fff !important;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 166, 109, 0.3);
  text-decoration: none;
}

.pay-btn:hover {
  background: #a99056;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 166, 109, 0.5);
}

.pay-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.pay-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Mobile Hamburger - Hidden on Desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}

.banner-overlay-center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 100%;
  background: linear-gradient(to right, #00000000 0%, rgb(180 180 180 / 59%) 15%, rgb(255 255 255 / 70%) 50%, rgb(180 180 180 / 24%) 85%, #00000000 100%);
  z-index: 5;
  pointer-events: none;
}

/* Base Background Image */
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.8;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  /* Keeping it full if it's the main composite */
}

/* If banner-2.png is the whole mockup, we might want to overlay our HTML elements precisely */
.banner-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header Typography */
.hero-header {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.nights-eyebrow {
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0px;
}

.dest-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  font-weight: 900;
  margin: 0.2rem 0;
  background: url("../images/KSPhuketGallery/texture-1.jpg") repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  line-height: 1;
}

.plus-nights {
  font-family: var(--ff-body);
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 900;
  margin-top: -5px;
}

.complimentary-text {
  font-family: var(--ff-script);
  font-size: 2.6rem;
  color: var(--teal);
  margin: 0.3rem 0;
}

/* Pricing Patch */
.pricing-patch {
  position: relative;
  margin: 0rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-inner {
  background: url("../images/KSPhuketGallery/stoke-bg.png") no-repeat center;
  background-size: 100%;
  color: #fff;
  padding: 1rem 2rem;
  font-family: var(--ff-body);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0px;
}

.price-val {
  color: var(--yellow);
  font-size: 2rem;
}

.worth-badge {
  background: url("../images/KSPhuketGallery/stoke-yellow.png") no-repeat center center;
  background-size: 100%;
  padding: 1.2rem 2.9rem;
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.2rem);
  color: #000;
  margin-top: -6px;
  width: fit-content;
}

/* Visuals Row */
.visuals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 3rem;
}

.circle-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.group-label {
  background: url("../images/KSPhuketGallery/stoke-bg.png") no-repeat center;
  background-size: 100%;
  color: #fff;
  padding: 8px 30px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0px;
}

.circles-wrap {
  display: flex;
  gap: -15px;
  /* Overlap effect */
}

.circle-item {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 5px solid #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-left: -20px;
  /* transition: transform 0.3s ease; */
}

.circles-wrap .circle-item:first-child {
  margin-left: 0;
}

/* .circle-item:hover {
  transform: translateY(-5px);
  z-index: 10;
} */

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

/* Transfer Divider */
.transfer-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.divider-line {
  width: 1px;
  height: 40px;
  border-left: 2px dashed rgba(0, 77, 77, 0.3);
}

.plane-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Bottom Inclusions */
.inclusions-area {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.inclusions-badge {
  background: url("../images/KSPhuketGallery/stoke-bg.png") no-repeat center;
  background-size: 100%;
  color: #fff;
  padding: 0.8rem 4rem;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  text-transform: uppercase;
}

.inclusions-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 2.5rem 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 5 !important;
  position: relative;
}

.inc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.inc-icon {
  width: 55px;
  height: 55px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.inc-icon i {
  font-size: 1.3rem;
}

.inc-text {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: #333;
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
}

.inc-text b {
  color: var(--teal);
  font-weight: 800;
}

.inc-divider {
  width: 1px;
  height: 70px;
  border-left: 1px dashed rgba(0, 0, 0, 0.3);
}

/* Decor Leaves */
.decor-leaf {
  position: absolute;
  width: 350px;
  height: auto;
  pointer-events: none;
  z-index: 15;
}

.leaf-left {
  bottom: -50px;
  left: -50px;
  transform: rotate(30deg);
}

.leaf-right {
  bottom: -50px;
  right: -50px;
  transform: rotate(-30deg) scaleX(-1);
}

@media (max-width: 992px) {

  .site-header,
  .site-header.scrolled {
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    background: rgba(13, 9, 6, 0.95);
  }

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

  .header-nav-left,
  .header-nav-right {
    display: none !important;
  }

  .hamburger span {
    background: #fff;
    transition: background 0.3s ease;
  }

  .site-header.scrolled .hamburger span {
    background: #fff;
  }

  .hamburger {
    display: flex;
  }

  .banner-two {
    min-height: auto;
    padding-top: 6rem;
    background-image: url("../images/KSPhuketGallery/mobile-3.png");
    background-position: center top;
  }

  .banner-overlay-center {
    background: none;
  }

  .visuals-row {
    flex-direction: column;
    gap: 30px;
  }

  .transfer-divider {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .divider-line {
    width: 60px;
    height: 1px;
    border-left: none;
    border-top: 2px dashed rgba(0, 77, 77, 0.3);
  }

  .inclusions-card {
    flex-direction: column;
    padding: 4rem 1.5rem 2rem;
    gap: 25px;
  }

  .inc-divider {
    width: 80%;
    height: 1px;
    border-left: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
  }

  .inc-item {
    width: 100%;
  }

  .inc-text {
    text-align: left;
  }

  .plus-nights {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .banner-two {
    background-attachment: scroll;
  }

  .dest-title {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .nights-eyebrow {
    font-size: 1rem;
  }

  .plus-nights {
    font-size: 1.8rem;
  }

  .complimentary-text {
    font-size: 2rem;
  }

  .circle-item {
    width: 10rem;
    height: 10rem;
  }

  .group-label {
    padding: 6px 20px;
    font-size: 0.8rem;
  }

  .price-inner {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  .price-val {
    font-size: 1.6rem;
  }

  .worth-badge {
    font-size: 1rem;
    padding: 1rem 2.2rem;
  }

  .inclusions-badge {
    font-size: 1.2rem;
    padding: 0.6rem 3rem;
  }

  .testimonials-section .section-title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    height: 3rem;
  }

  .dest-title {
    font-size: 3.2rem;
  }

  .complimentary-text {
    font-size: 1.8rem;
  }

  .circle-item {
    width: 8.5rem;
    height: 8.5rem;
  }

  .circles-wrap {
    gap: -30px;
  }

  .pricing-patch {
    transform: scale(0.9);
  }

  .inc-text {
    font-size: 0.9rem;
  }

  .inclusions-card {
    padding: 2.5rem 1.5rem 1rem;
    gap: 15px;
  }

  .inc-item {
    text-align: center;
    gap: 10px;
  }

  .plus-nights {
    font-size: 1.2rem;
  }

  .hero-dest-details {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .dest-title {
    font-size: 2.8rem;
  }

  .nights-eyebrow {
    font-size: 0.9rem;
  }

  .complimentary-text {
    font-size: 1.6rem;
  }

  .circle-item {
    width: 7rem;
    height: 7rem;
  }

  .pricing-patch {
    transform: scale(0.8);
    margin-bottom: 0.5rem;
  }

  .inclusions-badge {
    font-size: 1.1rem;
    padding: 0.5rem 2.5rem;
  }

  .plus-nights {
    font-size: 1.2rem;
  }

  .hero-dest-details {
    font-size: .8rem;
  }
}

.gallery-resort-name {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
}

.gallery-disclaimer {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.6;
  font-style: italic;
  letter-spacing: 1px;
}

/* Mobile Sidebar CTA Specifics */
.sidebar-pay-btn {
  background: #c0a66d !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(192, 166, 109, 0.3) !important;
}

.sidebar-pay-btn:hover {
  background: #a99056 !important;
  box-shadow: 0 6px 20px rgba(192, 166, 109, 0.5) !important;
}