/* =========================================================
Chewa Pictures — Clean Final Public CSS
========================================================= */

/* =========================
1) ROOT / THEME
========================= */
:root {
  --bg: #0b0b0f;
  --bg2: #12121a;
  --bg3: #171922;

  --card: rgba(255, 255, 255, .04);
  --card2: rgba(255, 255, 255, .06);
  --card3: rgba(255, 255, 255, .10);

  --text: #f6f6f8;
  --muted: rgba(246, 246, 248, .72);
  --soft: rgba(246, 246, 248, .54);
  --border: rgba(255, 255, 255, .10);

  --gold: #d4af37;
  --gold2: #f5d67a;
  --gold3: #fff1b9;

  --success: #38c172;
  --danger: #ff5a5f;
  --info: #229ED9;

  --shadow: 0 22px 60px rgba(0, 0, 0, .42);
  --shadow2: 0 12px 34px rgba(0, 0, 0, .30);
  --shadow3: 0 8px 22px rgba(0, 0, 0, .18);

  --radius: 18px;
  --radius2: 26px;
  --radius3: 32px;
  --pill: 999px;

  --max: 1200px;
  --headerH: 84px;

  --fontBody: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontDisplay: "Cinzel", "Playfair Display", serif;
}

html[data-theme="light"] {
  --bg: #f7f7fb;
  --bg2: #ffffff;
  --bg3: #eef1f7;

  --card: rgba(0, 0, 0, .03);
  --card2: rgba(0, 0, 0, .05);
  --card3: rgba(0, 0, 0, .08);

  --text: #12121a;
  --muted: rgba(18, 18, 26, .70);
  --soft: rgba(18, 18, 26, .54);
  --border: rgba(0, 0, 0, .10);

  --shadow: 0 20px 55px rgba(15, 15, 30, .12);
  --shadow2: 0 10px 28px rgba(15, 15, 30, .10);
  --shadow3: 0 6px 18px rgba(15, 15, 30, .08);

  --gold: #a57a2d;
  --gold2: #d6b06d;
  --gold3: #f0d6a0;
}

/* =========================
2) RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fontBody);
  color: var(--text);
  background: #f6f6f6;
  overflow-x: hidden;
}

html[data-theme="dark"] body {
  background: #0f1014;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::selection {
  background: rgba(212, 175, 55, .25);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px;
  line-height: 1.12;
}

p {
  margin: 0 0 14px;
}

ul,
ol {
  margin: 0 0 14px;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* =========================
3) LAYOUT / UTILITIES
========================= */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.ico-red {
  color: #ff4b4b !important;
}

.ico-pink {
  color: #ff6bd6 !important;
}

.ico-gold {
  color: #ffd24d !important;
}

.ico-green {
  color: #25D366 !important;
}

.ico-blue {
  color: #229ED9 !important;
}

