/* =========================================================
   SEATTLE GARDEN — PREMIUM BOUTIQUE THEME LAYER
   Adds premium styling on top of the existing Bootstrap/theme
   CSS without altering core classes. Brand colors preserved:
   Green  #3d8f79 / #3d8f7a   Gold #cfaa66 / #d3ad69
   ========================================================= */

:root {
  --sg-green: #3d8f79;
  --sg-green-dark: #2c6d5b;
  --sg-gold: #cfaa66;
  --sg-gold-dark: #b8935091;
  --sg-cream: #faf7f0;
  --sg-ink: #22291f;
  --sg-white: #ffffff;
  --sg-radius: 14px;
  --sg-shadow: 0 15px 40px rgba(15, 40, 30, 0.12);
  --sg-shadow-hover: 0 22px 55px rgba(15, 40, 30, 0.20);
  --sg-font-heading: "Cormorant Garamond", "Poppins", serif;
}

/* ---------- Eyebrow / kicker labels ---------- */
.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sg-green);
  margin-bottom: 14px;
}
.sg-eyebrow::before,
.sg-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sg-gold);
  display: inline-block;
}
.sg-eyebrow.center { justify-content: center; }

.sg-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--sg-ink);
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.sg-section-sub {
  color: #6b7268;
  font-size: 15.5px;
  line-height: 28px;
  max-width: 720px;
}
.sg-center { text-align: center; margin-left: auto; margin-right: auto; }
.sg-section-head { margin-bottom: 50px; }

