/* ============================================
   TGP CLUB — WHITE & BLUE THEME
   Font: Poppins | Palette: White + Blue + Navy
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:       #1a56db;
  --blue-dark:  #1040b0;
  --blue-light: #e8f0fe;
  --blue-mid:   #3b82f6;
  --navy:       #0f1f40;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --text:       #1e293b;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 8px rgba(26,86,219,.08);
  --shadow-md:  0 4px 20px rgba(26,86,219,.12);
  --shadow-lg:  0 10px 40px rgba(26,86,219,.16);
  --transition: all .3s ease;
  --gold:       #1a56db;
  --gold-light: #3b82f6;
  --gold-dark:  #1040b0;
  --cream:      #f8fafc;
  --cream-mid:  #e2e8f0;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0f1f40;
}
a   { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ---- UTILITIES ---- */
.text-gold,.text-blue { color: #1a56db !important; }
.bg-navy  { background: #0f1f40 !important; }
.bg-cream { background: #f8fafc !important; }
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1a56db;
  background: #e8f0fe;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #0f1f40;
  margin-bottom: .8rem;
  font-weight: 700;
}
.section-title-white { color: #fff !important; }
.divider-gold,.divider-blue {
  width: 50px; height: 4px;
  background: #1a56db;
  border-radius: 4px;
  margin: .8rem auto 1.2rem;
}
.divider-gold.left,.divider-blue.left { margin-left: 0; }

/* ---- BUTTONS ---- */
.btn-gold,.btn-blue {
  background: #1a56db;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  border: 2px solid #1a56db;
  border-radius: 50px;
  padding: .6rem 1.8rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26,86,219,.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-gold:hover,.btn-blue:hover {
  background: #1040b0;
  border-color: #1040b0;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}
.btn-outline-gold,.btn-outline-blue {
  background: transparent;
  color: #1a56db !important;
  border: 2px solid #1a56db;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  border-radius: 50px;
  padding: .6rem 1.8rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-outline-gold:hover,.btn-outline-blue:hover {
  background: #1a56db;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,86,219,.25);
}
.btn-navy {
  background: #0f1f40;
  color: #fff !important;
  border: 2px solid #0f1f40;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  border-radius: 50px;
  padding: .6rem 1.8rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-navy:hover {
  background: #1040b0;
  border-color: #1040b0;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Topbar */
.topbar {
  background: #0f1f40;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 6px 0;
}

.topbar a {
  color: #93c5fd;
}
.topbar a:hover {
  color: #fff;
}

/* Navbar */
.tgp-navbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

/* Brand alignment */
.navbar-brand {
  display: flex;
  align-items: center;
}

/* Logo */
.logo-img {
  height: 70px !important;
  width: auto;
}

/* Brand fallback text (when image missing) */
.brand-text-fallback {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a56db !important;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}

/* ---- NAV LINKS ---- */
.tgp-navbar .nav-link {
  color: #334155 !important;
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .9rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.tgp-navbar .nav-link:hover,
.tgp-navbar .nav-link.active {
  color: #1a56db !important;
  background: #e8f0fe;
}
.tgp-dropdown {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: .5rem;
  margin-top: .5rem !important;
  box-shadow: 0 4px 20px rgba(26,86,219,.12);
}
.tgp-dropdown .dropdown-item {
  color: #334155;
  font-size: .85rem;
  border-radius: 8px;
  padding: .5rem .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}
.tgp-dropdown .dropdown-item:hover { background: #e8f0fe; color: #1a56db; }
.tgp-dropdown .dropdown-divider { border-color: #e2e8f0; }
.membership-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.membership-dot-sm {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

/* ---- HERO ---- */
.hero-carousel { position: relative; }
.hero-slide {
  height: 90vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,64,.82) 40%, rgba(26,86,219,.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 16px;
  opacity: 0;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.3);
}
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: 1; }
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
}
.carousel-indicators .active { background: #fff; width: 48px; }

/* ---- STAT BAR ---- */
.stat-bar { background: #1a56db; padding: 28px 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label  { font-size: .75rem; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; font-weight: 500; }

/* ---- FEATURE CARDS ---- */
.feature-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #1a56db;
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 4px 20px rgba(26,86,219,.12); border-color: #1a56db; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  background: #e8f0fe;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: #1a56db;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: #1a56db; color: #fff; }
.feature-card h5 { font-size: 1.05rem; color: #0f1f40; margin-bottom: .5rem; font-weight: 600; }
.feature-card p  { font-size: .875rem; color: #64748b; line-height: 1.7; margin: 0; }

/* ---- RESORT CARDS ---- */
.resort-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e2e8f0;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.resort-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #1a56db; }
.resort-card-img { position: relative; overflow: hidden; height: 220px; }
.resort-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.resort-card:hover .resort-card-img img { transform: scale(1.07); }
.resort-badge {
  position: absolute; top: 12px; left: 12px;
  background: #1a56db; color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.resort-price-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.95); color: #1a56db;
  font-size: 1rem; font-weight: 700;
  padding: 5px 12px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.resort-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.resort-location { font-size: .75rem; color: #1a56db; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .3rem; }
.resort-location i { margin-right: 4px; }
.resort-name { font-size: 1.15rem; color: #0f1f40; margin-bottom: .4rem; font-weight: 700; }
.resort-desc { font-size: .85rem; color: #64748b; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.resort-amenities { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .3rem; }
.amenity-tag { background: #e8f0fe; color: #1a56db; font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.resort-card-footer {
  padding: .9rem 1.3rem;
  border-top: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between;
  background: #f8fafc;
}

/* ---- FILTER BAR ---- */
.filter-bar {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.filter-btn {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active,.filter-btn:hover { background: #1a56db; color: #fff; border-color: #1a56db; }

/* ---- RESORT DETAIL ---- */
.resort-gallery-main { border-radius: 20px; overflow: hidden; height: 460px; }
.resort-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.resort-gallery-thumbs { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.resort-thumb { width: 90px; height: 65px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2.5px solid transparent; transition: var(--transition); }
.resort-thumb.active { border-color: #1a56db; }
.resort-thumb img { width: 100%; height: 100%; object-fit: cover; }
.resort-info-box { background: #e8f0fe; border-radius: 20px; padding: 1.8rem; border-left: 4px solid #1a56db; }
.resort-price-big { font-size: 2.2rem; font-weight: 800; color: #0f1f40; }
.resort-price-big span { font-size: .95rem; color: #64748b; font-weight: 400; }

/* ---- MEMBERSHIP CARDS ---- */
.membership-card {
  border-radius: 20px; overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e2e8f0;
  transition: var(--transition);
  height: 100%; display: flex; flex-direction: column;
  position: relative;
}
.membership-card.featured { border-color: #1a56db; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.membership-card:hover    { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #1a56db; }
.membership-card.featured:hover { transform: translateY(-6px) scale(1.03); }
.membership-badge {
  position: absolute; top: 0; right: 20px;
  background: #1a56db; color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
}
.membership-header { padding: 2rem 1.5rem 1.5rem; text-align: center; }
.membership-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; }
.membership-name  { font-size: 1.5rem; margin-bottom: .3rem; font-weight: 700; }
.membership-price { font-size: 2.8rem; font-weight: 800; line-height: 1; color: #0f1f40; }
.membership-price sup { font-size: 1.1rem; vertical-align: super; }
.membership-price sub { font-size: .95rem; }
.membership-benefits { padding: 1.2rem 1.5rem; flex: 1; }
.membership-benefits li { font-size: .875rem; padding: .4rem 0; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: .5rem; color: #334155; }
.membership-benefits li:last-child { border-bottom: none; }
.membership-benefits i { color: #1a56db; flex-shrink: 0; }
.membership-footer { padding: 1.3rem 1.5rem; text-align: center; background: #f8fafc; border-top: 1px solid #e2e8f0; }

/* ---- EXPERIENCE CARDS ---- */
.experience-card { border-radius: 20px; overflow: hidden; position: relative; height: 320px; cursor: pointer; transition: var(--transition); }
.experience-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.experience-card:hover img { transform: scale(1.07); }
.experience-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(15,31,64,.88) 35%,transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.experience-tag { display: inline-block; background: #1a56db; color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: .5rem; width: fit-content; }
.experience-card h5 { color: #fff; font-size: 1.2rem; margin-bottom: .3rem; }
.experience-card p  { color: rgba(255,255,255,.75); font-size: .82rem; margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonial-card { background: #fff; border-radius: 20px; padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1.5px solid #e2e8f0; height: 100%; transition: var(--transition); }
.testimonial-card:hover { border-color: #1a56db; box-shadow: var(--shadow-md); }
.testimonial-card::before { content: '\201C'; font-family: Georgia,serif; font-size: 4rem; color: #1a56db; line-height: .8; display: block; margin-bottom: .5rem; opacity: .3; }
.testimonial-text   { font-size: .9rem; line-height: 1.8; color: #334155; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: #1a56db; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-size: .9rem; font-weight: 700; color: #0f1f40; }
.testimonial-plan { font-size: .75rem; color: #1a56db; font-weight: 600; }

/* ---- SUBSCRIPTION ---- */
.subscription-box { background: #fff; border-radius: 20px; box-shadow: var(--shadow-md); padding: 2.2rem; border: 1.5px solid #e2e8f0; }
.plan-selector .plan-option { border: 2px solid #e2e8f0; border-radius: 12px; padding: 1.2rem; cursor: pointer; transition: var(--transition); text-align: center; }
.plan-selector .plan-option:hover,
.plan-selector .plan-option.selected { border-color: #1a56db; background: #e8f0fe; }
.plan-option .plan-name  { font-size: 1rem; font-weight: 700; color: #0f1f40; }
.plan-option .plan-price { font-size: 1.8rem; color: #1a56db; font-weight: 800; }
.coupon-box { display: flex; gap: .5rem; }
.coupon-box input { border-radius: 50px !important; }
.form-control,.form-select { border-radius: 10px; border: 1.5px solid #e2e8f0; font-size: .875rem; padding: .6rem 1rem; font-family: 'Poppins',sans-serif; color: #1e293b; }
.form-control:focus,.form-select:focus { border-color: #1a56db; box-shadow: 0 0 0 3px rgba(26,86,219,.12); outline: none; }
.form-label { font-size: .82rem; font-weight: 600; color: #334155; margin-bottom: .35rem; }

/* ---- USER DASHBOARD ---- */
.user-sidebar { background: #0f1f40; border-radius: 20px; padding: 2rem 1.5rem; color: #fff; position: sticky; top: 80px; }
.user-avatar { width: 76px; height: 76px; border-radius: 50%; background: #1a56db; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto 1rem; border: 3px solid rgba(255,255,255,.2); }
.user-nav .nav-link { color: rgba(255,255,255,.65) !important; font-size: .85rem; border-radius: 8px; padding: .55rem .8rem !important; transition: var(--transition); font-weight: 500; }
.user-nav .nav-link:hover,.user-nav .nav-link.active { background: rgba(59,130,246,.2); color: #93c5fd !important; }
.user-nav .nav-link i { margin-right: .5rem; }
.member-badge-card { background: linear-gradient(135deg,#1040b0,#1a56db); border-radius: 20px; padding: 2rem; color: #fff; position: relative; overflow: hidden; }
.member-badge-card::after { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.07); }
.membership-expiry-bar { background: rgba(255,255,255,.2); border-radius: 50px; height: 6px; margin-top: .5rem; overflow: hidden; }
.membership-expiry-fill { height: 100%; background: rgba(255,255,255,.85); border-radius: 50px; }
.stat-mini-card { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 1.2rem; text-align: center; transition: var(--transition); }
.stat-mini-card:hover  { border-color: #1a56db; box-shadow: var(--shadow-sm); }
.stat-mini-icon  { font-size: 1.5rem; color: #1a56db; }
.stat-mini-value { font-size: 1.7rem; font-weight: 800; color: #0f1f40; line-height: 1.2; margin-top: .3rem; }
.stat-mini-label { font-size: .72rem; color: #64748b; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-top: .2rem; }

/* ---- CTA ---- */
.cta-section { background: linear-gradient(135deg,#0f1f40,#1040b0); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section .section-title { color: #fff; }
.why-us-icon { width: 52px; height: 52px; background: #e8f0fe; border: 2px solid #1a56db; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #1a56db; flex-shrink: 0; }

/* ---- BREADCRUMB ---- */
.tgp-breadcrumb { background: linear-gradient(135deg,#0f1f40,#1040b0); padding: 55px 0 28px; }
.tgp-breadcrumb h1 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.breadcrumb-item a { color: #93c5fd; }
.breadcrumb-item.active { color: rgba(255,255,255,.55); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- FOOTER ---- */
.tgp-footer { background: #0f1f40; }
.footer-top { padding: 55px 0 36px; border-bottom: 1px solid rgba(255,255,255,.08); }

/* FOOTER LOGO — LARGE & SHARP */
.footer-logo {
  height: 120px !important;
  width: auto !important;
  max-width: 320px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  margin-bottom: 1rem;
}

.footer-text    { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-heading { color: #93c5fd; font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links   { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .85rem; transition: var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: #93c5fd; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: .8rem; color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: .8rem; }
.footer-bottom { padding: 18px 0; background: rgba(0,0,0,.2); color: rgba(255,255,255,.35); font-size: .78rem; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; color: rgba(255,255,255,.55); margin-right: .4rem; font-size: .95rem; transition: var(--transition); }
.social-btn:hover { background: #1a56db; color: #fff; }

/* ---- BACK TO TOP ---- */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: #1a56db; color: #fff !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 9999; box-shadow: 0 4px 14px rgba(26,86,219,.4); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover   { background: #1040b0; transform: translateY(-3px); }

/* ---- ALERTS ---- */
.tgp-alert { border-radius: 12px; border: none; font-size: .875rem; padding: .9rem 1.2rem; font-weight: 500; }
.tgp-alert-success { background: #f0fdf4; color: #166534; border-left: 4px solid #22c55e; }
.tgp-alert-error   { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }
.tgp-alert-info    { background: #e8f0fe; color: #1040b0; border-left: 4px solid #1a56db; }

/* ---- PAGE LOADER ---- */
#pageLoader { position: fixed; inset: 0; background: #fff; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity .5s ease,visibility .5s ease; }
#pageLoader.hide { opacity: 0; visibility: hidden; }
.loader-ring { width: 48px; height: 48px; border: 3px solid #e8f0fe; border-top-color: #1a56db; border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease,transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- ACCORDION ---- */
.accordion-button:not(.collapsed) { color: #1a56db; background: #e8f0fe; box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(26,86,219,.15); }

/* ---- LIGHTBOX ---- */
#tgpLightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 99990; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
#tgpLightbox.open { opacity: 1; visibility: visible; }
#tgpLightbox img  { max-width: 90vw; max-height: 88vh; border-radius: 12px; }
#lightboxClose { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2rem; cursor: pointer; }

/* ====================================================
   RESPONSIVE BREAKPOINTS
   Logo scales down gracefully on smaller screens
==================================================== */

/* Large Desktop 1400px+ */
@media (min-width: 1400px) {
  /*.logo-img     { height: 160px !important; max-width: 420px !important; }*/
  .footer-logo  { height: 130px !important; max-width: 340px !important; }
}

/* Standard Desktop 1200px - 1399px */
@media (max-width: 1399.98px) {
  /*.logo-img     { height: 140px !important; max-width: 380px !important; }*/
  .footer-logo  { height: 120px !important; max-width: 310px !important; }
}

/* Small Desktop / Large Tablet 992px - 1199px */
@media (max-width: 1199.98px) {
  /*.logo-img     { height: 120px !important; max-width: 320px !important; }*/
  .footer-logo  { height: 100px !important; max-width: 270px !important; }
}

/* Tablet 768px - 991px */
@media (max-width: 991.98px) {
  .section-pad { padding: 55px 0; }
  .hero-slide  { height: 72vh; min-height: 460px; }
  .membership-card.featured { transform: none; }
  .user-sidebar { position: static; margin-bottom: 1.5rem; }
  .resort-gallery-main { height: 280px; }
  /*.logo-img     { height: 100px !important; max-width: 280px !important; }*/
  .footer-logo  { height: 88px !important; max-width: 240px !important; }
}

/* Mobile 576px - 767px */
@media (max-width: 767.98px) {
  .section-pad     { padding: 40px 0; }
  .hero-slide      { height: 62vh; min-height: 400px; }
  .hero-title      { font-size: clamp(1.8rem,7vw,2.6rem); }
  .stat-number     { font-size: 2rem; }
  .experience-card { height: 250px; }
  .resort-card-img { height: 185px; }
  .subscription-box { padding: 1.5rem; }
  /*.logo-img     { height: 85px !important; max-width: 240px !important; }*/
  .footer-logo  { height: 75px !important; max-width: 210px !important; }
}

/* Small Mobile max 575px */
@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .resort-thumb  { width: 65px; height: 48px; }
  .section-title { font-size: 1.6rem; }
  /*.logo-img     { height: 72px !important; max-width: 200px !important; }*/
  .footer-logo  { height: 64px !important; max-width: 180px !important; }
}