.section-title {
  text-align: center;
  margin: 0 0 10px;
  font-family: var(--fontDisplay);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.section-subtitle.left {
  text-align: left;
  margin-inline: 0;
}

.home-loading,
.home-empty,
.empty-state {
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  background: var(--card);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* =========================
4) SOCIAL BAR
========================= */
.socialbar {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.socialbar a {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  transition: .22s ease;
  flex-shrink: 0;
}

.socialbar a:hover {
  transform: translateY(-3px);
}

html[data-theme="dark"] .socialbar a {
  background: rgba(23, 27, 36, .96);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.socialbar i {
  font-size: 24px;
  line-height: 1;
}

.socialbar .fa-instagram {
  color: #e1306c !important;
}

.socialbar .fa-facebook-f {
  color: #1877f2 !important;
}

.socialbar .fa-tiktok {
  color: #25f4ee !important;
  text-shadow: 1px 0 #fe2c55;
}

.socialbar .fa-whatsapp {
  color: #25d366 !important;
}

.socialbar .fa-telegram {
  color: #229ed9 !important;
}

.socialbar .fa-youtube {
  color: #ff0000 !important;
}

@media (max-width:980px) {
  .socialbar {
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: calc(100vw - 16px);
    overflow-x: auto;
  }

  html[data-theme="dark"] .socialbar {
    background: rgba(16, 20, 29, .94);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .socialbar a {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
  }

  html[data-theme="dark"] .socialbar a {
    background: #1a2230 !important;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
  }
}

/* =========================
5) HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2400;
  min-height: var(--headerH);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

html[data-theme="dark"] .site-header {
  background: rgba(15, 16, 20, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.header-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  min-height: var(--headerH);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 260px;
}

.brand-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  position: relative;
  transition: .22s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
  background: rgba(212, 175, 55, .10);
}

.nav a.active {
  color: var(--text);
  font-weight: 600;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.header-actions .btn {
  white-space: nowrap;
}

@media (max-width:980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 64px;
  }

  .nav {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid !important;
  }
}

@media (max-width:560px) {
  .header-actions .btn-primary {
    display: none;
  }
}

/* =========================
6) BUTTONS
========================= */
.btn,
.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
  transition: .22s ease;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.btn:hover,
.btn-outline:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, .35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.btn i,
.btn-outline i,
.btn-secondary i {
  font-size: 15px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  color: #1a1206 !important;
  background: linear-gradient(135deg, #fff1b3 0%, #f5d67a 30%, #d4af37 70%, #b8891f 100%) !important;
  box-shadow:
    0 12px 28px rgba(212, 175, 55, .35),
    inset 0 1px 0 rgba(255, 255, 255, .75),
    inset 0 -10px 18px rgba(0, 0, 0, .18) !important;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .55) 50%, transparent 60%);
  transform: translateX(-60%) rotate(8deg);
  opacity: 0;
  transition: .35s ease;
}

.btn-primary:hover::before {
  opacity: .95;
  transform: translateX(55%) rotate(8deg);
}

html[data-theme="light"] .btn:not(.btn-primary),
html[data-theme="light"] .btn-outline,
html[data-theme="light"] .btn-secondary {
  background: #fff;
  color: #111 !important;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

/* =========================
7) MOBILE NAV
========================= */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  z-index: 2600;
}

.nav-toggle i {
  font-size: 20px;
  line-height: 1;
  color: var(--text) !important;
}

html[data-theme="light"] .nav-toggle {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

html[data-theme="light"] .nav-toggle i {
  color: #111 !important;
}

html[data-theme="dark"] .nav-toggle i {
  color: #fff !important;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

html[data-theme="dark"] .mobile-nav {
  background: rgba(15, 16, 20, .97);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
}

.mobile-nav.open {
  display: block !important;
}

.mobile-nav .container {
  padding: 12px 0 18px;
}

.mobile-nav a {
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, .10);
  color: var(--text);
}

/* =========================
8) HOME HERO
========================= */
.hero {
  padding: 24px 0 12px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22), 0 10px 30px rgba(0, 0, 0, .14);
  background: #000;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: none;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .16), rgba(0, 0, 0, .24));
}

html[data-theme="dark"] .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .24), rgba(0, 0, 0, .36));
}

html[data-theme="light"] .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .10), rgba(0, 0, 0, .12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, .30);
  background: rgba(0, 0, 0, .22);
  color: var(--gold2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  margin-bottom: 14px;
}

html[data-theme="light"] .intro-badge {
  background: rgba(255, 255, 255, .28);
}

.hero-title {
  margin: 0 0 14px;
  font-family: var(--fontDisplay);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}

.hero-title span {
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 24px;
  max-width: 720px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}

.hero-actions,
.section-actions,
.success-actions,
.package-actions,
.portfolio-card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
  transition: .2s ease;
}

.dot.active {
  width: 28px;
  background: var(--gold);
  border-color: transparent;
}

@media (max-width:980px) {
  .hero-card {
    min-height: 640px;
  }

  .hero-inner {
    min-height: 640px;
    padding: 34px 20px 78px;
  }
}

@media (max-width:680px) {
  .hero-card {
    min-height: 640px;
    border-radius: 24px;
  }

  .hero-inner {
    min-height: 640px;
    padding: 34px 18px 78px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* =========================
9) PORTFOLIO / CARDS
========================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:980px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.portfolio-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-content {
  padding: 18px;
  text-align: center;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
10) TESTIMONIALS (FIXED BIG)
========================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width:780px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: .25s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================
11) FOOTER (CENTERED FIXED)
========================= */
.site-footer {
  margin-top: 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width:780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 70px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  color: var(--muted);
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* divider line */
.footer-grid>div {
  position: relative;
}

.footer-grid>div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

@media (max-width:780px) {
  .footer-grid>div::after {
    display: none;
  }
}

/* footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--soft);
}

/* =========================
12) FORMS (BOOKING + CONTACT)
========================= */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, .25);
}

