/* =============================================
   FELIMAR KITCHENS — SHARED STYLESHEET
   Used by all service, location, and blog pages
   Requires: Google Fonts (Playfair Display + Inter)
             Font Awesome 6.5
============================================= */

/* ---- Variables ---- */
:root {
  --gold:         #C9A84C;
  --gold-dark:    #A8872E;
  --gold-light:   #E2C47A;
  --gold-bg:      #FBF6EC;
  --text-dark:    #1A1A1A;
  --text-mid:     #444444;
  --text-light:   #888888;
  --bg-white:     #FFFFFF;
  --bg-light:     #F7F5F1;
  --bg-card:      #FFFFFF;
  --border:       #E8E6E0;
  --dark:         #0D0D0D;
  --font-head:    'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
  --radius:       12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-white); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--text-dark);
}
.section-title span { color: var(--gold-dark); }
.section-subtitle {
  font-size: 1rem; color: var(--text-light);
  margin-top: 14px; max-width: 560px; line-height: 1.7;
}
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px; margin: 14px auto 0;
}
.divider.left { margin: 14px 0 0; }

/* ---- Animations ---- */
/* fade-in: hidden only when JS marks the element as observer-ready */
.fade-in.observed { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes ring {
  0%,90%,100% { transform: rotate(0deg); }
  92%          { transform: rotate(-15deg); }
  96%          { transform: rotate(15deg); }
}

/* =============================================
   SITE HEADER
============================================= */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* Topbar */
#topbar {
  background: #1A1A1A; overflow: hidden; max-height: 46px;
  transition: max-height 0.38s ease, opacity 0.3s ease;
}
#topbar.hidden { max-height: 0; opacity: 0; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 46px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.topbar-left { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.09em; text-transform: uppercase; }
.topbar-left i { color: var(--gold); font-size: 0.8rem; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.14); }
.topbar-call { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity var(--transition); }
.topbar-call:hover { opacity: 0.82; }
.topbar-call .call-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: #1A1A1A; flex-shrink: 0; animation: ring 3s ease infinite;
}
.topbar-call .call-text { display: flex; flex-direction: column; line-height: 1.1; }
.topbar-call .call-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.topbar-call .call-number { font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.topbar-wa { display: inline-flex; align-items: center; gap: 7px; color: #25D366; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.topbar-wa i { font-size: 1.05rem; }
.topbar-wa:hover { color: #1ebe59; }

/* Navbar */
#navbar {
  padding: 10px 0; background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-mid); transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold) !important; color: #1A1A1A !important;
  padding: 9px 20px !important; border-radius: 6px;
  font-weight: 700 !important; border: none;
  font-family: var(--font-body); font-size: inherit;
  cursor: pointer; transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 25px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--bg-white);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button.mobile-cta-btn {
  font-family: var(--font-head); font-size: 1.6rem; color: var(--text-dark);
  transition: color var(--transition); background: none; border: none;
  cursor: pointer; text-align: center; padding: 0; font-weight: 400;
}
.mobile-nav a:hover, .mobile-nav button.mobile-cta-btn:hover { color: var(--gold-dark); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; color: var(--text-dark); cursor: pointer; background: none; border: none; line-height: 1;
}

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #1A1A1A;
  padding: 14px 28px; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  padding: 13px 28px; border-radius: 6px;
  border: 2px solid var(--gold);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { background: var(--gold); color: #1A1A1A; transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #1A1A1A;
  padding: 14px 28px; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-white:hover { background: var(--gold-bg); transform: translateY(-2px); }

/* =============================================
   FORMS
============================================= */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark);
  background: #fff; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 15px; border: none; border-radius: 8px;
  background: var(--gold); color: #1A1A1A;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: var(--text-light); margin-bottom: 18px;
}
.form-trust i { color: var(--gold); }
.form-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 0; padding: 60px 30px; text-align: center;
  animation: fadeInSuccess 0.5s ease;
}
@keyframes fadeInSuccess {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success i {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.form-success h4 { font-family: var(--font-head); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 10px; }
.form-success p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; max-width: 340px; }

/* =============================================
   MODAL
============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #fff; border-radius: var(--radius);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; padding: 36px 32px; position: relative;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); opacity: 1; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-mid); font-size: 1.1rem; font-weight: 300;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--gold-bg); color: var(--gold-dark); border-color: var(--gold); }
.modal-header { margin-bottom: 22px; text-align: center; }
.modal-header .section-label { margin-bottom: 6px; }
.modal-header h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--text-dark); margin-bottom: 8px; }
.modal-header .form-trust { justify-content: center; }
.modal-header .modal-divider {
  width: 48px; height: 3px; margin: 12px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px;
}

/* Modal form overrides */
.modal-box .form-group { margin-bottom: 16px; }
.modal-box .form-group input,
.modal-box .form-group select,
.modal-box .form-group textarea {
  padding: 13px 16px; height: auto; min-height: 48px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.modal-box .form-group input:focus,
.modal-box .form-group select:focus,
.modal-box .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.modal-box .form-group textarea { min-height: 100px; resize: vertical; }
.modal-box .form-group select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.modal-box .form-row { gap: 16px; }
.modal-box .form-submit {
  width: 100%; padding: 15px 24px; border: none; border-radius: 8px;
  background: var(--gold); color: #1A1A1A;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 6px;
}
.modal-box .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Modal success state */
.modal-box .form-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 0; padding: 60px 30px; text-align: center;
  animation: fadeInSuccess 0.5s ease;
}
.modal-box .form-success i {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.modal-box .form-success h4 { font-family: var(--font-head); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 10px; }
.modal-box .form-success p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; max-width: 340px; }

/* =============================================
   FLOATING BUTTONS
============================================= */
.floating-btns { position: fixed; bottom: 28px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition); position: relative;
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); color: #1A1A1A; }
.float-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: #1A1A1A; color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 5px 10px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }


