/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}


/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
}

/* ================= HEADER ================= */
.gh-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 116px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center; /* CENTER NAV */

  padding: 0 60px;
  z-index: 999;
  transition: transform 0.35s ease, box-shadow 0.3s;
}

/* HIDE ON SCROLL */
.gh-header.hide {
  transform: translateY(-100%);
}

/* LOGO LEFT */
.gh-logo {
  position: absolute;
  left: 60px;
}

/* MOBILE BUTTON RIGHT */
.gh-toggle {
  position: absolute;
  right: 60px;
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.gh-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.gh-logo img {
  height: 45px;
}

/* NAV */
.gh-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 80px;
}

.gh-nav a {
  text-decoration: none;
  color: #2f6fb2;
  font-size: 13px;
  font-weight: 400;
  position: relative;
}

/* ACTIVE */
.gh-item.active > a {
  color: #000;
}

/* DROPDOWN */
.gh-item {
  position: relative;
}

.gh-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  padding: 15px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gh-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
}

.gh-dropdown a:hover {
  background: #f5f5f5;
}

.gh-item:hover .gh-dropdown {
  opacity: 1;
  visibility: visible;
}

/* MOBILE MENU */
.gh-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* HERO */
.hero {
  background-image: url('../images/ghcc-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 150vh;
}
h1 {
    font-size: 55px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 160px;
}

.hero-left {
  max-width: 650px;
  color: #fff;
}
.hero-left p {
  margin-top: 20px;
  font-size: 20px;
}

/* WEATHER */
.weather-card {
  width: 300px;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  margin-right: 100px;
}

/* ================= BANNER ================= */
.banner {
  height: 420px;
  width: 100%;
}

.about-banner {
  background: url('../images/about-banner.jpg') center/cover no-repeat;
}

/* ================= CONTENT ================= */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 80px 20px;
}

/* TEXT */
.text-block {
  max-width: 850px;
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* SPLIT */
.split {
  display: flex;
  gap: 60px;
}

.split-box {
  flex: 1;
}

.split-box h3 {
  color: #2f6fb2;
  font-size: 22px;
  margin-bottom: 12px;
}

.split-box p {
  line-height: 1.8;
  color: #555;
  text-align: justify;
  width: 492px;
}

.split-box ul {
    margin: 30px 0px 0px 40px;
    text-align: justify;
    width: 450px;
}

/* ================= HIGHLIGHT ================= */
.highlight {
  background: #f7f7f7;
  padding: 90px 20px;
  margin-top: 80px;
}

.highlight-inner {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.highlight h2 {
  color: #2f6fb2;
  font-size: 34px;
  margin-bottom: 20px;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .gh-header {
    padding: 0 20px;
  }

  .gh-toggle {
    display: block;
  }

  .gh-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 20px;
    gap: 15px;
  }

  .gh-nav.show {
    display: flex;        
	text-align: center;
  }

  .gh-item {
    width: 100%;
  }

  .gh-dropdown {
    position: static;
    box-shadow: none;
    display: none;
  }

  .gh-item.active .gh-dropdown {
    display: block;
  }

}



/* ================= FOOTER ================= */
.footer {
  background: #fff;
  padding: 60px 40px 40px;
  text-align: center;
  border-top: 1px solid #eee;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 90px;
  margin-right: 90px;
}

.footer-left img {
  height: 60px;
}


.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-text {
  font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: #2f6fb2;
}

img.socialicon {
	width:20px;
}

/* CENTER TEXT */
.footer-center {
  max-width: 900px;
  margin: auto;
}

.footer-center p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-center .copyright {
  margin-bottom: 20px;
}

p.copyright {
    line-height: 1.6em;
    text-align: center;
    font-size: 16px;
}

p.disclaimer {
    font-size: 10px;
    line-height: 1.6em;
    text-align: center;
}

/* ================= ANIMATION ================= */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================= SPLIT SECTIONS ================= */
.split-section {
  display: flex;
  min-height: 520px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  height: 360px;           /* Or any height */
  background: #fff;
}

.split-content .inside {
  margin: 80px;
  justify-content: center;
}

.split-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.aVng1S {
    border-top: var(--lnw, 2px) solid rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
    box-sizing: border-box;
    height: 0;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #2f6fb2;
  color: #2f6fb2;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  width: fit-content;
}

.btn:hover {
  background: #2f6fb2;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
	height: 900px;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .split-image {
    height: 280px;
  }

  .split-content {
    padding: 40px 20px;
	margin-bottom: 120px;
  }
}





/* ================= EXPERIENCES GRID ================= */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.exp-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.exp-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.exp-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  transition: 0.3s;
}

