/* ===== PRECIOUS FOREVER BANQUET - GLOBAL STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon: #E8174A;
  --maroon-dark: #C4103C;
  --maroon-light: #F03060;
  --gold: #c9a84c;
  --cream: #faf7f4;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --border: #e8e0d8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text-dark); background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* TOP BAR */
.top-bar {
  background: var(--maroon-dark);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  letter-spacing: 0.04em;
}
.top-bar a { color: var(--gold); }
.top-bar span { opacity: 0.85; }

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; font-size: 1rem; font-weight: 600; color: var(--maroon-dark); }
.nav-logo-text span { font-size: 0.72rem; color: var(--text-light); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a.active, .nav-links a:hover { color: var(--maroon); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
}
.btn-book {
  background: var(--maroon) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-book:hover { background: var(--maroon-light) !important; }
.btn-book.active::after { display: none; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--maroon);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* PAGE HERO BANNER */
.page-hero {
  background: transparent;
  padding: 20px 80px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
.page-hero * { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
}
.page-hero p { color: #000; font-size: 0.95rem; max-width: 520px; margin: 0 auto; }

/* SECTIONS */
section { padding: 80px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.section-sub { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 48px; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--maroon-light);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none; cursor: pointer;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: #a33040; color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--maroon);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--maroon);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: var(--maroon); color: #fff; }

/* CARD PLACEHOLDER IMAGE */
.card-img-placeholder {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.placeholder-logo {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
}
.placeholder-logo small { display: block; color: rgba(201,168,76,0.6); font-size: 0.6rem; margin-top: 4px; letter-spacing: 0.08em; }

/* FORM STYLES */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); margin-bottom: 5px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--maroon); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%;
  background: var(--maroon);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--maroon-light); }
.form-note { font-size: 0.72rem; color: var(--text-light); margin-top: 8px; text-align: center; }

/* WHY CHOOSE SECTION */
.why-section {
  background: var(--maroon-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.why-left p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.why-features { display: flex; flex-direction: column; gap: 14px; }
.why-feature {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.5;
}
.why-feature strong { color: #fff; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author strong { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); margin-left: 6px; }

/* FOOTER */
footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 80px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand .tagline { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-brand address { font-style: normal; font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { font-size: 0.82rem; }
.footer-contact p { margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-contact a { color: var(--gold); }
.footer-contact strong { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* FLOATING BUTTONS */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.float-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-phone { background: var(--maroon); color: #fff; }
.float-wa { background: #25d366; color: #fff; }
.book-now-sticky {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--maroon);
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.book-now-sticky:hover { background: var(--maroon-light); }

/* SIDEBAR LAYOUT */
.sidebar-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding: 60px 80px;
}
.sidebar { position: sticky; top: 90px; }
.sidebar h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 16px; }
.sidebar ul { list-style: none; }
.sidebar ul li { margin-bottom: 8px; }
.sidebar ul li a {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 6px;
  display: block;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.sidebar ul li a:hover, .sidebar ul li a.active {
  background: var(--cream);
  color: var(--maroon);
  border-left-color: var(--maroon);
}

/* CONTENT ARTICLE */
.article-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 24px;
}
.article-hero-img {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--maroon);
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.article-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.video-placeholder {
  background: var(--maroon-dark);
  border-radius: 8px;
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-placeholder::after {
  content: '▶';
  font-size: 2rem;
  color: #fff;
  background: rgba(201,168,76,0.8);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder span {
  position: absolute;
  bottom: 8px; left: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  section { padding: 60px 40px; }
  .page-hero { padding: 50px 40px; }
  .why-section { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sidebar-layout { grid-template-columns: 1fr; padding: 40px; }
  .sidebar { position: static; }
}


@media (max-width: 768px) {
  .top-bar { flex-direction: column; gap: 4px; padding: 8px 20px; text-align: center; font-size: 0.75rem; }
  nav { padding: 0 20px; height: 72px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-bottom: 1px solid var(--border); width: 100%; font-size: 1rem; white-space: normal; }
  .nav-links a.active::after { display: none; }
  .btn-book { margin: 12px 20px 0; width: calc(100% - 40px); text-align: center; display: block; }
  section { padding: 50px 20px; }
  .page-hero { padding: 40px 20px; }
  .page-hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 20px; }
  .sidebar-layout { padding: 30px 20px; }
  .article-videos { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}