/* =============================================
   FOOTER
============================================= */
footer { background: #0D0D0D; color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.logo-name { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: #fff; }
.logo-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin: 4px 0 18px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 11px; }
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 24px;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 148px 0 64px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-top: 10px;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 600px; margin-top: 14px; line-height: 1.7;
}
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero-stats { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.page-hero-stat .stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.page-hero-stat .stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs i { font-size: 0.55rem; }

/* =============================================
   CONTENT SECTIONS
============================================= */
.content-section { padding: 80px 0; }
.content-section.bg-light { background: var(--bg-light); }
.content-section.bg-dark { background: #0D0D0D; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-subtitle { margin: 14px auto 0; }

/* 3-col grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Feature Card */
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold-dark); margin-bottom: 16px;
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.process-step { padding: 32px 24px; position: relative; }
.process-step:not(:last-child)::after {
  content: none;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.process-step p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

/* =============================================
   FAQ
============================================= */
.faq-section { padding: 80px 0; background: var(--bg-light); }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
  transition: color var(--transition); background: none; border: none;
  width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i { color: var(--gold); font-size: 0.85rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
  padding: 0 24px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* =============================================
   REVIEWS STRIP
============================================= */
.reviews-strip { padding: 80px 0; }
.review-mini {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.review-mini-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; }
.review-mini-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-mini-author { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.review-mini-city { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #141414 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--gold-light); }
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.6); margin: 14px auto 0; }
.cta-section-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* =============================================
   BLOG
============================================= */
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-head); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.76rem; color: var(--text-light); display: flex; gap: 12px; align-items: center; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); margin-top: 14px; transition: gap var(--transition); }
.blog-card-link:hover { gap: 10px; }

/* Blog Post Content */
.blog-post { padding: 60px 0 80px; }
.blog-post-content {
  max-width: 760px; margin: 0 auto;
  font-size: 1rem; line-height: 1.8; color: var(--text-mid);
}
.blog-post-content h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--text-dark); margin: 40px 0 16px; }
.blog-post-content h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--text-dark); margin: 28px 0 12px; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-post-content ul { list-style: disc; }
.blog-post-content ol { list-style: decimal; }
.blog-post-content li { margin-bottom: 8px; color: var(--text-mid); }
.blog-post-content strong { color: var(--text-dark); font-weight: 700; }
.blog-post-content a { color: var(--gold-dark); }
.blog-post-content a:hover { text-decoration: underline; }
.blog-post-content blockquote {
  border-left: 4px solid var(--gold); padding: 16px 24px;
  background: var(--gold-bg); border-radius: 0 8px 8px 0;
  margin: 28px 0; font-style: italic; color: var(--text-mid);
}
.blog-post-content .highlight-box {
  background: var(--gold-bg); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 24px; margin: 28px 0;
}
.blog-post-content .highlight-box h3 { margin-top: 0; }

/* Blog post header */
.blog-post-header { max-width: 760px; margin: 0 auto 40px; }
.blog-post-header .blog-card-tag { margin-bottom: 12px; }
.blog-post-header h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.blog-post-header .post-meta { font-size: 0.84rem; color: var(--text-light); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.blog-post-header .post-meta span { display: flex; align-items: center; gap: 6px; }
.blog-post-header .post-meta i { color: var(--gold); }

/* =============================================
   LOCATION PAGE SPECIFICS
============================================= */
.city-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 28px; }
.city-fact { background: var(--gold-bg); border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius); padding: 20px; text-align: center; }
.city-fact-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold-dark); }
.city-fact-lbl { font-size: 0.78rem; color: var(--text-mid); margin-top: 4px; }

.nearby-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.nearby-city {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.82rem; color: var(--text-mid); font-weight: 500;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .topbar-left, .topbar-wa, .topbar-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .content-section { padding: 60px 0; }
  .faq-section { padding: 60px 0; }
  .reviews-strip { padding: 60px 0; }
  .cta-section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 130px 0 50px; }
  .page-hero-stats { gap: 24px; }
  .modal-box { padding: 24px 20px; }
}