/* textarea bigger */
textarea.form-control {
  min-height: 120px;
}

/* form container */
.form-box {
  max-width: 600px;
  margin: auto;
  background: var(--card2);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

/* =========================
13) TO TOP BUTTON
========================= */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 999;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
14) SPACING FIX (IMPORTANT)
========================= */

/* prevent social bar overlap */
@media (max-width:980px) {
  body {
    padding-bottom: 90px;
  }
}

/* =========================
15) PAGE HERO
========================= */
.page-hero {
  padding: 28px 0 18px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: #000;
  min-height: 520px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18), 0 10px 30px rgba(0, 0, 0, .10);
}

html[data-theme="light"] .page-hero-card {
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .10), 0 8px 22px rgba(0, 0, 0, .06);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .20), rgba(0, 0, 0, .36));
}

html[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .18));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 940px;
  margin: auto;
  padding: 42px 28px;
}

.page-hero-title {
  margin: 0 0 14px;
  font-family: var(--fontDisplay);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .35), 0 2px 6px rgba(0, 0, 0, .22);
}

.page-hero-subtitle {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 4px 14px rgba(0, 0, 0, .28), 0 2px 6px rgba(0, 0, 0, .18);
}

@media (max-width:700px) {
  .page-hero-card {
    min-height: 420px;
    border-radius: 24px;
  }

  .page-hero-inner {
    min-height: 420px;
    padding: 28px 18px;
  }

  .page-hero-title {
    font-size: clamp(32px, 9vw, 54px);
  }

  .page-hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* =========================
16) HERO SLIDER / DOTS
========================= */
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .22s ease;
}

.dot.active {
  width: 28px;
  background: var(--gold);
  border-color: transparent;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
}

/* =========================
17) HOME CARDS / INTRO / CTA
========================= */
.intro-card,
.cta-banner {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow2);
  padding: 30px 22px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-family: var(--fontDisplay);
  margin-bottom: 12px;
}

.cta-banner p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.9;
}

/* =========================
18) BLOG / SERVICE / GENERIC CARDS
========================= */
.card {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow2);
  transition: .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, .35);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 22px 20px 24px;
  text-align: center;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  text-align: center;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

/* =========================
19) LIGHTBOX / IMAGE ZOOM
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  object-fit: contain;
}

/* =========================
20) HAMBURGER + MOBILE NAV VISIBILITY
========================= */
@media (max-width:980px) {
  .nav {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-primary {
    min-height: 42px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
  }
}

@media (min-width:981px) {
  .nav-toggle {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* =========================
21) RESPONSIVE GRID
========================= */
@media (max-width:1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:900px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================
22) MOBILE SPACING / SAFE LAYOUT
========================= */
@media (max-width:980px) {
  .site-footer {
    padding-bottom: 190px !important;
  }

  .to-top {
    bottom: 96px !important;
    right: 14px !important;
    z-index: 9998 !important;
  }
}

@media (max-width:680px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .section {
    padding: 46px 0;
  }

  .btn,
  .btn-outline,
  .btn-secondary {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .btn-primary {
    min-height: 44px;
    padding: 10px 16px !important;
  }

  .hero-actions,
  .section-actions,
  .success-actions,
  .package-actions,
  .portfolio-card-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .section-actions .btn,
  .section-actions .btn-primary {
    width: min(100%, 280px);
  }

  .socialbar {
    gap: 8px !important;
    padding: 8px 10px !important;
    max-width: calc(100vw - 14px) !important;
  }

  .socialbar a {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .to-top {
    width: 52px;
    height: 52px;
    bottom: 88px !important;
  }
}

/* =========================
23) THEME TOGGLE
========================= */
.theme-toggle {
  transition: all .35s ease;
}

.theme-toggle i {
  transition: all .4s ease;
}

.theme-toggle:hover {
  background: rgba(212, 175, 55, .12);
}

.theme-toggle:hover i {
  transform: rotate(25deg) scale(1.15);
}

html[data-theme="dark"] .theme-toggle i {
  color: #f5d67a;
  text-shadow:
    0 0 6px rgba(255, 220, 120, .6),
    0 0 14px rgba(255, 200, 80, .6),
    0 0 26px rgba(255, 180, 40, .5);
}

html[data-theme="light"] .theme-toggle i {
  color: #444;
  text-shadow: none;
}

/* =========================
24) HOMEPAGE TESTIMONIALS
========================= */
.home-testimonials-wrap {
  position: relative;
}

.home-testimonials-grid,
#homeTestimonialsGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch;
}

.home-testimonials-grid .testimonial-public-card,
#homeTestimonialsGrid .testimonial-public-card,
#homeTestimonialsGrid .card,
#homeTestimonialsGrid .home-testimonial {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-testimonials-grid .testimonial-public-card .card-pad,
#homeTestimonialsGrid .testimonial-public-card .card-pad,
#homeTestimonialsGrid .card .card-pad {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 22px 30px;
}

.home-testimonials-grid .testimonial-public-card .portfolio-card-media,
#homeTestimonialsGrid .testimonial-public-card .portfolio-card-media,
#homeTestimonialsGrid .card .portfolio-card-media {
  min-height: 460px;
  height: 460px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.home-testimonials-grid .portfolio-card-top,
#homeTestimonialsGrid .portfolio-card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.home-testimonials-grid .testimonial-public-author,
#homeTestimonialsGrid .testimonial-public-author {
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
  margin-bottom: 10px;
}

.home-testimonials-grid .testimonial-stars,
#homeTestimonialsGrid .testimonial-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 auto 12px;
  color: var(--gold2);
  font-size: 22px;
  letter-spacing: 2px;
}

