:root {
  --gold: #B8922A;
  --gold-light: #D4AF6A;
  --gold-mid: #C9A84C;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F7F3EC;
  --cream2: #EEE8DC;
  --dark: #1A1A1A;
  --dark2: #2D2D2D;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --border: #E8E2D6;
  --border2: #D6CEBC;
  --shadow: rgba(0,0,0,0.07);
  --shadow-md: rgba(0,0,0,0.11);
  --shadow-lg: rgba(0,0,0,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 74px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px var(--shadow-md); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); text-decoration: none; letter-spacing: 0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--dark2); text-decoration: none; font-size: 0.85rem; font-weight: 500; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta { background: var(--dark) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px !important; font-weight: 600 !important; font-size: 0.83rem !important; opacity: 1 !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 6px; background: transparent; border: none; z-index: 1001; position: relative; -webkit-tap-highlight-color: transparent; }
.hamburger:hover { background: var(--cream); }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--dark); border-radius: 2px; pointer-events: none; }

/* MOBILE NAV */
.mob-nav { display: none; position: fixed; top: 74px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); z-index: 999; padding: 1.5rem 5%; }
.mob-nav.open { display: flex; flex-direction: column; gap: 1rem; }
.mob-nav a { color: var(--dark); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mob-nav a:last-child { border-bottom: none; }

/* HERO */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--cream); padding: 0 5%; padding-top: 74px;
}
.hero-bg-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(184,146,42,0.13) 1.2px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 30%, black 0%, transparent 70%);
}
.hero-glow {
  position: absolute; top: -100px; right: -100px; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border2);
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 40px;
  margin-bottom: 2rem; box-shadow: 0 2px 12px var(--shadow);
  animation: fadeUp 0.6s ease both;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.6rem); font-weight: 700; line-height: 1.05;
  color: var(--dark); margin-bottom: 1.6rem;
  animation: fadeUp 0.6s 0.12s ease both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1rem; color: var(--grey); line-height: 1.8; max-width: 500px;
  margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.24s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.36s ease both; }
.btn-primary {
  background: var(--dark); color: var(--white);
  padding: 14px 30px; border-radius: 6px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(26,26,26,0.2);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,42,0.3); }
.btn-outline {
  background: var(--white); border: 1.5px solid var(--border2); color: var(--dark);
  padding: 14px 30px; border-radius: 6px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s; box-shadow: 0 2px 10px var(--shadow);
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-pale); }
.hero-stats {
  display: flex; gap: 0; margin-top: 4.5rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 8px 40px var(--shadow); overflow: hidden; max-width: 480px;
  animation: fadeUp 0.6s 0.48s ease both;
}
.stat-item { flex: 1; padding: 22px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; }
.hero-right { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-right-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(247,243,236,0.35) 55%, transparent 100%),
              linear-gradient(0deg, var(--cream) 0%, transparent 18%);
}
.hero-price-card {
  position: absolute; right: 4%; bottom: 10%; z-index: 3;
  background: var(--white); border: 1px solid var(--border2);
  border-radius: 16px; padding: 20px 26px;
  box-shadow: 0 20px 60px var(--shadow-lg);
  animation: fadeUp 0.6s 0.5s ease both;
}
.price-badge { font-size: 0.66rem; color: var(--grey-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.price-big { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-unit { font-size: 0.8rem; color: var(--grey); margin-left: 4px; }
.price-tag { margin-top: 6px; font-size: 0.78rem; color: var(--grey); }
@keyframes fadeUp { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: none; } }

/* SECTION COMMON */
section { padding: 100px 5%; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.sec-eyebrow::before { content: ''; display: block; width: 30px; height: 1.5px; background: var(--gold); }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.12; color: var(--dark); margin-bottom: 0.8rem; }
.sec-title em { color: var(--gold); font-style: italic; }
.sec-sub { font-size: 0.95rem; color: var(--grey); line-height: 1.8; max-width: 520px; margin-bottom: 3rem; }

/* PAGE HERO (for inner pages) */
.page-hero {
  background: var(--cream); padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero .sec-eyebrow { display: flex; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 1rem; color: var(--grey); line-height: 1.8; max-width: 560px; }

/* PLOTS */
#plots { background: var(--white); }
.plots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.plot-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; }
.plot-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px var(--shadow-md); border-color: var(--gold-light); }
.plot-badge { position: absolute; top: 14px; left: 14px; background: var(--dark); color: var(--white); font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; }
.plot-img { height: 190px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; border-bottom: 1px solid var(--border); }
.plot-body { padding: 22px; }
.plot-type { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.plot-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.plot-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.2rem; }
.plot-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.4rem; }
.plot-tag { background: var(--cream); border: 1px solid var(--border); color: var(--dark2); font-size: 0.74rem; font-weight: 500; padding: 5px 12px; border-radius: 20px; }
.plot-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 1.4rem; }
.plot-price-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.plot-price-unit { font-size: 0.8rem; color: var(--grey); }
.plot-cta { display: block; text-align: center; background: var(--cream); border: 1.5px solid var(--border2); color: var(--dark); padding: 12px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.plot-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* AMENITIES */
#amenities { background: var(--cream); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.amenity-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px 18px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px var(--shadow); }
.amenity-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.amenity-name { font-weight: 600; font-size: 0.88rem; color: var(--dark); margin-bottom: 4px; }
.amenity-desc { font-size: 0.77rem; color: var(--grey); line-height: 1.6; }

/* PAYMENT */
#payment { background: var(--white); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 18px; padding: 36px 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px var(--shadow-md); border-color: var(--border2); }
.plan-card.featured { background: var(--dark); border-color: var(--dark); color: var(--white); box-shadow: 0 20px 50px rgba(26,26,26,0.2); }
.plan-star { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.66rem; font-weight: 700; letter-spacing: 2px; padding: 5px 18px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; }
.plan-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; line-height: 1; color: var(--border2); margin-bottom: 0.5rem; }
.plan-card.featured .plan-num { color: rgba(255,255,255,0.1); }
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.plan-tagline { font-size: 0.83rem; color: var(--grey-light); margin-bottom: 1.8rem; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.5); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; line-height: 1.5; color: var(--dark2); }
.plan-card.featured .plan-list li { color: rgba(255,255,255,0.85); }
.plan-list li .chk { color: var(--gold); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.plan-note { margin-top: 1.6rem; padding: 12px 14px; background: var(--cream); border-radius: 8px; font-size: 0.79rem; color: var(--grey); line-height: 1.55; }
.plan-card.featured .plan-note { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

/* ABOUT US */
#about { background: var(--white); }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.about-intro-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.2rem; line-height: 1.2; }
.about-intro-text h3 em { color: var(--gold); font-style: italic; }
.about-intro-text p { font-size: 0.95rem; color: var(--grey); line-height: 1.85; }
.about-vision-box { background: var(--cream); border: 1px solid var(--border2); border-radius: 20px; padding: 40px; }
.about-vision-box .label { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.about-vision-box p { font-size: 0.93rem; color: var(--dark2); line-height: 1.85; }
.about-mission { background: var(--cream); border-radius: 20px; padding: 44px; margin-bottom: 4rem; }
.about-mission h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 2rem; }
.mission-list { display: flex; flex-direction: column; gap: 1.4rem; }
.mission-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.mission-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.mission-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.mission-item p { font-size: 0.87rem; color: var(--grey); line-height: 1.7; }
.about-services h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow-md); border-color: var(--gold); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 0.83rem; color: var(--grey); line-height: 1.65; }