/* ---------- Buttons ---------- */
.sg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 3px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.sg-btn-primary {
  background: var(--sg-green);
  color: #fff !important;
  border-color: var(--sg-green);
}
.sg-btn-primary:hover {
  background: var(--sg-green-dark);
  border-color: var(--sg-green-dark);
  color: #fff !important;
  transform: translateY(-2px);
}
.sg-btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
}
.sg-btn-outline:hover {
  background: #fff;
  color: var(--sg-green) !important;
  border-color: #fff;
  transform: translateY(-2px);
}
.sg-btn-outline-dark {
  background: transparent;
  color: var(--sg-green) !important;
  border-color: var(--sg-green);
}
.sg-btn-outline-dark:hover {
  background: var(--sg-green);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ---------- Hero overlay on existing carousel ---------- */
.slider-section { position: relative; }
.sg-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 25, 18, 0.62) 0%, rgba(10, 25, 18, 0.32) 48%, rgba(10, 25, 18, 0.05) 80%);
}
.sg-hero-overlay .container { pointer-events: auto; }
.sg-hero-content { max-width: 640px; color: #fff; margin-top:2rem;}
.sg-hero-content .sg-eyebrow { color: #f0e2c4; }
.sg-hero-content .sg-eyebrow::before,
.sg-hero-content .sg-eyebrow::after { background: #f0e2c4; }
.sg-hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.sg-hero-content p {
  font-size: 16px;
  line-height: 28px;
  color: #f1f3ef;
  margin-bottom: 32px;
  max-width: 560px;
}
.sg-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 991px) {
  .sg-hero-content h1 { font-size: 34px; }
  .sg-hero-overlay { background: linear-gradient(180deg, rgba(10,25,18,0.35) 0%, rgba(10,25,18,0.72) 85%); align-items: flex-end; padding-bottom: 40px; }
  .sg-hero-content { max-width: 100%; }
}
@media (max-width: 575px) {
  .sg-hero-content h1 { font-size: 26px; }
  .sg-hero-content p { font-size: 14px; line-height: 24px; }
  .sg-btn { padding: 12px 22px; font-size: 12px; }
}

/* ---------- Announcement bar ---------- */
.latest-newsbg { border-bottom: none !important; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }

/* ---------- Premium split (content + image) ---------- */
.sg-split-section { padding: 90px 0; background: #fff; }
.sg-split-img-wrap { position: relative; }
.sg-split-img-wrap img {
  border-radius: var(--sg-radius);
  box-shadow: var(--sg-shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sg-split-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--sg-green);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: var(--sg-shadow);
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1.1;
}
.sg-split-badge strong { display: block; font-size: 26px; }
.sg-split-badge span { font-family: "Poppins", sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 767px) {
  .sg-split-section { padding: 55px 0; }
  .sg-split-badge { right: 8px; bottom: -16px; padding: 12px 16px; }
  .sg-split-badge strong { font-size: 20px; }
}

/* ---------- Amenities / facilities premium cards ---------- */
.facilities_area { background: var(--sg-cream) !important; padding: 90px 0; }
.facilities_area .title_w { color: var(--sg-ink) !important; }
.facilities_item {
  background: #fff !important;
  border: 1px solid #ece4d3 !important;
  border-radius: var(--sg-radius);
  padding: 34px 18px 26px !important;
  text-align: center;
  box-shadow: 0 8px 22px rgba(20,30,20,0.05);
  transition: all 0.35s ease;
  height: 100%;
}
.facilities_item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sg-shadow-hover);
  border-color: var(--sg-gold) !important;
}
.facilities_item .sec_h4 {
  color: var(--sg-ink) !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.facilities_item .sec_h4 i {
  display: block;
  font-size: 30px;
  color: var(--sg-gold);
  margin-bottom: 14px;
}

/* ---------- Restaurant / dining section ---------- */
.sg-dining-section { padding: 90px 0; background: var(--sg-green); position: relative; overflow: hidden; }
.sg-dining-section .sg-eyebrow,
.sg-dining-section .sg-eyebrow::before,
.sg-dining-section .sg-eyebrow::after { color: #e9dcc0; background: #e9dcc0; }
.sg-dining-section h2 { color: #fff; }
.sg-dining-section p.sg-section-sub { color: #dfeee9; }
.sg-dining-img-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 100%; min-height: 380px; }
.sg-dining-img-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--sg-radius); box-shadow: var(--sg-shadow); }
.sg-dining-img-grid .tall { grid-row: 1 / 3; }
@media (max-width: 767px) {
  .sg-dining-section { padding: 55px 0; }
  .sg-dining-img-grid { min-height: 260px; margin-top: 30px; }
}

/* ---------- Gallery preview strip ---------- */
.sg-gallery-section { padding: 90px 0; }
.sg-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sg-gallery-grid a { display: block; overflow: hidden; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); aspect-ratio: 1/1; }
.sg-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sg-gallery-grid a:hover img { transform: scale(1.08); }
@media (max-width: 767px) { .sg-gallery-grid { grid-template-columns: repeat(2, 1fr); } .sg-gallery-section{padding:55px 0;} }

/* ---------- Nearby attractions cards ---------- */
.sg-nearby-section { padding: 90px 0; background: var(--sg-cream); }
.sg-nearby-card {
  background: #fff;
  border-radius: var(--sg-radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20,30,20,0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: block;
  color: inherit;
}
.sg-nearby-card:hover { transform: translateY(-6px); box-shadow: var(--sg-shadow-hover); }
.sg-nearby-card .sg-nearby-img { height: 190px; overflow: hidden; }
.sg-nearby-card .sg-nearby-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sg-nearby-card:hover .sg-nearby-img img { transform: scale(1.08); }
.sg-nearby-card .sg-nearby-body { padding: 18px 20px; }
.sg-nearby-card h5 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 19px; color: var(--sg-ink); margin-bottom: 6px; }
.sg-nearby-card .sg-nearby-dist { color: var(--sg-green); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 767px) { .sg-nearby-section { padding: 55px 0; } }

/* ---------- Final CTA banner ---------- */
.sg-cta-banner {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(rgba(10,25,18,0.72), rgba(10,25,18,0.72)), url('../image/new/sg.jpg') center/cover no-repeat;
  text-align: center;
}
.sg-cta-banner h2 { color: #fff; font-family: "Poppins", sans-serif; font-size: 36px; margin-bottom: 14px; }
.sg-cta-banner p { color: #e9ede8; font-size: 15.5px; margin-bottom: 30px; }
@media (max-width: 767px) { .sg-cta-banner { padding: 55px 0; } .sg-cta-banner h2 { font-size: 26px; } }

/* =========================================================
   FAQ PAGE
   ========================================================= */
.sg-faq-hero {
  position: relative;
  padding: 150px 0 90px;
  background: linear-gradient(rgba(10,25,18,0.68), rgba(10,25,18,0.68)), url('../image/slider_10.jpg') center/cover no-repeat;
  text-align: center;
}
.sg-faq-hero h1 { color: #fff; font-family: "Poppins", sans-serif; font-size: 44px; margin-bottom: 14px; }
.sg-faq-hero p { color: #eef1ec; font-size: 16px; max-width: 560px; margin: 0 auto; }
@media (max-width: 767px) { .sg-faq-hero { padding: 120px 0 60px; } .sg-faq-hero h1 { font-size: 30px; } }

.sg-faq-section { padding: 90px 0 100px; background: #fff; }

.sg-faq-item {
  border: 1px solid #ece4d3;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sg-faq-item:hover { border-color: var(--sg-gold); box-shadow: 0 8px 22px rgba(20,30,20,0.06); }

.sg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--sg-ink);
}
.sg-faq-question .sg-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sg-cream);
  color: var(--sg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.sg-faq-question .sg-faq-icon i { transition: transform 0.3s ease; }
.sg-faq-item.active .sg-faq-question .sg-faq-icon { background: var(--sg-green); color: #fff; }
.sg-faq-item.active .sg-faq-question .sg-faq-icon i { transform: rotate(180deg); }

.sg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sg-faq-answer-inner {
  padding: 0 24px 22px 24px;
  color: #6b7268;
  font-size: 14.5px;
  line-height: 26px;
}
.sg-faq-item.active .sg-faq-answer { max-height: 600px; }

@media (max-width: 767px) {
  .sg-faq-section { padding: 55px 0 60px; }
  .sg-faq-question { padding: 16px 18px; font-size: 14.5px; }
  .sg-faq-answer-inner { padding: 0 18px 18px 18px; }
}

/* =========================================================
   PREMIUM FOOTER
   ========================================================= */
.sg-footer {
  background: #3d8f79 !important;
  padding: 0;
  color: #cfd8d2;
}
.sg-footer a { color: #fff; text-decoration: none; }
.sg-footer-top { padding: 80px 0 50px; }
.sg-footer-brand img { max-width: 190px; margin-bottom: 18px; }
.sg-footer-brand p { color: #a9b5ad; font-size: 14px; line-height: 25px; margin-bottom: 22px; }
.sg-footer-social { display: flex; gap: 12px; }
.sg-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.sg-footer-social a img { width: 16px; height: 16px; filter: grayscale(1) brightness(2); }
.sg-footer-social a:hover { background: var(--sg-gold); border-color: var(--sg-gold); transform: translateY(-3px); }

.sg-footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 14px;
}
.sg-footer-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--sg-gold);
}
.sg-footer-links { list-style: none; padding: 0; margin: 0; }
.sg-footer-links li { margin-bottom: 13px; }
.sg-footer-links a { font-size: 14px; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px; }
.sg-footer-links a::before { content: "\f105"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--sg-gold); font-size: 11px; }
.sg-footer-links a:hover { color: #fff; padding-left: 4px; }

.sg-footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.sg-footer-contact-item i { color: var(--sg-gold); font-size: 15px; margin-top: 4px; width: 18px; text-align: center; }
.sg-footer-contact-item a, .sg-footer-contact-item span { font-size: 14px; line-height: 22px; color: #cfd8d2; }
.sg-footer-contact-item a:hover { color: #fff; }

.sg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
  color: #3d8f79;
}
.sg-footer-bottom a { color: #93a099; }
.sg-footer-bottom a:hover { color: var(--sg-gold); }

@media (max-width: 767px) {
  .sg-footer-top { padding: 55px 0 30px; text-align: center; }
  .sg-footer-social { justify-content: center; }
  .sg-footer-heading::after { left: 50%; transform: translateX(-50%); }
  .sg-footer-contact-item { justify-content: center; text-align: left; }
}

/* Feedback tab z-index safety with new footer */
#feedback1 { z-index: 999; }