.home-testimonials-grid .testimonial-public-message,
#homeTestimonialsGrid .testimonial-public-message,
#homeTestimonialsGrid .portfolio-card-description {
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width:900px) {

  .home-testimonials-grid,
  #homeTestimonialsGrid {
    grid-template-columns: 1fr !important;
  }

  .home-testimonials-grid .testimonial-public-card,
  #homeTestimonialsGrid .testimonial-public-card,
  #homeTestimonialsGrid .card,
  #homeTestimonialsGrid .home-testimonial {
    min-height: 660px;
  }

  .home-testimonials-grid .testimonial-public-card .portfolio-card-media,
  #homeTestimonialsGrid .testimonial-public-card .portfolio-card-media,
  #homeTestimonialsGrid .card .portfolio-card-media {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width:680px) {

  .home-testimonials-grid .testimonial-public-card,
  #homeTestimonialsGrid .testimonial-public-card,
  #homeTestimonialsGrid .card,
  #homeTestimonialsGrid .home-testimonial {
    min-height: 620px;
  }

  .home-testimonials-grid .testimonial-public-card .portfolio-card-media,
  #homeTestimonialsGrid .testimonial-public-card .portfolio-card-media,
  #homeTestimonialsGrid .card .portfolio-card-media {
    min-height: 320px;
    height: 320px;
  }

  .home-testimonials-grid .testimonial-public-message,
  #homeTestimonialsGrid .testimonial-public-message,
  #homeTestimonialsGrid .portfolio-card-description {
    font-size: 15px;
  }
}

/* =========================
25) TESTIMONIALS PAGE
========================= */
.testimonials-page-grid,
#testimonialsPublicGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonial-public-card {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-public-card .card-pad {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 22px 30px;
}

.testimonial-public-card .portfolio-card-media {
  min-height: 460px;
  height: 460px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.testimonial-public-card .portfolio-card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.testimonial-public-author {
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
  margin-bottom: 10px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 auto 12px;
  color: var(--gold2);
  font-size: 22px;
  letter-spacing: 2px;
}

.testimonial-public-message {
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width:900px) {

  .testimonials-page-grid,
  #testimonialsPublicGrid {
    grid-template-columns: 1fr;
  }

  .testimonial-public-card {
    min-height: 660px;
  }

  .testimonial-public-card .portfolio-card-media {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width:680px) {
  .testimonial-public-card {
    min-height: 620px;
  }

  .testimonial-public-card .portfolio-card-media {
    min-height: 320px;
    height: 320px;
  }

  .testimonial-public-message {
    font-size: 15px;
  }
}

/* =========================
26) CONTACT FORM / CONTACT PAGE
========================= */
.contact-luxury-shell {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 32px;
  align-items: stretch;
}

.contact-luxury-card {
  height: 100%;
}

.contact-luxury-right {
  display: grid;
  gap: 22px;
}

.contact-side-card {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow2);
}

.contact-side-card-dark {
  background: rgba(0, 0, 0, .30);
}

.contact-side-card-light {
  background: var(--card2);
}

.contact-luxury-form {
  display: grid;
  gap: 16px;
}