/* BLOG */
#blog, .blog-page { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 36px; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px var(--shadow-md); }
.blog-tag { display: inline-block; background: var(--gold-pale); color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 1.2rem; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; line-height: 1.3; }
.blog-card p { font-size: 0.87rem; color: var(--grey); line-height: 1.8; margin-bottom: 1.4rem; }
.blog-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); margin: 1.6rem 0 0.6rem; }
.blog-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.blog-list li { display: flex; gap: 10px; font-size: 0.85rem; color: var(--dark2); line-height: 1.6; }
.blog-list li::before { content: '◆'; color: var(--gold); font-size: 0.6rem; margin-top: 5px; flex-shrink: 0; }
.blog-highlight { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 14px 18px; margin: 1.2rem 0; font-size: 0.84rem; color: var(--dark2); line-height: 1.7; }

/* CONTACT */
#contact { background: var(--cream); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; box-shadow: 0 2px 10px var(--shadow); }
.contact-label { font-size: 0.7rem; color: var(--grey-light); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.contact-val { font-size: 0.93rem; font-weight: 500; color: var(--dark); }
.contact-val a { color: inherit; text-decoration: none; }
.contact-val a:hover { color: var(--gold); }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: box-shadow 0.2s, transform 0.15s; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.wa-btn:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.45); transform: translateY(-2px); }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 44px; box-shadow: 0 20px 60px var(--shadow); }
.form-head { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.form-sub-text { font-size: 0.83rem; color: var(--grey); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.8px; font-weight: 600; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 8px; color: var(--dark); padding: 12px 14px; font-size: 0.88rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-light); }
.form-group select option { background: white; color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-btn { width: 100%; background: var(--dark); color: var(--white); padding: 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 18px rgba(26,26,26,0.2); }
.form-btn:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,42,0.35); }

/* SUCCESS MESSAGE */
.form-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 16px 20px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; margin-top: 1rem; display: none; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.84rem; line-height: 1.75; margin-bottom: 1.6rem; color: rgba(255,255,255,0.45); }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.footer-socials a:hover { background: rgba(184,146,42,0.2); border-color: rgba(184,146,42,0.4); }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-hours-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-hour { display: flex; justify-content: space-between; font-size: 0.84rem; color: rgba(255,255,255,0.45); }
.footer-hour span:last-child { color: rgba(255,255,255,0.7); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--gold-light); text-decoration: none; }
.footer-pow { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-pow span { color: var(--gold-light); }

/* FLOATING WA */
.float-wa { position: fixed; bottom: 26px; right: 26px; z-index: 999; background: #25D366; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45); animation: wa-bob 3s infinite; transition: transform 0.2s; }
.float-wa:hover { animation: none; transform: scale(1.1); }
@keyframes wa-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* REVEAL */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-right, .hero-price-card { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-box { padding: 24px; }
  .hero-stats { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
