:root {
  --primary: #122c78;
  --primary-dark: #0d1e54;
  --accent: #c8a45c;
  --text: #1f2433;
  --muted: #5f6678;
  --surface: #ffffff;
  --surface-soft: #f5f7fc;
  --border: #e6e9f3;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(18, 44, 120, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
}

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

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

.container {
  width: min(1120px, 90%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(18, 44, 120, 0.08);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 180px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.98rem;
  color: #2f3750;
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  background: #edf2ff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.nav-book {
  padding: 10px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
  background: linear-gradient(135deg, #c8a45c, #b48b42);
  box-shadow: 0 10px 22px rgba(200, 164, 92, 0.35);
}

.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  position: relative;
  background: url("../images/hero-light.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48));
}

.hero-content {
  position: relative;
  color: var(--primary);
  max-width: 720px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.lead {
  color: #244085;
  max-width: 640px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

p {
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.trust-strip {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  text-align: center;
  padding: 14px 10px;
}

.trust-item h3 {
  color: var(--primary);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.9rem;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.align-center {
  align-items: center;
}

.image-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  margin-top: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(18, 44, 120, 0.15);
}

.card p {
  margin-top: 6px;
}

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.vm-card img {
  filter: saturate(0.9) contrast(1.02);
}

.feature-body {
  padding: 18px 20px 22px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d6deef;
  background: #fff;
  color: #2c3d72;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(18, 44, 120, 0.07);
}

.testimonial-card .quote {
  font-style: italic;
  color: #3a4668;
  margin-bottom: 14px;
}

.testimonial-role {
  margin-top: 2px;
  color: #6a748e;
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid #d2dbee;
  background: #fff;
  color: #27407a;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.filter-btn-video {
  border-color: var(--accent);
  color: #8a6a28;
  background: #fff8ea;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(200, 164, 92, 0.22);
}

.filter-btn-video:hover,
.filter-btn-video.active {
  background: linear-gradient(135deg, #c8a45c, #b48b42);
  border-color: #b48b42;
  color: #fff;
  box-shadow: 0 10px 22px rgba(200, 164, 92, 0.4);
}

.gallery-subtoolbar {
  margin: -6px 0 26px;
  text-align: center;
}

.party-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 22px;
}

.party-filter-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.party-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.party-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.party-chip:hover {
  border-color: var(--accent);
}

.party-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-subtoolbar-label {
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-albums {
  margin-bottom: 28px;
}

.event-albums-head {
  text-align: center;
  margin-bottom: 18px;
}

.event-albums-hint {
  margin: 0;
  font-size: 0.92rem;
}

.event-album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-album-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(18, 44, 120, 0.15);
}

.event-album-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.35);
}

.event-album-cover {
  position: relative;
  display: block;
}

.event-album-cover img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.event-album-body {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.event-album-body strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.event-album-body span {
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery-event-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.gallery-event-bar h3 {
  margin: 0;
  color: var(--primary);
}

.gallery-subfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.subfilter-btn {
  background: #f5f7fc;
  border-color: #cfd8ef;
  color: #35508f;
  font-size: 0.86rem;
  padding: 7px 14px;
}

.subfilter-btn.active,
.subfilter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.subcategory-label {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
}

@media (max-width: 950px) {
  .event-album-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .event-album-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-enhanced .gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-enhanced .gallery-item img {
  height: 290px;
}

.gallery-enhanced .gallery-item.is-video img {
  filter: brightness(0.85);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(18, 44, 120, 0.25);
  pointer-events: none;
  z-index: 2;
}

.video-label {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(200, 164, 92, 0.95);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(to top, rgba(12, 25, 71, 0.8), transparent);
}

.gallery-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d2dbee;
  background: #fff;
  color: #27407a;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-page-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-page-ellipsis {
  color: #6a748e;
  padding: 0 4px;
}

.gallery-page-meta {
  width: 100%;
  text-align: center;
  color: #425084;
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 4px;
}

.gallery-pagination #prevPageBtn:disabled,
.gallery-pagination #nextPageBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 40, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  z-index: 2;
  width: min(1000px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-media {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img,
#lightboxImage {
  width: 100%;
  max-width: min(1000px, 90vw);
  max-height: 76vh;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #000;
}

.lightbox-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-video-wrap iframe,
.lightbox-video-wrap video,
#lightboxVideo,
#lightboxHtmlVideo {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}

.lightbox.is-video .lightbox-stage {
  width: min(1100px, 94vw);
}

#lightboxCaption {
  margin: 0;
  color: #dce4ff;
  text-align: center;
  font-size: 0.95rem;
  max-width: 90%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 5;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.page-hero {
  padding: 84px 0 52px;
  background: linear-gradient(130deg, #f6f8ff 0%, #f3f7ff 50%, #fff 100%);
}

.page-hero p {
  max-width: 700px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.service-hero-content h2 {
  margin-bottom: 10px;
}

.service-hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.service-top-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-chip {
  background: #ffffff;
  border: 1px solid #d6deef;
  border-radius: 999px;
  padding: 8px 14px;
  color: #2c3d72;
  font-size: 0.84rem;
  box-shadow: 0 8px 16px rgba(18, 44, 120, 0.08);
}

.service-hero-visual {
  position: relative;
}

.service-hero-main-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d7dfef;
  box-shadow: var(--shadow);
}

.service-hero-subgrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-hero-subgrid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d7dfef;
  box-shadow: 0 10px 22px rgba(18, 44, 120, 0.1);
}

.hero-floating-badge {
  position: absolute;
  left: 16px;
  bottom: 24px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7dfef;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 12px 24px rgba(18, 44, 120, 0.15);
}

.hero-floating-badge strong {
  display: block;
  color: var(--primary);
  font-size: 0.92rem;
}

.hero-floating-badge span {
  display: block;
  margin-top: 4px;
  color: #52608a;
  font-size: 0.82rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-list .card {
  height: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf0ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  background: #fff;
}

.stat h3 {
  color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

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

.contact-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d8dfef;
  margin: 14px 0 16px;
  background: #eef2fb;
}

.contact-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.contact-list strong {
  color: var(--primary);
}

.contact-social {
  margin-top: 18px;
}

.contact-social-label {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-social .social-links {
  margin-top: 0;
}

.contact-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

form {
  display: grid;
  gap: 14px;
}

.form-required-note {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.required {
  color: #c0392b;
  font-weight: 700;
}

#formMessage {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--primary);
}

label {
  font-size: 0.92rem;
  color: #363f58;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d8ddeb;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero .btn-ghost {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.home-carousel-section {
  background:
    radial-gradient(circle at top right, rgba(200, 164, 92, 0.18), transparent 35%),
    linear-gradient(135deg, #0d1e54 0%, #122c78 55%, #1a3a8f 100%);
  padding: 42px 0 48px;
}

.home-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.home-carousel-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #081433;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  min-height: 420px;
}

.home-carousel-track {
  position: relative;
  min-height: 420px;
}

.home-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.home-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 30px;
  background: linear-gradient(to top, rgba(8, 20, 51, 0.92), rgba(8, 20, 51, 0.15), transparent);
  color: #fff;
}

.home-carousel-caption .eyebrow {
  color: var(--accent);
  margin-bottom: 6px;
}

.home-carousel-caption h3 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 4px;
}

.home-carousel-caption p {
  color: #dce4ff;
  margin: 0;
}

.home-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.home-carousel-prev {
  left: -8px;
}

.home-carousel-next {
  right: -8px;
}

.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.home-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.home-carousel-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .home-carousel-frame,
  .home-carousel-track,
  .home-carousel-slide img {
    min-height: 280px;
    height: 280px;
  }

  .home-carousel-prev {
    left: 8px;
  }

  .home-carousel-next {
    right: 8px;
  }

  .home-carousel-btn {
    width: 40px;
    height: 40px;
  }
}

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 70px 0;
}

.banner-section {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: url("../images/banner-light.jpg") center/cover no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.45));
}

.banner-content {
  position: relative;
  color: var(--primary);
  text-align: center;
  max-width: 760px;
}

.banner-content p {
  color: #1d3275;
}

.banner-content h2 {
  color: var(--primary);
}

.home-highlights {
  padding-bottom: 40px;
}

.home-highlight-grid .gallery-item {
  position: relative;
}

.home-highlight-grid .gallery-item img {
  height: 240px;
}

.home-highlight-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(12, 25, 71, 0.85), transparent);
  color: #fff;
}

.home-highlight-caption strong {
  display: block;
  font-size: 0.92rem;
}

.home-highlight-caption span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  opacity: 0.9;
}

.home-highlight-cta {
  margin-top: 28px;
  text-align: center;
}

.cta-inner {
  text-align: center;
}

.cta-band p {
  color: #dce4ff;
  margin-bottom: 18px;
}

.site-footer {
  background: var(--primary-dark);
  padding: 54px 0 18px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.footer-brand-block img {
  width: 170px;
  margin-bottom: 8px;
}

.footer-brand-block p {
  color: #d3dbff;
  font-size: 0.9rem;
}

.footer-address {
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  color: #dce4ff;
  border: 1px solid rgba(220, 228, 255, 0.3);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-column a,
.footer-column p {
  display: block;
  color: #d3dbff;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-column strong {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(211, 219, 255, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer p {
  color: #d3dbff;
  font-size: 0.9rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .grid-2,
  .contact-grid,
  .service-list,
  .card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .service-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

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

  .gallery-enhanced .gallery-item img {
    height: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 5%;
    left: 5%;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-actions {
    margin-left: 0;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav-book {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-actions .btn {
    width: auto;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 10px;
    max-width: none;
  }

  .gallery-pagination {
    flex-wrap: wrap;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
}