.contact-luxury-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-luxury-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-luxury-form input,
.contact-luxury-form textarea,
.contact-luxury-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  transition: all .25s ease;
}

html[data-theme="light"] .contact-luxury-form input,
html[data-theme="light"] .contact-luxury-form textarea,
html[data-theme="light"] .contact-luxury-form select {
  background: #fff;
}

.contact-luxury-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-luxury-form input:focus,
.contact-luxury-form textarea:focus,
.contact-luxury-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}

.contact-luxury-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-luxury-btn {
  min-width: 220px;
  justify-content: center;
}

.contact-social-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

@media (max-width:900px) {
  .contact-luxury-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width:700px) {
  .contact-luxury-row {
    grid-template-columns: 1fr;
  }

  .contact-luxury-btn {
    min-width: 100%;
  }
}

/* =========================
27) BOOKING FORM / BOOKING PAGE
========================= */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 34px;
  align-items: start;
}

.booking-card {
  height: 100%;
}

.booking-right {
  display: grid;
  gap: 20px;
}

.booking-info-card,
.booking-contact-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow2);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  transition: all .25s ease;
}

html[data-theme="light"] .booking-form input,
html[data-theme="light"] .booking-form textarea,
html[data-theme="light"] .booking-form select {
  background: #fff;
}

.booking-form textarea {
  min-height: 160px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}

.booking-button-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-button {
  min-width: 220px;
  justify-content: center;
}

@media (max-width:900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width:700px) {
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }

  .booking-button {
    min-width: 100%;
  }
}

/* =========================
28) FOOTER FINAL
========================= */
.site-footer {
  margin-top: 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.footer-grid>div {
  position: relative;
}

.footer-grid>div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 14px;
}

.footer-logo img,
.footer-logo {
  height: 70px;
  width: auto;
}

.footer-note {
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.85;
  color: var(--muted);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-links a {
  color: var(--muted);
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-contact div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width:780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid>div::after {
    display: none;
  }
}

/* =========================
29) FINAL SMALL DEVICE CLEANUP
========================= */
@media (max-width:980px) {
  body {
    padding-bottom: 0 !important;
  }

  .site-footer {
    padding-bottom: 190px !important;
  }

  .socialbar {
    bottom: 12px !important;
  }

  .to-top {
    bottom: 96px !important;
    right: 14px !important;
  }
}

@media (max-width:680px) {
  .site-footer {
    padding-bottom: 200px !important;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* =========================================
PORTFOLIO PAGE FIX
========================================= */

/* filters */
.portfolio-filters,
#portfolioFilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 28px;
}

.portfolio-filters button,
#portfolioFilters button,
.portfolio-filter-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  transition: .22s ease;
}

.portfolio-filters button:hover,
#portfolioFilters button:hover,
.portfolio-filter-btn:hover,
.portfolio-filters button.active,
#portfolioFilters button.active,
.portfolio-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(212, 175, 55, .20);
}

/* grid */
#portfolioPublicGrid,
.portfolio-public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* card */
.portfolio-public-card,
#portfolioPublicGrid .card {
  display: flex;
  flex-direction: column;
  min-height: 720px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

/* IMPORTANT: image area */
.portfolio-card-media,
.portfolio-public-image,
#portfolioPublicGrid .portfolio-card-media,
#portfolioPublicGrid .portfolio-public-image,
#portfolioPublicGrid .card>.portfolio-card-media {
  width: 100%;
  height: 460px;
  min-height: 460px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: block !important;
}

/* if actual img tag is used */
.portfolio-public-card img,
#portfolioPublicGrid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* content */
.portfolio-public-card .card-pad,
#portfolioPublicGrid .card-pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 24px 22px 28px;
}

.portfolio-public-card h3,
#portfolioPublicGrid h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 10px 0 10px;
  text-align: center;
}

.portfolio-public-card p,
#portfolioPublicGrid p {
  color: var(--muted);
  line-height: 1.85;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 12px;
}

.portfolio-meta-row,
.portfolio-card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.portfolio-featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.portfolio-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {

  #portfolioPublicGrid,
  .portfolio-public-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-public-card,
  #portfolioPublicGrid .card {
    min-height: 620px;
  }

  .portfolio-card-media,
  .portfolio-public-image,
  #portfolioPublicGrid .portfolio-card-media,
  #portfolioPublicGrid .portfolio-public-image,
  .portfolio-public-card img,
  #portfolioPublicGrid img {
    height: 340px;
    min-height: 340px;
  }
}

