/* =========================================
   HAAD SON BEACH RESORT — Main Stylesheet
   haadson.com
   ========================================= */

/* ===== VARIABLES ===== */
:root {
  --navy:    #032D60;
  --ocean:   #006994;
  --sea:     #0099CC;
  --aqua:    #00B4D8;
  --gold:    #C9A84C;
  --gold-lt: #E8C97A;
  --sand:    #F5EDD6;
  --bg:      #F0F8FF;
  --white:   #FFFFFF;
  --gray:    #6B7C93;
  --border:  #D6E8F5;
  --dark:    #1A2B3C;
  --ff-head: 'Cormorant Garamond', 'Sarabun', serif;
  --ff-body: 'Sarabun', sans-serif;
  --shadow-sm: 0 2px 8px rgba(3,45,96,.08);
  --shadow-md: 0 8px 32px rgba(3,45,96,.14);
  --shadow-lg: 0 16px 48px rgba(3,45,96,.20);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* Cormorant Garamond uses old-style numerals by default – force lining numerals globally */
h1, h2, h3, h4, h5, h6,
.section-title, .page-hero-title, .pkg-title, .pkg-price,
.package-name, .package-price-amount, .about-stat-num,
.room-name, .activity-name, .attraction-name, .footer-logo-name,
.nav-logo-name, [style*="ff-head"], [class*="title"] {
  font-variant-numeric: lining-nums;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 7px 0;
  position: relative;
  z-index: 1000;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.topbar a:hover { color: var(--gold-lt); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(3,45,96,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(3,45,96,.3);
  top: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: .5px; line-height: 1.1; }
.nav-logo-sub { font-size: 10px; color: var(--gold-lt); letter-spacing: 2.5px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-lt); background: rgba(255,255,255,.1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-book-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-book-nav:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,.45); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; padding: 4px; z-index: 1001; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: .3px;
  transition: all var(--transition); cursor: pointer; border: none; font-family: var(--ff-body);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,105,148,.35); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.label { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--ff-head); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-dark .section-title { color: var(--white); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 620px; margin: 0 auto; line-height: 1.75; }
.section-dark .section-sub { color: rgba(255,255,255,.7); }
.section-header.left .section-sub { margin: 0; }
.divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; margin: 18px auto 0; }
.section-header.left .divider { margin: 18px 0 0; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #021f44 0%, #006994 60%, #00a8cc 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero/hero-main.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(3,45,96,.72) 0%, rgba(3,45,96,.42) 55%, rgba(0,105,148,.68) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 90px; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-lt); font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 6px;
}
.hero-title .gold { color: var(--gold-lt); }
.hero-subtitle {
  font-family: var(--ff-head); font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,.82); font-style: italic; margin-bottom: 20px;
}
.hero-desc { font-size: 16.5px; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 36px; max-width: 600px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-usps { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-usp { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: 13.5px; }
.hero-usp svg { width: 17px; height: 17px; color: var(--gold-lt); flex-shrink: 0; }

/* ===== USP STRIP ===== */
.usp-strip { background: linear-gradient(90deg, #021f44 0%, var(--ocean) 100%); }
.usp-strip .container { display: flex; }
.usp-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 26px 22px; border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,.05); }
.usp-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); flex-shrink: 0;
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-title { font-weight: 700; font-size: 14px; color: var(--white); line-height: 1.2; }
.usp-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 3px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 190px; height: 145px;
  border-radius: var(--radius); border: 4px solid var(--white);
  box-shadow: var(--shadow-md); overflow: hidden;
  background: linear-gradient(135deg, var(--gold), #d4a845);
}
.about-badge {
  position: absolute; top: 24px; left: -20px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 13px; padding: 13px 18px;
  border-radius: 10px; box-shadow: var(--shadow-md); text-align: center; line-height: 1.4;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 13px; }
.about-feature-icon {
  width: 38px; height: 38px; background: rgba(0,105,148,.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--ocean); flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; }
.about-feature-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-feature-text p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.about-stat { text-align: center; padding: 18px 10px; background: var(--bg); border-radius: 12px; border: 1px solid var(--border); }
.about-stat-num { font-family: var(--ff-head); font-size: 34px; font-weight: 700; color: var(--ocean); line-height: 1; }
.about-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ===== ROOMS ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,.2), var(--shadow-md); }
.room-card.wide { grid-column: span 2; }
.room-img-wrap {
  aspect-ratio: 16/10; width: 100%;
  position: relative; overflow: hidden;
}
.room-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-family: var(--ff-head); font-style: italic; font-size: 15px; gap: 10px;
}
.room-img-ph svg { width: 44px; height: 44px; opacity: .55; }
.room-img-ph.villa { background: linear-gradient(135deg, #021f44, #006994); }
.room-img-ph.deluxe4 { background: linear-gradient(135deg, #006994, #0099cc); }
.room-img-ph.deluxe2 { background: linear-gradient(135deg, #0077aa, #00b4d8); }
.room-img-ph.standard { background: linear-gradient(135deg, #005f80, #008db3); }
.room-img-ph.family { background: linear-gradient(135deg, #032d60, #0077b6); }
/* Villa Hero Card — homepage */
.room-card.villa-hero {
  grid-column: 1 / -1;
  background: linear-gradient(160deg,#021530,#032d60,#00406b);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 0 2px rgba(201,168,76,.15), var(--shadow-lg);
  flex-direction: row; min-height: 300px;
}
.room-card.villa-hero:hover { transform: translateY(-4px); }
.villa-hero-img-col { flex: 0 0 56%; position: relative; overflow: hidden; }
.villa-hero-img-col img { width:100%; height:100%; object-fit:cover; display:block; }
.villa-hero-text-col { flex:1; padding:36px 32px; display:flex; flex-direction:column; justify-content:center; }
.room-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 800; padding: 5px 12px;
  border-radius: 6px; letter-spacing: .5px; text-transform: uppercase;
}
.room-badge.gold { background: var(--gold); color: var(--navy); }
.room-badge.blue { background: var(--ocean); color: var(--white); }
.room-badge.teal { background: var(--sea); color: var(--white); }
.room-badge.family { background: #2ecc71; color: var(--white); }
.room-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.room-type { font-size: 10.5px; font-weight: 700; color: var(--ocean); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; }
.room-name { font-family: var(--ff-head); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.room-number { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.room-meta { display: flex; gap: 18px; margin-bottom: 13px; flex-wrap: wrap; }
.room-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.room-meta-item svg { width: 14px; height: 14px; color: var(--ocean); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.amenity-tag {
  font-size: 11px; background: var(--bg); color: var(--ocean);
  border: 1px solid var(--border); padding: 4px 10px; border-radius: 100px;
}
.room-desc { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.room-footer { margin-top: auto; display: flex; gap: 10px; }
.room-footer .btn { flex: 1; justify-content: center; }

/* ===== ACTIVITIES ===== */
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.activity-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--border); text-align: center;
}
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.activity-img {
  aspect-ratio: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.activity-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
}
.activity-img-ph svg { width: 52px; height: 52px; }
.activity-img-ph.dive { background: linear-gradient(135deg, #006994, #00b4d8); }
.activity-img-ph.fish { background: linear-gradient(135deg, #0e4f6e, #0077aa); }
.activity-img-ph.wed { background: linear-gradient(135deg, #b8935a, #c9a84c); }
.activity-img-ph.sem { background: linear-gradient(135deg, #032d60, #006994); }
.activity-body { padding: 20px 16px 22px; }
.activity-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ocean), var(--sea));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: -38px auto 14px; color: var(--white);
  box-shadow: 0 4px 14px rgba(0,105,148,.4); border: 3px solid var(--white);
  position: relative; z-index: 1;
}
.activity-icon-wrap svg { width: 24px; height: 24px; }
.activity-name { font-family: var(--ff-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.activity-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ===== KOH TALU / PACKAGES ===== */
.koh-talu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.koh-talu-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, #006994, #00b4d8); display: flex; align-items: center; justify-content: center; }
.koh-talu-badge {
  position: absolute; top: 24px; right: -20px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 13px; padding: 13px 18px;
  border-radius: 10px; box-shadow: var(--shadow-md); text-align: center; line-height: 1.4;
}
.packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.package-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all var(--transition);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card.featured { border-color: var(--gold); }
.package-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--ocean), var(--aqua)); }
.package-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.package-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ocean); margin-bottom: 8px; }
.package-card.featured .package-label { color: var(--gold); }
.package-name { font-family: var(--ff-head); font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.package-desc { font-size: 13.5px; color: var(--gray); margin-bottom: 22px; line-height: 1.65; }
.package-price { margin-bottom: 22px; }
.package-price-amount { font-family: var(--ff-head); font-size: 42px; font-weight: 700; color: var(--ocean); line-height: 1; }
.package-card.featured .package-price-amount { color: var(--gold); }
.package-price-unit { font-size: 14px; color: var(--gray); }
.package-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.package-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--dark); }
.package-includes li svg { width: 18px; height: 18px; color: var(--ocean); flex-shrink: 0; margin-top: 2px; }
.package-card.featured .package-includes li svg { color: var(--gold); }

/* ===== ATTRACTIONS ===== */
.attractions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.attraction-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--border);
}
.attraction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.attraction-img {
  aspect-ratio: 16/9; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.attraction-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,.7); font-size: 13px; font-style: italic; font-family: var(--ff-head);
}
.attraction-img-ph svg { width: 36px; height: 36px; opacity: .6; }
.attraction-body { padding: 18px; }
.attraction-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ocean); background: rgba(0,105,148,.08);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 8px;
}
.attraction-name { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.attraction-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }
.attraction-dist { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ocean); margin-top: 10px; font-weight: 600; }
.attraction-dist svg { width: 13px; height: 13px; }

/* ===== RESTAURANT ===== */
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.restaurant-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, #5c3d11, #8b5e2a); display: flex; align-items: center; justify-content: center; }
.menu-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.menu-item { background: var(--bg); padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border); }
.menu-item-name { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
.menu-item-desc { font-size: 12px; color: var(--gray); }
.facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.facility-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px;
}
.facility-icon { width: 40px; height: 40px; background: rgba(0,105,148,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--ocean); flex-shrink: 0; }
.facility-icon svg { width: 20px; height: 20px; }
.facility-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.facility-desc { font-size: 12px; color: var(--gray); margin-top: 3px; line-height: 1.5; }

/* ===== WEDDING / SEMINAR ===== */
.venue-tabs { display: flex; gap: 12px; margin-bottom: 38px; flex-wrap: wrap; }
.venue-tab {
  padding: 11px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 2px solid var(--border); color: var(--gray); background: var(--white);
  transition: all var(--transition); cursor: pointer;
}
.venue-tab.active { border-color: var(--ocean); color: var(--ocean); background: rgba(0,105,148,.07); }
.venue-tab:hover:not(.active) { border-color: var(--ocean); color: var(--ocean); }
.venue-panel { display: none; }
.venue-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.venue-panel-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
.venue-panel-img.wed { background: linear-gradient(135deg, #e8d5b7, #c9a84c); }
.venue-panel-img.sem { background: linear-gradient(135deg, #032d60, #006994); }
.venue-features { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.venue-feature { display: flex; align-items: flex-start; gap: 12px; }
.venue-feature-icon { width: 40px; height: 40px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.venue-feature-icon svg { width: 20px; height: 20px; }
.venue-feature-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.venue-feature-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== VENUE PHOTO GALLERY ===== */
.venue-gallery { display: flex; flex-direction: column; gap: 10px; }
.venue-gallery-hero { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.venue-gallery-hero img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.venue-gallery-hero:hover img { transform: scale(1.04); }
.venue-gallery-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,45,96,.18) 0%, transparent 50%); pointer-events: none; border-radius: inherit; }
.venue-gallery-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.venue-gallery-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.venue-gallery-thumb { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.venue-gallery-grid-2 .venue-gallery-thumb { aspect-ratio: 4/3; }
.venue-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.venue-gallery-thumb:hover img { transform: scale(1.08); }
.venue-gallery-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(3,45,96,0); transition: background .3s; pointer-events: none; }
.venue-gallery-thumb:hover::after { background: rgba(3,45,96,.1); }

/* ===== GALLERY ===== */
.gallery-masonry { columns: 3; gap: 14px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-ph {
  width: 100%; display: block;
  border-radius: var(--radius); transition: transform .4s ease;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-family: var(--ff-head); font-style: italic; font-size: 14px;
}
.gallery-item:hover .gallery-ph { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(3,45,96,.5);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.gallery-overlay svg { width: 36px; height: 36px; color: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-filters { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.gallery-filter {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--gray); background: var(--white);
  cursor: pointer; transition: all var(--transition);
}
.gallery-filter.active, .gallery-filter:hover { border-color: var(--ocean); color: var(--ocean); background: rgba(0,105,148,.07); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testimonial-stars svg { width: 15px; height: 15px; color: var(--gold-lt); }
.testimonial-text { font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,.82); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--white); }
.testimonial-from { font-size: 11.5px; color: rgba(255,255,255,.5); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--ocean); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 14.5px; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question svg { width: 20px; height: 20px; color: var(--ocean); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--gray); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 14px; }

/* ===== BOOKING CHANNELS ===== */
.booking-channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.booking-channel {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 18px; background: var(--white);
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  text-align: center; transition: all var(--transition); text-decoration: none; color: inherit;
}
.booking-channel:hover { border-color: var(--ocean); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.channel-icon { font-size: 34px; line-height: 1; }
.channel-name { font-weight: 800; color: var(--navy); font-size: 15px; }
.channel-desc { font-size: 12px; color: var(--gray); line-height: 1.55; }
.booking-channel .btn { font-size: 12px; padding: 8px 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(0,105,148,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--ocean); flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.contact-info-value a { color: var(--ocean); }
.contact-info-value a:hover { color: var(--navy); text-decoration: underline; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 8px; }
.map-embed iframe { display: block; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.form-input, .form-textarea, .form-select {
  padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: var(--ff-body); color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white); width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(0,105,148,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.transport-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.transport-card { background: var(--bg); border-radius: var(--radius); padding: 22px 18px; border: 1px solid var(--border); text-align: center; }
.transport-icon { font-size: 30px; margin-bottom: 10px; }
.transport-title { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 6px; }
.transport-desc { font-size: 12.5px; color: var(--gray); line-height: 1.65; }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social-link svg { width: 17px; height: 17px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 48px; }
.footer-logo-name { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer-logo-sub { font-size: 10px; color: var(--gold-lt); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 18px; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold-lt); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.38); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ===== PHONE FLOAT ===== */
.phone-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 800; display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.phone-float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,.5);
  transition: all var(--transition); color: var(--navy);
  animation: pulse-gold 2.8s infinite;
}
.phone-float-btn:hover { transform: scale(1.1); }
.phone-float-btn svg { width: 26px; height: 26px; }
.phone-float-label {
  background: var(--navy); color: var(--white);
  font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: 8px;
  white-space: nowrap; box-shadow: var(--shadow-md); pointer-events: none;
}

/* ===== LINE FLOAT ===== */
.line-float { position: fixed; bottom: 28px; left: 28px; z-index: 800; }
.line-float-btn {
  width: 52px; height: 52px; border-radius: 50%; background: #06C755;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(6,199,85,.45);
  transition: all var(--transition); color: var(--white);
}
.line-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(6,199,85,.6); }
.line-float-btn svg { width: 28px; height: 28px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, #021f44 0%, var(--ocean) 100%);
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero/hero-main.jpg') center/cover no-repeat;
  opacity: .2;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--ff-head); font-size: clamp(30px, 5vw, 52px); font-weight: 700; margin-bottom: 12px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb svg { width: 11px; height: 11px; }

/* ===== CTA BANNER ===== */
.cta-section { background: linear-gradient(135deg, var(--ocean) 0%, var(--aqua) 100%); padding: 64px 0; text-align: center; }
.cta-section h2 { font-family: var(--ff-head); font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,.5); }
  50% { box-shadow: 0 4px 32px rgba(201,168,76,.9), 0 0 0 10px rgba(201,168,76,.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .65s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .45s; }

/* ===== WAVE ===== */
.wave-top { display: block; width: 100%; line-height: 0; margin-bottom: -2px; }
.wave-bottom { display: block; width: 100%; line-height: 0; margin-top: -2px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ===== SCROLL REVEAL (JS-driven) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card.wide { grid-column: span 1; }
  .room-card.villa-hero { flex-direction: column; min-height: auto; }
  .villa-hero-img-col { flex: 0 0 auto; aspect-ratio: 16/10; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .booking-channels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0;
    flex-direction: column; background: rgba(3,45,96,.98);
    justify-content: center; align-items: center; gap: 6px;
    transform: translateX(100%); transition: transform var(--transition);
    z-index: 990; display: flex;
  }
  .nav-cta { display: none; }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 19px; padding: 14px 36px; color: rgba(255,255,255,.9) !important; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--gold-lt) !important; background: rgba(255,255,255,.07) !important; }
  .topbar { display: none; }
  .navbar { top: 0; }
  .navbar.scrolled { top: 0; }
  .about-grid, .restaurant-grid, .contact-grid, .koh-talu-grid { grid-template-columns: 1fr; gap: 36px; }
  .packages-grid { grid-template-columns: 1fr; }
  .venue-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .transport-cards { grid-template-columns: 1fr 1fr; }
  .about-img-accent { display: none; }
  .about-badge { display: none; }
  .usp-strip .container { flex-direction: column; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .usp-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .attractions-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-usps { flex-direction: column; gap: 10px; }
  .booking-channels { grid-template-columns: 1fr 1fr; }
  .menu-highlights { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .transport-cards { grid-template-columns: 1fr; }
  .phone-float { bottom: 16px; right: 16px; }
  .line-float { bottom: 16px; left: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 400px) {
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .booking-channels { grid-template-columns: 1fr; }
}