.exp-overlay h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.exp-overlay p {
  font-size: 14px;
  opacity: 0.85;
}

/* HOVER EFFECT */
.exp-card:hover .exp-img {
  transform: scale(1.1);
}

.exp-card:hover .exp-overlay {
  background: rgba(0,0,0,0.7);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= HOME HERO ================= */
.ghcc-home-section {
  background: #fff;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 140px 20px 100px;
  max-width: 900px;
  margin: auto;
}

.intro h1 {
  font-size: 42px;
  color: #2f6fb2;
  line-height: 1.3;
  margin-bottom: 20px;
}

.intro p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* ATTRACTIONS */
.attractions {
  background: #fff;
}

/* BLUE TOP AREA */
.attractions-header {
  background: #c1d5e7;
  text-align: center;
  padding: 80px 20px 140px; /* IMPORTANT: extra bottom space */
}

/* SUBTITLE */
.section-subtitle {
  font-size: 15px;
  color: #2f6fa3;
  margin-top: 12px;
}

/* TITLE */
.section-title {
  font-size: 50px;
  color: #2f6fa3;
  font-weight: 600;
}

/* WHITE AREA WITH OVERLAP */
.attractions-body {
  margin-top: -100px; /* KEY: pull cards up into blue */
  padding-bottom: 100px;
}

/* GRID */
.attractions-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}
/* CARD */
.attraction-card {
  width: 300px;
  height: 500px;
  background: #e9e9eb;
  border-radius: 140px 140px 12px 12px; /* ARCH SHAPE */
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* IMAGE */
.card-image {
  height: 360px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* CONTENT */
.card-content {
  padding: 20px;
  text-align: left;
  position: relative;
}

.card-content h3 {
  color: #2f6fa3;
  font-size: 18px;
  font-weight: 600;
}


/* BUTTON */
.open-mayor {
  border: 1px solid #2f6fa3;
  background: transparent;
  color: #2f6fa3;
  padding: 10px 25px;
  cursor: pointer;
  transition: 0.3s;
}

.open-mayor:hover {
  background: #2f6fa3;
  color: #fff;
}


/* MODAL BACKDROP */
.mayor-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mayor-modal.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT BOX */
.mayor-modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  position: relative;

  transform: scale(0.9);
  transition: 0.3s;
}

/* SCALE IN */
.mayor-modal.active .mayor-modal-content {
  transform: scale(1);
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* TEXT */
.mayor-modal-content h2 {
  color: #2f6fa3;
  margin-bottom: 20px;
}

.mayor-modal-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  
}

@media (max-width: 768px) {

  .mayor-modal-content {
    padding: 25px;
  }

  .mayor-modal-content h2 {
    font-size: 20px;
  }

}

/* FULL OVERLAY */
.mayor-full {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* ACTIVE */
.mayor-full.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT AREA */
.mayor-full-content {
  max-width: 900px;
  margin: 10px auto;
  padding: 0 20px;
  transform: translateY(30px);
  transition: 0.4s;
      margin-top: 50px;
}

/* TITLE */
.mayor-full-content h1 {
  font-size: 35px;
  color: #2f6fa3;
  margin-bottom: 30px;
  text-align: center;"
}
.mayor-full.active .mayor-full-content {
  transform: translateY(0);
}

/* TEXT */
.mayor-full-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  font-size: 12px;
      text-align: justify;
}

/* CLOSE BUTTON */
.close-full {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999999;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .attractions-header {
    padding: 60px 20px 120px;
  }

  .attractions-body {
    margin-top: -80px;
  }

  .attractions-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* ARROW BUTTON */
.arrowhome {
  position: absolute;
  bottom: -55px;
  right: 15px;
  width: 23px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #1f5c8a;
}

/* HOVER EFFECT (IMPORTANT) */
.attraction-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM LIKE REAL SITE */
.attraction-card:hover img {
  transform: scale(1.1);
}

/* ARROW ANIMATION */
.attraction-card:hover .arrowhome {
  transform: translateX(5px);
  background: #1f5c8a;
}

/* subtle bottom line */
.attractions::after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: #cfd8e3;
  margin: 60px auto 0;
}


@media (max-width: 768px) {
  .attractions-grid {
    flex-direction: column;
    align-items: center;
  }

  .attraction-card {
    width: 85%;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .intro h1 {
    font-size: 26px;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}




/* =========================
   MAYOR SECTION
========================= */
.mayor-section {
  text-align: center;
  padding: 100px 20px 80px;
  background: #f7f7f7 url('images/map-pattern.png') center/cover no-repeat;
}

.mayor-section h2 {
  color: #2f6fa3;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* DOTTED LINE */
.divider {
  width: 420px;
  height: 6px;
  margin: 0 auto 30px;
  background: radial-gradient(circle, #2f6fa3 2px, transparent 3px);
  background-size: 14px 6px;
  background-repeat: repeat-x;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #2f6fa3;
  color: #2f6fa3;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #2f6fa3;
  color: #fff;
}



/* =========================
   NEWSLETTER SECTION
========================= */
.newsletter {
  background: #16558c;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.newsletter h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* FORM */
.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* BUTTON */
.newsletter-form button {
  padding: 14px 40px;
  border: none;
  background: #d3d8df;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #bfc6cf;
}

/* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  margin: 0;
}




/* ================= MAYOR ================= */
.mayor {
  text-align: center;
  padding: 100px 20px;
}

.mayor h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
  color: #222;
}

.read-more {
  font-size: 13px;
  color: #2f6fb2;
  text-decoration: none;
  border-bottom: 1px solid #2f6fb2;
  padding-bottom: 3px;
  transition: 0.3s;
}

.read-more:hover {
  opacity: 0.6;
}



.weather-widget-wrapper {
  position: absolute;
  top: 120px; /* adjust based on screenshot */
  right: 80px;
  z-index: 10;
}



/* TOP SECTION */
.weather-top {
  padding: 20px;
}

.weather-location {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.weather-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.temp {
  font-size: 48px;
  font-weight: 600;
}

.status {
  font-size: 16px;
}

/* STATS */
.weather-stats {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* FORECAST */
.weather-forecast {
  background: rgba(255,255,255,0.85);
  color: #333;
  padding: 15px 20px;
}

.weather-forecast .day {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}






/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-right {
    flex-direction: column;
    text-align: center;
  }
}



/* SECTION */
.logo-section {
  padding: 25px 0;
  background: #fff;
  overflow: hidden;
}

/* WRAPPER */
.logo-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.logo-track {
  display: flex;
  gap: 25px;
  width: max-content;
  transform: translateX(0);
}

.logo-track img {
  height: 50px;
  opacity: 0.7;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

/* AUTO SCROLL */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .logo-track {
    gap: 40px;
  }

  .logo-track img {
    height: 35px;
  }

}



/*about us css*/
.about-hero {
  padding: 120px 20px 140px;
  text-align: center;
}

.about-container {
  max-width: 720px;
  margin: 0 auto;
}

/* TITLE */
.about-title {
  font-size: 50px;
  font-weight: 500;
  color: #3b73a5;
  margin-bottom: 30px;
}

/* SUBTITLE */
.about-subtitle {
  font-size: 18px;
  color: #3b73a5;
  margin-bottom: 30px;
}

/* BODY TEXT */
.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #1d3f66;
  margin-bottom: 25px;
  text-align: justify;
  width: 700px;
}

/* LINK */
.about-link {
  font-size: 16px;
  color: #000;
  text-decoration: underline;
  float:left;
}


@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 15px;
	width: auto;
  }
}

section.milestone {
    padding-left: 200px;
}


/* WRAPPER */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

/* SLIDER */
.gallery {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

/* ITEMS */
.gallery-item {
  min-width: 320px;
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* HOVER */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
  background: rgba(0,0,0,0.3);
}

.heart {
  font-size: 26px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 8px 12px;
}

/* GALLERY HEART (HOVER) */
.overlay .heart {
  font-size: 22px;
  color: #fff;
  border: none;        /* ❌ remove circle */
  background: none;    /* ❌ remove background */
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}

/* ACTIVE STATE */
.overlay .heart.active {
  color: red;
}

/* POPUP HEART (TOP BAR) */
.icon.heart {
  font-size: 18px;
  cursor: pointer;
  color: #333;
  transition: 0.2s;
}

.icon.heart.active {
  color: red;
}

/* NAV ARROWS */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #2f6fa3;
  cursor: pointer;
  z-index: 10;
}

.nav.prev {
  left: 0;
}

.nav.next {
  right: 0;
}

/* TEXT */
.gallery-item p {
  text-align: center;
  margin-top: 10px;
  color: #2f6fa3;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
  .gallery-item {
    min-width: 280px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-wrapper {
    padding: 0 20px;
  }

  .gallery-item {
    min-width: 240px;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .gallery-item {
    min-width: 85%;
  }
}



/* POPUP */
/* FULL WHITE BACKGROUND */
.popup {
  position: fixed;
  inset: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden; /* 🔥 prevent scroll */
}

.popup.active {
  display: flex;
}


/* TOP BAR */
.popup-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.icon {
  margin-right: 20px;
  font-size: 18px;
  cursor: pointer;
}

.close {
  font-size: 28px;
  cursor: pointer;
}

/* BODY */

.popup-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 80px;
  margin-bottom: 50px;
}

/* IMAGE SIDE */
.popup-left {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

/* IMAGE ORIGINAL SIZE */
.popup-left img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: 0.3s;
}

/* ZOOM MODE */
.popup.zoomed {
  justify-content: center;
  align-items: center;
}


.popup.zoomed .popup-top,
.popup.zoomed .popup-right,
.popup.zoomed .arrow {
  display: none; /* 🔥 hide everything */
}

.popup.zoomed img {
  max-width: 95vw;
  max-height: 95vh;
  cursor: zoom-out;
}

/* LIKE BUTTON */
.icon.heart.active {
  color: red;
}

/* TEXT SIDE */
.popup-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.popup-right h3 {
  font-size: 32px;
  color: #2f6fa3;
  line-height: 1.3;
  margin-left: 200px;
}

/* ARROWS (SIDE OF SCREEN) */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #2f6fa3;
  cursor: pointer;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

/*about us*/


/*genting highlands*/

.gh-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.gh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.gh-hero h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}


.gh-intro {
  background: #fff;
  text-align: center;
}

.gh-intro .container {
  max-width: 800px;
  margin: auto;
}

.gh-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #2f6fa3;
  margin-bottom: 25px;
  text-align: justify;
}


@media (max-width: 768px) {

  .gh-hero h1 {
    font-size: 36px;
  }

  .gh-feature {
    padding: 60px 20px;
  }

  .gh-feature-item {
    flex-direction: column;
  }

  .gh-feature-item img,
  .gh-feature-item .text {
    width: 100%;
  }

  .gh-feature-item img {
    height: 250px;
  }
}

/*genting highlands*/



/* h1 h2 title */
/* SECTION */
/* H1 SECTION */
.exp-hero-title {
  height: 250px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 80px;
}

.exp-hero-title h1 {
  font-size: 56px;
  font-weight: 300; /* 🔥 thin like site */
  color: #2f6fa3;
  letter-spacing: 0.5px;
}


/* SUBTITLE (Food & Beverages) */
.exp-category {
  margin-top: 120px; /* push below big title */
}

.exp-subtitle {
  font-size: 28px;
  color: #2f6fa3;
  font-weight: 500;
  border-bottom: 1px solid #2f6fa3;
  display: inline-block;
  padding-bottom: 8px;
}

.about-container.desc {
    width: 1000px;
    text-align: justify;
    margin-left: 106px;

    }

@media (max-width: 768px) {

  .exp-hero-title {
    height: 200px;
    padding: 0 20px;
  }

  .exp-hero-title h1 {
    font-size: 36px;
  }

  .exp-section {
    padding: 20px;
  }

  .exp-subtitle {
    font-size: 22px;
    width: auto !important;
  }
  .split-box ul{
	      width: auto;
  }
  .news-media {
        max-width: 100%;
    }
  .about-hero img {
        max-width: 100%;
    }
  .about-container p {
        max-width: 100%;
    }
  .img{
	      width: 100%;
  }
  .split-box p{
	      width: auto;
  }
  section.milestone{
	  padding-left: 0px;
  }
}
/* h1 h2 title */


/* NEWS Media*/
/* SECTION */
.news-list {
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ROW */
.news-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* REVERSE (ALTERNATE LIKE SITE) */
.news-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT SIDE */
.news-text {
  flex: 1;
  max-width: 520px;
}

.news-date {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.news-text h3 {
  font-size: 24px;
  color: #2f6fa3;
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-text p {
  font-size: 15px;
  line-height: 1.7;
}

/* VIDEO SIDE */
.news-media {
  flex: 1;
}

.news-media iframe {
  width: 100%;
  height: 460px;
  border: none;
	transition: 0.3s;
}

.news-row:hover iframe {
  transform: scale(1.02);
}

@media (max-width: 768px) {

  .news-list {
    padding: 20px;
    gap: 60px;
  }

  .news-row {
    flex-direction: column;
  }

  .news-row.reverse {
    flex-direction: column; /* 🔥 stack same on mobile */
  }

  .news-media iframe {
    height: 220px;
	transition: 0.3s;
  }


.news-row:hover iframe {
  transform: scale(1.02);
}

  .news-text {
    max-width: 100%;
  }
}
/* NEWS Media*/


/* coming soon page */
/* FULL HERO */
.coming-hero {
  position: relative;
  height: 100vh;
  background: url("../images/comingsoon.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* CONTENT CENTER */
.coming-content {
  position: relative;
  text-align: center;
  color: #fff;
}

/* TITLE */
.coming-content h1 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* SUBTEXT */
.coming-content p {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .coming-content h1 {
    font-size: 36px;
  }

  .coming-content p {
    font-size: 14px;
  }
}

.coming-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* coming soon page */



/*CONTACT US*/
/* HERO */
.contact-hero {
  height: 250px;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 300;
  color: #2f6fa3;
}


/* SECTION *//* SECTION *//* SECTION */
.contact-form-only {
  padding: 120px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}

/* WIDTH */
.form-wrapper {
  width: 100%;
  max-width: 620px;
}

/* ROW */
.form-row {
  margin-bottom: 35px;
}

/* TWO COLUMN (IMPORTANT) */
.two-col {
  display: flex;
  gap: 30px;
}

/* INPUT */
.contact-form-only input,
.contact-form-only textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  outline: none;
  background: transparent;
}

/* TEXTAREA */
.contact-form-only textarea {
  height: 100px;
  resize: none;
}

/* FOCUS */
.contact-form-only input:focus,
.contact-form-only textarea:focus {
  border-bottom: 1px solid #2f6fa3;
}

/* 🔥 BUTTON (MATCH REAL GHCC) */
.form-submit {
  margin-top: 40px;
}

.contact-form-only button {
  padding: 12px 40px;
  border: 1px solid #ffffff;
  background: #2f6fa3;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (REAL SITE STYLE) */
.contact-form-only button:hover {
  background: #ffffff;
  color: #2f6fa3;
  border: 1px solid #2f6fa3;
}

@media (max-width: 768px) {

  .contact-form-only {
    padding: 60px 20px;
  }

  .two-col {
    flex-direction: column; /* stack on mobile */
    gap: 20px;
  }
}
/*CONTACT US*/



/*HISTORY*/ 

/* SLIDER */
.slider { 
    width: 100% !important;
    height: 450px !important;
    position: relative;
    overflow: hidden; 
}


.slide.active {
    opacity: 1;
}

.slide {
    width: 950px !important;
    height: 300px;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
       margin-left: 20%;
    margin-right: 20%;
    cursor: pointer;
  border: 1px solid #2f6fa3;
}

.slide.active {
    opacity: 1;
}

.slide {
    transition: opacity 1.5s ease-in-out;
}

/*HISTORY*/








/***RESPONSIVE***/
/* mobile first */

@media (min-width: 768px) { tablet }
@media (min-width: 1200px) { desktop }


/* ================= HEADER ================= */
@media (max-width: 992px) {

  .gh-header {
    padding: 10px 20px;
  }

  .gh-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  .gh-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s;
    overflow-y: auto;
  }

  .gh-nav.show {
    right: 0;
  }

  .gh-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .gh-item .gh-dropdown {
    display: none;
    position: static;
  }

  .gh-item.active .gh-dropdown {
    display: block;
  }
}


/* ================= SLIDER ================= */
@media (max-width: 768px) {
  .slider {
    height: 60vh;
  }

  .slide img {
    object-fit: cover;
  }
}


/* ================= CONTENT ================= */
@media (max-width: 992px) {
  .content {
    padding: 40px 5%;
  }
}

@media (max-width: 600px) {
  .content {
    padding: 30px 20px;
  }

  .content h2 {
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }
}

/* ================= GRID ================= */
@media (max-width: 992px) {
  .col {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .col {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .gallery-item {
    min-width: 80%;
  }
}




/* ================= POPUP ================= */
/* MOBILE FIX */
@media (max-width: 600px) {
  .arrow {
    font-size: 30px;
  }

  .close {
    font-size: 28px;
  }
}


/* ================= FOOTER ================= */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left img {
    max-width: 200px;
  }
}

/* HIDE ARROW BY DEFAULT (DESKTOP) */
.arrowmenu {
  display: none;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 992px) {
  .arrowmenu {
	  
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
	
        padding-left: 10px;
  }
  
    /* CLICKABLE HEADER */
  .gh-link {
    display: inline-flex;
    justify-content: space-between;
    cursor: pointer;
	
        margin-left: 10px;
  }
    /* ROTATE WHEN OPEN */
  .gh-item.active .arrowmenu {
    transform: rotate(180deg);
  }
  
  .fade.show {
   
    flex-direction: column;
  }
  .about-text {
   
    flex-direction: column;
  }
  
}
/***RESPONSIVE***/





/* timeline */
.timeline {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 150px;
  cursor: pointer;
}

.card img {
  width: 100%;
  border-radius: 6px;
}

/* popup */
.popup2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* show popup */
.popup2.active {
  display: flex;
}

/* track */
.popup-track {
  display: flex;
  transition: transform 0.4s ease;
  height: 80%;
}

/* slide */
.popup-item {
  min-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-item img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

/* close button */
.close2 {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* arrows */
.nav2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}


.prev2 { left: 30px;z-index:99999; }
.next2 { right: 30px;z-index:99999; }

button.nav2.prev2.hide {
    display: none;
}
button.nav2.next2.hide {
    display: none;
}
/* mobile */
@media (max-width: 768px) {
  .nav2 {
    font-size: 30px;
  }
}