/* =========================================
ABOUT PAGE — FINAL CLEAN STYLE
========================================= */

/* HERO */
.page-hero-about .page-hero-card {
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
}

.page-hero-about .page-hero-inner {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* INTRO */
.intro-card {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* STORY GRID */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* STORY CARD */
.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* STORY IMAGE */
.about-story-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}

/* QUOTE */
.about-quote {
  margin-top: 18px;
  font-size: 18px;
  font-style: italic;
  color: var(--gold2);
  text-align: center;
}

/* MISSION & VISION */
.section .grid.grid-2 {
  gap: 28px;
}

/* CARD IMPROVEMENT */
.section .card {
  min-height: 300px;
  border-radius: 22px;
  transition: .3s ease;
}

.section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .4);
}

/* FEATURE ICON */
.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
  text-align: center;
}

/* TEXT CENTER */
.card-pad {
  text-align: center;
}

/* CTA */
.cta-banner {
  text-align: center;
  padding: 50px 24px;
  border-radius: 26px;
}

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.cta-banner p {
  max-width: 700px;
  margin: 10px auto 20px;
}

/* =========================================
MOBILE FIX
========================================= */
@media (max-width: 900px) {

  /* STACK GRID */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* IMAGE HEIGHT */
  .about-story-image {
    min-height: 280px;
  }

  /* HERO HEIGHT */
  .page-hero-about .page-hero-card {
    min-height: 320px;
  }

  /* CARDS */
  .section .card {
    min-height: auto;
  }

  /* TEXT */
  .section-title {
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  /* CTA */
  .cta-banner {
    padding: 40px 18px;
  }

}

/* =========================================
EXTRA POLISH (OPTIONAL BUT PREMIUM)
========================================= */

/* soft glow hover */
.card:hover .feature-icon i {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, .4));
}

/* smooth transition */
.card,
.about-story-image,
.cta-banner {
  transition: all .3s ease;
}

/* =========================================
BLOG PAGE FINAL FIX
========================================= */

/* blog filter buttons */
.blog-filters,
#blogFilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 28px;
}

.blog-filters button,
#blogFilters button,
.blog-filter-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  transition: .22s ease;
}

.blog-filters button:hover,
#blogFilters button:hover,
.blog-filter-btn:hover,
.blog-filters button.active,
#blogFilters button.active,
.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(212, 175, 55, .22);
}

/* blog grid */
#blogPublicGrid,
.blog-public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* blog card */
.blog-public-card,
#blogPublicGrid .card {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

/* image area */
.blog-card-media,
.blog-public-image,
#blogPublicGrid .blog-card-media,
#blogPublicGrid .blog-public-image {
  width: 100%;
  height: 360px;
  min-height: 360px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: block !important;
}

/* image tag fallback */
.blog-public-card img,
#blogPublicGrid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* content area */
.blog-public-card .card-pad,
#blogPublicGrid .card-pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 24px 22px 28px;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 700;
}

.blog-public-card h3,
#blogPublicGrid h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  margin: 8px 0 12px;
  text-align: left;
}

.blog-public-card p,
#blogPublicGrid p {
  color: var(--muted);
  line-height: 1.85;
  text-align: left;
  margin: 0 0 18px;
}

.blog-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 700;
  transition: .22s ease;
}

.blog-readmore:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
}

/* mobile */
@media (max-width: 900px) {

  #blogPublicGrid,
  .blog-public-grid {
    grid-template-columns: 1fr;
  }

  .blog-public-card,
  #blogPublicGrid .card {
    min-height: 620px;
  }

  .blog-card-media,
  .blog-public-image,
  #blogPublicGrid .blog-card-media,
  #blogPublicGrid .blog-public-image,
  .blog-public-card img,
  #blogPublicGrid img {
    height: 300px;
    min-height: 300px;
  }
}

/* =========================================
FAQ PAGE FINAL FIX
========================================= */

/* filter buttons */
.faq-filters,
#faqFilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.faq-filters button,
#faqFilters button,
.faq-filter-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  transition: .22s ease;
}

.faq-filters button:hover,
#faqFilters button:hover,
.faq-filter-btn:hover,
.faq-filters button.active,
#faqFilters button.active,
.faq-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(212, 175, 55, .22);
}

/* faq list */
#faqPublicList,
.faq-public-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

/* faq item */
.faq-item,
.faq-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow2);
}

/* faq question button */
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question-main {
  flex: 1;
  min-width: 0;
}

.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-question h3,
.faq-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.3;
  color: var(--text);
}

.faq-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold2);
  transition: .22s ease;
}

.faq-item.open .faq-icon,
.faq-card.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
}

/* faq answer */
.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.faq-item.open .faq-answer,
.faq-card.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

/* hover */
.faq-item:hover,
.faq-card:hover {
  border-color: rgba(212, 175, 55, .28);
  box-shadow: var(--shadow);
}

/* mobile */
@media (max-width: 680px) {
  .faq-question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 20px;
  }

  .faq-chip {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* =========================================
CONTACT + BOOKING PAGE PREMIUM UPGRADE
========================================= */

/* page shell */
.contact-luxury-shell,
.booking-wrapper {
  gap: 34px !important;
  align-items: stretch !important;
}

/* main cards */
.contact-luxury-card,
.booking-card,
.contact-side-card,
.booking-info-card,
.booking-contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .86)) !important;
  border: 1px solid rgba(0, 0, 0, .08) !important;
  box-shadow: 0 20px 55px rgba(20, 20, 40, .08) !important;
  border-radius: 26px !important;
  overflow: hidden;
}

html[data-theme="dark"] .contact-luxury-card,
html[data-theme="dark"] .booking-card,
html[data-theme="dark"] .contact-side-card,
html[data-theme="dark"] .booking-info-card,
html[data-theme="dark"] .booking-contact-card {
  background: linear-gradient(180deg, rgba(18, 18, 26, .96), rgba(24, 26, 36, .94)) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30) !important;
}

/* inner padding */
.contact-luxury-card .card-pad,
.booking-card .card-pad,
.contact-side-card,
.booking-info-card,
.booking-contact-card {
  padding: 28px 26px !important;
}

/* top headings */
.contact-luxury-card h2,
.booking-card h2,
.contact-side-card h3,
.booking-info-card h3,
.booking-contact-card h3 {
  margin: 0 0 10px !important;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.contact-luxury-card p,
.booking-card p,
.contact-side-card p,
.booking-info-card p,
.booking-contact-card p {
  color: var(--muted) !important;
  line-height: 1.8 !important;
}

/* small eyebrow text */
.contact-kicker,
.booking-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* form layout */
.contact-luxury-form,
.booking-form {
  display: grid;
  gap: 18px !important;
  margin-top: 18px;
}

.contact-luxury-row,
.booking-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px !important;
}

/* labels */
.contact-luxury-form label,
.booking-form label,
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* field wrappers */
.form-group {
  margin-bottom: 0 !important;
}

/* fields */
.contact-luxury-form input,
.contact-luxury-form textarea,
.contact-luxury-form select,
.booking-form input,
.booking-form textarea,
.booking-form select,
.form-control {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, .08) !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #111 !important;
  font-size: 15px !important;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

html[data-theme="dark"] .contact-luxury-form input,
html[data-theme="dark"] .contact-luxury-form textarea,
html[data-theme="dark"] .contact-luxury-form select,
html[data-theme="dark"] .booking-form input,
html[data-theme="dark"] .booking-form textarea,
html[data-theme="dark"] .booking-form select,
html[data-theme="dark"] .form-control {
  background: rgba(255, 255, 255, .05) !important;
  color: #f6f6f8 !important;
  border: 1px solid rgba(255, 255, 255, .10) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

/* placeholders */
.contact-luxury-form input::placeholder,
.contact-luxury-form textarea::placeholder,
.booking-form input::placeholder,
.booking-form textarea::placeholder,
.form-control::placeholder {
  color: rgba(120, 120, 130, .78);
}

html[data-theme="dark"] .contact-luxury-form input::placeholder,
html[data-theme="dark"] .contact-luxury-form textarea::placeholder,
html[data-theme="dark"] .booking-form input::placeholder,
html[data-theme="dark"] .booking-form textarea::placeholder,
html[data-theme="dark"] .form-control::placeholder {
  color: rgba(246, 246, 248, .46);
}

/* focus */
.contact-luxury-form input:focus,
.contact-luxury-form textarea:focus,
.contact-luxury-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus,
.form-control:focus {
  outline: none !important;
  border-color: rgba(212, 175, 55, .75) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .14) !important;
  transform: translateY(-1px);
}

/* textarea */
.contact-luxury-form textarea,
.booking-form textarea,
textarea.form-control {
  min-height: 180px !important;
  resize: vertical;
  padding-top: 16px !important;
}

/* select arrows cleaner */
.contact-luxury-form select,
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* submit button area */
.contact-luxury-actions,
.booking-button-wrap {
  margin-top: 10px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-luxury-btn,
.booking-button {
  min-width: 230px !important;
  min-height: 50px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

/* info card rows */
.contact-side-card .contact-info-list,
.booking-contact-card .contact-info-list,
.booking-info-card .booking-info-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-side-card .contact-info-item,
.booking-contact-card .contact-info-item,
.booking-info-card .booking-info-item,
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-side-card .contact-info-item i,
.booking-contact-card .contact-info-item i,
.booking-info-card .booking-info-item i {
  width: 22px;
  margin-top: 2px;
  color: var(--gold2);
}

/* social box */
.contact-social-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-social-list a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card2);
  transition: .22s ease;
  font-weight: 600;
}

.contact-social-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, .35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

/* subtle premium gradient top edge */
.contact-luxury-card,
.booking-card,
.contact-side-card,
.booking-info-card,
.booking-contact-card {
  position: relative;
}

.contact-luxury-card::before,
.booking-card::before,
.contact-side-card::before,
.booking-info-card::before,
.booking-contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
  opacity: .9;
}

/* helper / status text */
.form-status,
#contactStatus,
#bookingStatus {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
}

/* section specific titles if present */
.contact-section-title,
.booking-section-title {
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--fontDisplay);
  font-size: clamp(30px, 4vw, 44px);
}

/* mobile */
@media (max-width: 980px) {

  .contact-luxury-shell,
  .booking-wrapper {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-luxury-card .card-pad,
  .booking-card .card-pad,
  .contact-side-card,
  .booking-info-card,
  .booking-contact-card {
    padding: 24px 20px !important;
  }
}

@media (max-width: 700px) {

  .contact-luxury-row,
  .booking-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-luxury-btn,
  .booking-button {
    min-width: 100% !important;
  }

  .contact-luxury-form input,
  .contact-luxury-form textarea,
  .contact-luxury-form select,
  .booking-form input,
  .booking-form textarea,
  .booking-form select,
  .form-control {
    min-height: 52px;
    font-size: 14px !important;
  }

  .contact-luxury-form textarea,
  .booking-form textarea,
  textarea.form-control {
    min-height: 160px !important;
  }
}

/* =========================================
🔥 ULTRA LUXURY CONTACT + BOOKING FIX
========================================= */

/* layout spacing */
.contact-luxury-shell,
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px !important;
}

/* cards */
.contact-luxury-card,
.booking-card,
.contact-side-card,
.booking-info-card,
.booking-contact-card {
  border-radius: 28px !important;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all .35s ease;
}

/* hover effect (premium feel) */
.contact-luxury-card:hover,
.booking-card:hover,
.contact-side-card:hover,
.booking-info-card:hover,
.booking-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

/* stronger spacing */
.card-pad {
  padding: 36px !important;
}

/* headings */
.contact-luxury-head h2,
.booking-header h2 {
  font-size: 34px !important;
  margin-bottom: 8px;
}

.contact-luxury-head p,
.booking-header p {
  font-size: 15px;
  opacity: .75;
}

/* input fields */
.form-control,
.contact-luxury-form input,
.contact-luxury-form textarea,
.booking-form input,
.booking-form textarea,
.booking-form select {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 16px !important;
  transition: all .25s ease;
}

/* focus glow */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .2);
}

/* button upgrade */
.contact-luxury-btn,
.booking-button {
  border-radius: 30px !important;
  padding: 14px 28px !important;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, .25);
}

/* right side cards spacing */
.contact-side-card,
.booking-info-card,
.booking-contact-card {
  padding: 26px !important;
}

/* icons */
.contact-side-line i,
.booking-contact i {
  font-size: 18px;
  color: var(--gold);
}

/* booking steps */
.booking-step {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.booking-step span {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* social icons FIX */
.contact-social-list {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.contact-social-list a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  transition: .3s;
}

.contact-social-list a:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

/* mobile fix */
@media(max-width: 900px) {

  .contact-luxury-shell,
  .booking-wrapper {
    grid-template-columns: 1fr !important;
  }
}

.luxury-divider {
  height: 1px;
  width: 100%;
  margin: 60px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}