* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --gold: #C5A059;
  /* Warm Gold from visiting card */
  --gold-light: #E1C07C;
  /* Glinting Gold */
  --gold-dark: #9B7A35;
  /* Antique Gold */
  --dark: #002E38;
  /* Deep Teal / Emerald Green from visiting card background */
  --dark2: #004350;
  /* Medium Teal */
  --dark3: #005C6E;
  /* Light Teal / Glow */
  --light: #ECEFEF;
  /* Off-White from visiting card */
  --cream: #F4F6F6;
  /* Very light background */
  --white: #FFFFFF;
  --red: #C0392B;
  --accent-gold: #F0B323;
  /* Bright Gold/Yellow Accent */
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden
}

/* TOP BAR */
#topbar {
  background: var(--light);
  color: var(--dark);
  font-size: 13px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 46, 56, 0.08);
  font-weight: 500;
}

#topbar a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

#topbar a:hover {
  color: var(--gold-dark);
}

/* NAV */
nav {
  background: #01262F;
  /* Deep Brand Blue from corporate reference */
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  /* Soft premium gold border line */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .06em;
  color: var(--white);
  /* White for optimal brand emblem contrast */
  cursor: pointer
}

.logo span {
  color: var(--gold)
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--light);
  /* High-contrast off-white text color */
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  cursor: pointer
}

.nav-links a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light)
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
  text-decoration: none
}

.btn-gold:hover {
  background: var(--gold-light)
}

.btn-outline-dark {
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: none;
  cursor: pointer;
  transition: all .2s
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.nav-admin-btn {
  background: none;
  border: 1px solid #ccc;
  color: #666;
  font-size: 12px;
  padding: 6px 14px;
  cursor: pointer;
  margin-left: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif
}

.nav-admin-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  /* Golden hamburger spans for high contrast */
  border-radius: 2px;
  transition: all .3s ease
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0 0;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 100%;
  text-align: left;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: .01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 26px;
  text-align: left;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: .74em;
  display: block;
  font-weight: 400;
  line-height: 1.2;
}

.hero-sub {
  color: #ccc;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 520px;
  text-align: left;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Left-aligned Stats Counter Layout */
.hero-stats-left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.h-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.h-stat-item:hover {
  transform: translateY(-3px);
}

.h-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.h-stat-item:hover .h-stat-num {
  color: var(--gold);
}

.h-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Desktop-only Compact Preview Trigger style */
.hero-right-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.mini-card-preview {
  position: relative;
  width: 350px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 160, 89, 0.1);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatCard 4s ease-in-out infinite;
}

.mini-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 56, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.preview-zoom-icon {
  font-size: 24px;
  color: var(--gold-light);
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.preview-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mini-card-preview:hover {
  transform: translateY(-6px) scale(1.03) rotateX(5deg) rotateY(-5deg);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.25), 0 0 20px rgba(197, 160, 89, 0.2);
}

.mini-card-preview:hover img {
  transform: scale(1.05);
}

.mini-card-preview:hover .preview-overlay {
  opacity: 1;
}

.mini-card-preview:hover .preview-zoom-icon {
  transform: scale(1);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Tablet & Mobile responsive overrides */
@media (max-width: 900px) {
  #hero {
    padding-top: 140px !important;
    justify-content: flex-start !important;
    min-height: auto !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 20px 24px 70px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-h1 {
    text-align: center;
  }

  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .hero-stats-left {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 30px;
    gap: 24px 12px;
    width: 100%;
  }

  .h-stat-item {
    align-items: center;
  }

  .hero-right-showcase {
    display: none !important;
  }
}

/* SECTIONS */
section {
  padding: 88px 48px
}

.sec-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px
}

.sec-eye::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 14px
}

.sec-sub {
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px
}

.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 18px
}

/* SERVICES */
#services {
  background: #01262F;
  /* Matching navbar theme deep navy blue background */
  padding: 96px 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
  background: transparent;
}

.svc-card {
  background: var(--dark);
  /* Core Deep Brand Teal (#002E38) */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.svc-img-container {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-body {
  padding: 28px 30px 34px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  /* Elegant Gold */
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-num::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
}

.svc-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.svc-type,
.svc-area {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  line-height: 1.3;
}

.svc-type {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.svc-area {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover elevation effects */
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 15px rgba(197, 160, 89, 0.15);
}

.svc-card:hover .svc-img {
  transform: scale(1.08);
}

/* GALLERY */
#gallery {
  background: var(--light);
  padding-bottom: 88px
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 7px
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.gal-item:nth-child(1),
.gal-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s
}

.gal-item:hover img {
  transform: scale(1.06)
}

.gal-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px
}

.gal-item:hover .gal-ov {
  opacity: 1
}

.gal-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px
}

.gal-cap {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase
}

/* PROCESS */
#process {
  background: var(--dark)
}

.proc-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 48px
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201, 146, 42, .15));
  z-index: 0
}

.proc-step {
  flex: 1;
  position: relative;
  z-index: 1
}

.step-c {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.step-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold)
}

.step-nm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px
}

.step-d {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-width: 130px
}

.step-w {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px
}

/* ABOUT */
#about {
  background: var(--white)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img-wrap {
  position: relative
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  padding: 24px 20px;
  text-align: center
}

.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.about-badge-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px
}

/* TEAM */
#team {
  background: var(--light)
}

.team-section-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 44px auto 0;
  align-items: center;
}

.team-pillars-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  background: var(--white);
  padding: 22px 26px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(0, 46, 56, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(0, 46, 56, 0.08);
}

.pillar-icon {
  font-size: 26px;
  background: rgba(197, 160, 89, 0.12);
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.pillar-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .team-section-container {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-content: center;
  }

  .team-pillars-panel {
    margin-top: 10px;
  }

  .pillar-card:hover {
    transform: translateY(-4px);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 44px
}

.team-card {
  background: var(--white);
  overflow: hidden
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s
}

.team-card:hover img {
  transform: scale(1.04)
}

.team-info {
  padding: 16px 18px
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 2px
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600
}

/* â”€â”€ REVIEW SLIDER â”€â”€ */
#reviews {
  background: var(--dark);
  overflow: hidden
}

#reviews .sec-title {
  color: var(--white)
}

.slider-wrap {
  position: relative;
  margin-top: 44px
}

.slider-track-outer {
  overflow: hidden
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform
}

/* REVIEW CARDS — width set dynamically by JS slider engine */
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 28px;
  position: relative;
  flex-shrink: 0;
  min-width: 0
}

.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: rgba(201, 146, 42, .09);
  position: absolute;
  top: -6px;
  left: 16px;
  line-height: 1
}

.rv-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.rv-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 14px
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--white)
}

.rv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rv-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em
}

.rv-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

/* BLOG CARDS (slider) */
.blog-card {
  background: var(--white);
  border: 1px solid #e8e4db;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .1)
}

.blog-thumb {
  height: 190px;
  overflow: hidden;
  position: relative
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05)
}

.blog-body {
  padding: 22px
}

.blog-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap
}

.blog-cat {
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px
}

.blog-date {
  font-size: 11px;
  color: #bbb
}

.blog-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.15
}

.blog-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7
}

.blog-read {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold)
}

/* SLIDER ARROWS */
.slider-arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 24px
}

.sl-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1
}

.sl-arrow:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.sl-arrow.dark {
  border-color: #ddd;
  color: var(--dark)
}

.sl-arrow.dark:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.sl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-right: auto
}

.sl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .2s
}

.sl-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px
}

.sl-dot.dark {
  background: rgba(0, 0, 0, .15)
}

.sl-dot.dark.active {
  background: var(--gold)
}

/* BLOG PAGE OVERLAY */
#blog-page {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 800;
  overflow-y: auto
}

#blog-page.open {
  display: block
}

.bp-header {
  background: var(--dark);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10
}

.bp-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .06em
}

.bp-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  line-height: 1
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 48px
}

/* CONTACT */
#contact {
  padding: 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.contact-left {
  padding: 72px 48px;
  background: var(--gold)
}

.contact-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px
}

.contact-left p {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.7
}

.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.contact-perks li {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 9px
}

.contact-right {
  padding: 56px 48px;
  background: var(--dark2)
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.cf-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}

.cf-group input,
.cf-group textarea,
.cf-group select {
  background: #111;
  border: 1px solid #222;
  color: var(--white);
  padding: 11px 13px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color .2s
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--gold)
}

.cf-group textarea {
  min-height: 100px;
  resize: vertical
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #444;
  padding: 56px 48px 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
  cursor: pointer
}

.footer-logo span {
  color: var(--gold)
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--light);
  max-width: 260px
}

.footer-hdg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-links a {
  font-size: 13px;
  color: var(--light);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-bottom {
  background: var(--light);
  color: var(--dark);
  border-top: 1px solid rgba(0, 46, 56, 0.08);
  padding: 24px 48px;
  margin: 28px -48px -28px -48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .nav-admin-btn {
  border-color: rgba(0, 46, 56, 0.15) !important;
  color: var(--dark) !important;
  background: transparent !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.footer-bottom .nav-admin-btn:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
}

/* Footer Social Icons */
.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 146, 42, .4);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: all .25s ease;
  flex-shrink: 0
}

.social-icon svg {
  width: 17px;
  height: 17px
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(201, 146, 42, .35)
}

/* VERTICAL SOCIAL LINKS CONTAINER */
.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  /* CRITICAL: This explicitly deletes the dots */
  padding: 0;
  margin: 16px 0 0 0;
}

/* INDIVIDUAL ROW LINK STRUCTURING */
.social-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  /* color: #888888; */
  color: var(--light);
  /* Match footer text styling */
  transition: color 0.3s ease;
}

/* CIRCULAR EMBED FOR SPECIFIC BRAND LOGOS */
.social-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1A1A1A;
  /* Matching UI theme specs */
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s ease;
}

/* TEXT ELEMENT FORMATTING */
.social-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease;
}

/* GLOBAL FOCUS/HOVER STATES */
.social-item:hover .social-text {
  color: #FFFFFF;
  transform: translateX(3px);
  /* Elegant slide hint */
}

.social-item:hover .social-icon-wrapper {
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* UNIQUE BRAND COLOR BEHAVIORS ON HOVER */
.social-item:hover .badge-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-item:hover .badge-facebook {
  background: #1877F2;
}

.social-item:hover .badge-whatsapp {
  background: #25D366;
}

/* LIGHTBOX (gallery) — styles consolidated at bottom of file */


/* BLOG POST MODAL */
#blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 36px 16px
}

#blog-modal.open {
  display: flex
}

.bm-inner {
  background: var(--white);
  max-width: 800px;
  width: 100%;
  margin: auto
}

.bm-hero {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block
}

.bm-body {
  padding: 36px 40px
}

.bm-cat {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 11px;
  margin-bottom: 12px
}

.bm-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1.04;
  margin-bottom: 8px
}

.bm-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 24px
}

.bm-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px
}

/* Blog image gallery inside post */
.bm-img-gallery {
  margin: 24px 0;
  position: relative
}

.bm-img-slider {
  display: flex;
  overflow: hidden;
  position: relative
}

.bm-img-slide {
  flex: 0 0 100%;
  transition: transform .38s ease;
  position: relative
}

.bm-img-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  cursor: zoom-in
}

.bm-img-slide .img-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px)
}

.bm-img-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px
}

.bm-img-counter {
  font-size: 13px;
  color: #aaa;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .06em
}

.bm-img-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap
}

.bm-img-thumb {
  width: 60px;
  height: 44px;
  object-fit: cover;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s;
  border: 2px solid transparent;
  flex-shrink: 0
}

.bm-img-thumb.active {
  opacity: 1;
  border-color: var(--gold)
}

.bm-close-btn {
  display: block;
  margin: 0 40px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  background: none;
  width: calc(100% - 80px)
}

.bm-close-btn:hover {
  background: var(--gold);
  color: white
}

/* LOGIN */
#login-screen {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 990;
  align-items: center;
  justify-content: center
}

#login-screen.open {
  display: flex
}

.login-box {
  background: var(--dark2);
  border-top: 4px solid var(--gold);
  padding: 44px;
  width: 370px;
  max-width: 94vw
}

.login-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: .05em
}

.login-box p {
  font-size: 13px;
  color: #444;
  margin-bottom: 26px
}

.login-box input {
  width: 100%;
  background: #111;
  border: 1px solid #1e1e1e;
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s;
  display: block
}

.login-box input:focus {
  border-color: var(--gold)
}

.login-btn-main {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 11px;
  display: block
}

.login-btn-main:hover {
  background: var(--gold-light)
}

.login-cancel {
  background: none;
  border: none;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-family: 'Barlow', sans-serif
}

.login-cancel:hover {
  color: #666
}

.login-err {
  color: #e74c3c;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  background: rgba(231, 76, 60, .08);
  padding: 8px 12px;
  border-left: 3px solid #e74c3c
}

.login-lock {
  color: #e5b84a;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  background: rgba(229, 184, 74, .08);
  padding: 8px 12px;
  border-left: 3px solid #e5b84a
}

/* ACTION CHOOSER */
#action-screen {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 990;
  align-items: center;
  justify-content: center
}

#action-screen.open {
  display: flex
}

.action-box {
  background: var(--dark2);
  border-top: 4px solid var(--gold);
  padding: 38px;
  width: 540px;
  max-width: 95vw
}

.action-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .05em
}

.action-box p {
  font-size: 13px;
  color: #444;
  margin-bottom: 26px
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px
}

.action-card {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  padding: 24px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  border-bottom: 3px solid transparent
}

.action-card:hover {
  border-bottom-color: var(--gold);
  background: #141414
}

.ac-icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: block
}

.ac-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 4px
}

.ac-desc {
  font-size: 12px;
  color: #3a3a3a;
  line-height: 1.5
}

.action-close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-family: 'Barlow', sans-serif
}

.action-close-btn:hover {
  color: #666
}

/* ADMIN PANEL */
#admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .84);
  z-index: 991;
  align-items: center;
  justify-content: center
}

#admin-overlay.open {
  display: flex
}

#admin-panel {
  background: var(--white);
  width: min(880px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  border-top: 4px solid var(--gold)
}

.adm-head {
  background: var(--dark);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10
}

.adm-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase
}

.adm-head-r {
  display: flex;
  align-items: center;
  gap: 9px
}

.adm-back {
  background: none;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 12px;
  padding: 5px 13px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.adm-back:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.adm-x {
  background: none;
  border: none;
  color: #888;
  font-size: 26px;
  cursor: pointer;
  line-height: 1
}

.adm-body {
  padding: 28px
}

.af-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.af-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555
}

.af-group input,
.af-group textarea,
.af-group select {
  border: 1px solid #e0e0e0;
  padding: 10px 13px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  background: var(--white)
}

.af-group input:focus,
.af-group textarea:focus {
  border-color: var(--gold)
}

.af-group textarea {
  min-height: 90px;
  resize: vertical
}

.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.a-submit {
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background .2s
}

.a-submit:hover {
  background: var(--gold-light)
}

.a-stitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--dark)
}

.a-ssub {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
  line-height: 1.6
}

.a-ok {
  background: #f0faf0;
  border: 1px solid #c0e8c0;
  color: #2a7a2a;
  padding: 9px 13px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none
}

.a-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 16px
}

.a-item {
  border: 1px solid #eeeeee;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  background: #fafaf8
}

.a-item-t {
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 2px
}

.a-item-s {
  font-size: 12px;
  color: #bbb
}

.btn-del {
  background: #fee;
  border: 1px solid #fcc;
  color: var(--red);
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-shrink: 0
}

.star-sel {
  display: flex;
  gap: 4px
}

.star-sel span {
  font-size: 26px;
  cursor: pointer;
  color: #e0e0e0;
  transition: color .1s;
  line-height: 1;
  user-select: none
}

.star-sel span.on {
  color: var(--gold)
}

.adm-divider {
  border: none;
  border-top: 1px solid #eeeeee;
  margin: 24px 0
}

.list-hd {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--dark)
}

/* img uploader */
.img-drop-zone {
  border: 2px dashed #e0e0e0;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: #fafaf8;
  transition: border-color .2s;
  margin-bottom: 9px
}

.img-drop-zone:hover {
  border-color: var(--gold)
}

.img-drop-zone .idz-icon {
  font-size: 26px;
  margin-bottom: 5px
}

.img-drop-zone .idz-txt {
  font-size: 12px;
  color: #aaa
}

.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 7px;
  margin-top: 7px
}

.img-prev-wrap {
  position: relative;
  height: 68px;
  overflow: hidden;
  border: 2px solid #eee
}

.img-prev-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.img-prev-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .6);
  color: white
}

.img-prev-del {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, .55);
  border: none;
  color: white;
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1
}

.img-prev-wrap.is-cover {
  border-color: var(--gold)
}

/* ═══════════════════════════════════════════════════
   HERO LAYOUT FLEX CONTAINER (DESKTOP)
   ═══════════════════════════════════════════════════ */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.hero-social-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.sidebar-qr-card {
  background: rgba(14, 14, 14, 0.75);
  border: 1px solid rgba(201, 146, 42, 0.2);
  padding: 14px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 130px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-qr-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sidebar-qr-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid #fff;
}

.sidebar-qr-card span {
  color: #aaa;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.sidebar-qr-card:hover span {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   MOBILE CONNECT SECTION (mobile-only replacement
   for hero performance stats)
   ═══════════════════════════════════════════════════ */
.mobile-connect {
  display: none;
}

/* ═══════════════════════════════════════════════════
   GALLERY PAGE — Filter Bar + Responsive Hero Header
   ═══════════════════════════════════════════════════ */
.gallery-page-header {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 56px 48px 40px;
}

.gallery-page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.gallery-page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 14, 14, .92) 30%, rgba(14, 14, 14, .65) 70%, rgba(14, 14, 14, .35) 100%);
}

.gallery-page-header-content {
  position: relative;
  z-index: 2;
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 48px;
  background: var(--cream);
  border-bottom: 1px solid #e8e4db;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-count {
  margin-left: auto;
  font-size: 12px;
  color: #999;
  font-family: 'Barlow', sans-serif;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* ── TABLET (max-width: 900px) ── */
@media (max-width: 900px) {

  /* Global overflow prevention — do NOT put overflow on html, it breaks sticky nav */
  * {
    max-width: 100vw;
  }

  section,
  footer,
  #topbar,
  .hero-stats,
  .mobile-connect {
    overflow-x: hidden;
  }

  /* Nav */
  nav {
    padding: 0 14px;
  }

  .hamburger {
    display: flex;
  }

  .btn-quote-nav {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    /* Absolute positioning relative to sticky navbar prevents mobile logo overlap */
    top: 100%;
    left: 0;
    right: 0;
    background: #01262F;
    /* Symmetrical deep brand blue background */
    flex-direction: column;
    gap: 0;
    list-style: none;
    z-index: 899;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    /* Soft premium top separator border */
  }

  .nav-links.open {
    display: flex;
    animation: navSlide .22s ease;
  }

  @keyframes navSlide {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links li {
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    /* Symmetrical subtle gold divider */
  }

  .nav-links li a {
    display: block;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    /* High-contrast white links */
    cursor: pointer;
    transition: background .15s, color .15s;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Soft transparent white hover background */
    color: var(--gold-light);
    /* Golden highlight */
  }

  /* Sections */
  section {
    padding: 52px 18px;
  }

  /* Topbar */
  #topbar {
    gap: 12px;
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Hero */
  #hero {
    min-height: 500px;
    height: auto;
  }

  .hero-container {
    padding: 0 18px;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }

  .hero-content {
    padding: 0 18px;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(38px, 9vw, 60px);
  }

  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-stats {
    position: relative;
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 45%;
    min-width: 0;
    padding: 16px 10px;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: .08em;
  }

  /* Hero social sidebar */
  .hero-social-sidebar {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-right: 0;
  }

  .sidebar-qr-card {
    width: calc(33.33% - 11px);
    min-width: 90px;
  }

  /* Services — 2 per row */
  #services {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .svc-img-container {
    height: 160px;
  }

  .svc-body {
    padding: 18px 16px 22px;
  }

  .svc-num {
    font-size: 32px;
  }

  .svc-name {
    font-size: 17px;
  }

  .svc-desc {
    font-size: 13px;
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 5px;
  }

  .gal-item:nth-child(1),
  .gal-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Process — 2 per row on tablet/mobile */
  .proc-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .proc-steps::before {
    display: none;
  }

  .proc-step {
    flex: none;
  }

  /* About / Contact */
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap img {
    height: 350px;
  }

  .about-badge {
    bottom: -12px;
    right: 12px;
    padding: 18px 16px;
  }

  .about-badge-num {
    font-size: 36px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-card img {
    height: 200px;
  }

  /* Reviews slider — widths set by JS */

  /* Blog slider — widths set by JS */

  /* Blog page grid */
  .bp-grid {
    padding: 24px 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  footer {
    padding: 40px 18px 24px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 24px -18px -24px -18px;
    padding: 24px 18px;
  }

  /* Forms */
  .af-row,
  .cf-row {
    grid-template-columns: 1fr;
  }

  /* Action cards */
  .action-cards {
    grid-template-columns: 1fr;
  }

  /* Section header */
  .sec-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Contact section */
  .contact-left {
    padding: 48px 18px;
  }

  .contact-right {
    padding: 40px 18px;
  }

  /* Gallery page */
  .gallery-page-header {
    padding: 36px 18px 28px;
  }

  .gallery-filter-bar {
    padding: 12px 18px;
    gap: 6px;
  }

  /* Blog modal */
  .bm-body {
    padding: 24px 18px;
  }

  .bm-close-btn {
    margin: 0 18px 24px;
    width: calc(100% - 36px);
  }

  .bm-hero {
    height: 200px;
  }

  /* Page header for gallery/blogs pages */
  .page-header {
    padding: 30px 18px !important;
  }
}

/* ── SMALL MOBILE (max-width: 600px) ── */
@media (max-width: 600px) {

  /* Topbar compact */
  #topbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    padding: 8px 12px;
    font-size: 11px;
    text-align: center;
  }

  #topbar span:first-child {
    width: 100%;
  }

  /* Hero */
  #hero {
    min-height: 450px;
  }

  .hero-container {
    padding: 0 14px;
  }

  .hero-content {
    padding: 0 8px;
  }

  .hero-h1 {
    font-size: clamp(32px, 10vw, 46px);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline-dark {
    width: 100%;
    text-align: center;
  }

  /* Hero stats — hide full stats, show mobile connect */
  .hero-stats {
    display: none;
  }

  .mobile-connect {
    display: block;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, .75);
    padding: 28px 18px;
  }

  .mobile-connect-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-connect-title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
  }

  .mobile-connect-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .mc-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 146, 42, 0.15);
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .mc-card:hover,
  .mc-card:active {
    border-color: var(--gold);
    background: rgba(201, 146, 42, 0.08);
    transform: translateY(-2px);
  }

  .mc-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .mc-card-icon.gold {
    background: rgba(201, 146, 42, 0.15);
    color: var(--gold);
  }

  .mc-card-icon.green {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
  }

  .mc-card-icon.blue {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
  }

  .mc-card-icon.pink {
    background: rgba(225, 48, 108, 0.12);
    color: #E1306C;
  }

  .mc-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
  }

  .mc-card-sub {
    font-size: 11px;
    color: #555;
    line-height: 1.4;
  }

  .mobile-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .mini-stat {
    text-align: center;
    padding: 6px 4px;
  }

  .mini-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .mini-stat-label {
    font-size: 9px;
    color: #555;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 3px;
  }

  /* Services — 2 per row on mobile */
  #services {
    padding: 40px 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .svc-img-container {
    height: 140px;
  }

  .svc-body {
    padding: 14px 12px 18px;
  }

  .svc-num {
    font-size: 26px;
    margin-bottom: 2px;
  }

  .svc-name {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .svc-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  /* Process steps — 2 per row */
  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .step-c {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .step-n {
    font-size: 16px;
  }

  .step-nm {
    font-size: 13px;
  }

  .step-d {
    font-size: 12px;
    max-width: 100%;
  }

  /* Gallery grid — 2 col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 4px;
  }

  /* Team — 2 per row */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .team-card img {
    height: 170px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-role {
    font-size: 11px;
  }

  .team-info {
    padding: 12px 14px;
  }

  /* Footer — stack all 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-desc {
    font-size: 12px;
    max-width: 100%;
  }

  /* Blog cards slider — widths set by JS */

  /* Blog page grid */
  .bp-grid {
    grid-template-columns: 1fr;
    padding: 16px 14px;
  }

  /* Section titles scale */
  .sec-title {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* About */
  .about-img-wrap img {
    height: 260px;
  }

  .about-text p {
    font-size: 14px;
  }

  /* Slider arrows */
  .slider-arrows {
    gap: 6px;
  }

  .sl-arrow {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  /* Login box */
  .login-box {
    padding: 28px 22px;
    width: 100%;
  }

  /* Gallery page filter bar */
  .gallery-filter-bar {
    padding: 10px 14px;
    gap: 5px;
  }

  .gallery-filter-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  /* Review card — mobile padding */
  .review-card {
    padding: 22px;
  }

  /* Blog post modal */
  .bm-title {
    font-size: 24px;
  }

  .bm-img-slide img {
    height: 220px;
  }
}

/* ── EXTRA SMALL (max-width: 380px) ── */
@media (max-width: 380px) {

  .hero-h1 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr;
  }

  .mobile-connect-cards {
    grid-template-columns: 1fr;
  }

  .mobile-mini-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP CHAT BUTTON
   ═══════════════════════════════════════════════════ */

/* Float animation keyframes */
@keyframes whatsappFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes whatsappFadeIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Main floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 4px 15px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2);
  animation: whatsappFloat 3s ease-in-out infinite, whatsappFadeIn 0.6s ease-out;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2BE675 0%, #25D366 100%);
  animation: none;
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(1.05);
}

/* WhatsApp icon */
.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Pulsing ring effect */
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

.whatsapp-float:hover .whatsapp-float-pulse {
  animation: none;
  opacity: 0;
}

/* Tooltip */
.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--dark2, #1A1A1A);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Tooltip arrow */
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--dark2, #1A1A1A);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ── Responsive: Tablets (max-width: 900px) ── */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 22px;
    right: 22px;
  }

  .whatsapp-float-icon {
    width: 27px;
    height: 27px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }
}

/* ── Responsive: Small mobile (max-width: 480px) ── */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float-icon {
    width: 24px;
    height: 24px;
  }
}

/* ═══════════════════════════════════════════════════
   ADDED BRANDING AND RESPONSIVE PATCHES
   ═══════════════════════════════════════════════════ */

/* BRANDING LOGO STYLING */
.nav-logo-img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.login-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.logo-pic {
  display: flex;
  align-items: center;
}

/* PREMIUM CARD STYLING & HOVER EFFECTS */
.svc-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(197, 160, 89, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 35px rgba(0, 72, 84, 0.28) !important;
  border-color: var(--gold) !important;
}

.svc-img {
  border-radius: 12px 12px 0 0 !important;
}

.team-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 46, 56, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: var(--white) !important;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 30px rgba(0, 46, 56, 0.12) !important;
  border-color: var(--gold) !important;
}

.team-card img {
  border-radius: 12px 12px 0 0 !important;
}

.review-card {
  border-radius: 12px !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.review-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 10px 30px rgba(0, 72, 84, 0.24) !important;
}

.gal-item {
  border-radius: 12px !important;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.35s ease !important;
}

.gal-item img {
  border-radius: 12px !important;
}

.gal-ov {
  border-radius: 12px !important;
}

.blog-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #e8e4db !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 35px rgba(0, 46, 56, 0.1) !important;
  border-color: var(--gold) !important;
}

.blog-thumb img {
  border-radius: 12px 12px 0 0 !important;
}

.mc-card {
  border-radius: 10px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(197, 160, 89, 0.12) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mc-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 10px 24px rgba(0, 72, 84, 0.32) !important;
  background: rgba(0, 72, 84, 0.15) !important;
}

/* INTERACTIVE 3D HERO VISITING CARD */
.hero-visiting-card {
  perspective: 1000px;
  width: 385px;
  height: 220px;
  cursor: pointer;
  z-index: 3;
  flex-shrink: 0;
  display: block;
}

.hero-visiting-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  border-radius: 14px !important;
}

.hero-visiting-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  border-radius: 14px;
}

.hero-visiting-card:hover .card-inner {
  transform: rotateY(180deg);
}

.hvc-front,
.hvc-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-sizing: border-box;
}

.hvc-front {
  background: linear-gradient(135deg, #002E38 0%, #001f26 100%);
  color: var(--white);
  align-items: flex-start;
  text-align: left;
}

.hvc-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hvc-card-logo {
  height: 38px;
  object-fit: contain;
}

.hvc-brand {
  display: flex;
  flex-direction: column;
}

.hvc-co-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.hvc-co-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-top: 2px;
}

.hvc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 16px;
}

.hvc-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #ECEFEF;
}

.hvc-slogan .highlight {
  color: var(--accent-gold);
}

.hvc-back {
  background: var(--light);
  color: #131C24;
  transform: rotateY(180deg);
  align-items: flex-start;
  text-align: left;
}

.hvc-back-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #002E38;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.hvc-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hvc-services-list li {
  font-size: 12px;
  font-weight: 700;
  color: #131C24;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.hvc-services-list li .bullet {
  color: var(--gold);
}

.hvc-back-footer {
  margin-top: 12px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hvc-back-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  background: #002E38;
  color: var(--white);
  padding: 3px 8px;
  letter-spacing: 0.05em;
}

/* TABLET & MOBILE RESPONSIVENESS PATCHES */
@media (max-width: 900px) {

  /* Ensure mobile connect displays on tablets too */
  .mobile-connect {
    display: block !important;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.4);
    padding: 36px 18px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }

  /* Center the 3D card beautifully on tablets */
  .hero-visiting-card {
    margin: 30px auto 0 !important;
    width: 385px;
    height: 220px;
    display: block;
  }
}

@media (max-width: 600px) {
  .mobile-connect-cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }

  .mc-card {
    padding: 14px 8px;
  }

  .mc-card-label {
    font-size: 11px;
  }

  .mc-card-sub {
    display: none;
    /* Hide direct line/chat details to prevent text wrap on small mobile */
  }
}

@media (max-width: 480px) {
  .hero-visiting-card {
    width: 100% !important;
    max-width: 320px;
    height: 195px;
    margin: 20px auto 0 !important;
  }

  .hvc-front,
  .hvc-back {
    padding: 16px;
  }

  .hvc-logo-wrap {
    margin-bottom: 8px;
  }

  .hvc-card-logo {
    height: 32px;
  }

  .hvc-co-name {
    font-size: 16px;
  }

  .hvc-divider {
    margin-bottom: 12px;
  }

  .hvc-slogan {
    font-size: 13px;
  }

  .hvc-services-list li {
    font-size: 10px;
    gap: 6px;
  }

  .mobile-connect-cards {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px;
  }

  .mc-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 18px;
    gap: 14px;
  }

  .mc-card-sub {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS & MOTION SHOWCASE ADDITIONS
   ═══════════════════════════════════════════════════ */

/* 1. Desktop 3D Card Image Overrides */
.hvc-front,
.hvc-back {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  overflow: hidden !important;
}

/* 2. Mobile/Tablet actual card showcase with autoplay rotation & smooth auto-minimize */
.mobile-card-showcase {
  display: none;
  /* Hidden by default on desktop */
}

@media (max-width: 900px) {
  .mobile-card-showcase {
    display: block;
    perspective: 1000px;
    width: 332px;
    height: 190px;
    margin: 28px auto 0;
    z-index: 10;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    opacity: 1;
  }

  /* Smooth minimization state */
  .mobile-card-showcase.minimized {
    transform: scale(0) rotate(180deg);
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .mcs-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateMobileCard 6.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border-radius: 14px;
  }

  .mcs-front,
  .mcs-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
  }

  .mcs-front img,
  .mcs-back img {
    width: 100%;
    height: 100%;
    object-fit: fill !important;
    display: block;
  }

  .mcs-back {
    transform: rotateY(180deg);
  }

  /* Smooth 360 rotation that shows front, spins to back, pauses, and returns to front */
  @keyframes rotateMobileCard {
    0% {
      transform: rotateY(0deg);
    }

    15% {
      transform: rotateY(0deg);
    }

    45% {
      transform: rotateY(180deg);
      /* Flip to Back */
    }

    60% {
      transform: rotateY(180deg);
      /* Pause on Back */
    }

    90% {
      transform: rotateY(360deg);
      /* Flip back to Front */
    }

    100% {
      transform: rotateY(360deg);
    }
  }
}

/* 3. Re-engineered Team Grid Card Symmetrical Layout (Stops Stretched Cards) */
.team-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px)) !important;
  justify-content: center !important;
  /* Centers cards horizontally */
  gap: 24px !important;
  margin-top: 44px !important;
}

.team-card {
  max-width: 280px !important;
  margin: 0 auto !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.team-card img {
  width: 100% !important;
  height: 340px !important;
  /* Unified premium aspect ratio height */
  object-fit: cover !important;
  object-position: center top !important;
  /* Perfect visual focus on faces */
  display: block !important;
}

/* 4. Brand-aligned Circular Instagram Badge Integration */
.team-ig-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(0, 46, 56, 0.05) !important;
  color: var(--dark) !important;
  border: 1px solid rgba(0, 46, 56, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.team-ig-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease !important;
}

/* Deluxe Instagram Brand Gradient Background Glow on Hover */
.team-ig-link:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(214, 36, 159, 0.35) !important;
}

.team-ig-link:hover svg {
  transform: scale(1.05) !important;
}

/* ==========================================================================
   PREMIUM 3D BUSINESS CARD MODAL & EXPANDING MULTI-ACTION CONTACT WIDGET
   ========================================================================== */

/* PREMIUM INTERACTIVE 3D BUSINESS CARD MODAL */
.card-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 38, 47, 0.85);
  backdrop-filter: blur(8px);
}

.card-modal-content {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: var(--dark);
  /* Core Brand Deep Teal (#002E38) */
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 160, 89, 0.15);
  z-index: 2;
  text-align: center;
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-modal.active .card-modal-content {
  transform: scale(1);
  opacity: 1;
}

.card-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.card-modal-close:hover {
  color: var(--gold-light);
  transform: rotate(90deg);
}

/* 3D Modal Card container */
.modal-3d-card {
  perspective: 1000px;
  width: 100%;
  max-width: 440px;
  height: 250px;
  margin: 0 auto 30px;
  cursor: pointer;
}

.modal-3d-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-3d-card-inner.flipped {
  transform: rotateY(180deg);
}

.m3d-front,
.m3d-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.m3d-front img,
.m3d-back img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.m3d-back {
  transform: rotateY(180deg);
}

.card-flip-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 46, 56, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0.85;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-3d-card:hover .card-flip-hint {
  opacity: 1;
  background: rgba(197, 160, 89, 0.95);
  color: var(--dark);
  border-color: var(--white);
}

.card-modal-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive modal scaling */
@media (max-width: 480px) {
  .modal-3d-card {
    height: 190px;
  }

  .card-modal-content {
    padding: 30px 20px;
  }
}


/* PREMIUM FLOATING MULTI-ACTION CONTACT WIDGET */
.contact-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.widget-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  /* Brand Gold trigger */
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4), 0 0 0 0 rgba(197, 160, 89, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  animation: pulseTrigger 2s infinite;
}

.widget-trigger-chat-icon,
.widget-trigger-close-icon {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-trigger-close-icon {
  font-size: 26px;
  font-weight: 300;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  line-height: 1;
}

.widget-trigger:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* Staggered Vertical Stack Options */
.widget-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.widget-phone {
  background: #2ecc71;
  /* High-contrast green call trigger */
}

.widget-phone:hover {
  background: #27ae60;
  transform: scale(1.1) rotate(15deg);
}

.widget-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.widget-instagram:hover {
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 0 8px 20px rgba(214, 36, 159, 0.4);
}

.widget-facebook {
  background: #1877F2;
  /* Official Facebook blue */
}

.widget-facebook i {
  color: #fff;
  font-size: 18px;
}

.widget-facebook:hover {
  background: #0d65d9;
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 0 8px 20px rgba(24, 119, 242, .4);
}

.widget-whatsapp {
  background: #25d366;
  /* Official WhatsApp Green */
}

.widget-whatsapp i {
  color: #fff;
  font-size: 20px;
}

.widget-whatsapp:hover {
  background: #128c7e;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Dynamic CSS Tooltips on hover */
.widget-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.widget-btn:hover .widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Active Expander State styles */
.contact-widget-container.active .widget-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-widget-container.active .widget-trigger {
  background: var(--dark);
  /* Trigger morphs to dark teal background */
  box-shadow: 0 6px 20px rgba(0, 46, 56, 0.3);
  animation: none;
}

.contact-widget-container.active .widget-trigger-chat-icon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.contact-widget-container.active .widget-trigger-close-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Widget pulse animation when collapsed */
@keyframes pulseTrigger {
  0% {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4), 0 0 0 0 rgba(197, 160, 89, 0.7);
  }

  70% {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4), 0 0 0 10px rgba(197, 160, 89, 0);
  }

  100% {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4), 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

@media (max-width: 768px) {
  .contact-widget-container {
    bottom: 20px;
    right: 20px;
  }

  .widget-trigger {
    width: 52px;
    height: 52px;
  }

  .widget-btn {
    width: 44px;
    height: 44px;
  }

  .widget-tooltip {
    display: none;
    /* Hide tooltips on touch screens */
  }
}


/* Gallery lightbox styles consolidated below */




/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION — VISIBLE HEADING ABOVE THE FORM GRID
   ═══════════════════════════════════════════════════════════════════ */

.contact-section-heading {
  background: var(--dark);
  text-align: center;
  padding: 60px 48px 48px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.contact-section-heading .sec-eye {
  justify-content: center;
  margin-bottom: 14px;
}

.contact-main-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .95;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.contact-main-title em,
.contact-main-title span {
  color: var(--gold);
  font-style: italic;
}

.contact-main-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-section-heading {
    padding: 44px 24px 36px;
  }

  .contact-main-title {
    font-size: clamp(32px, 8vw, 52px);
  }
}

@media (max-width: 600px) {
  .contact-section-heading {
    padding: 36px 18px 28px;
  }

  .contact-main-desc {
    font-size: 14px;
  }
}

/* Review card responsive widths are now handled by JS slider engine */


/* ═══════════════════════════════════════════════════════════════════
   GALLERY LIGHTBOX — LARGE IMAGE + PREV / NEXT NAVIGATION
   (Consolidated — single source of truth)
   ═══════════════════════════════════════════════════════════════════ */

/* Lightbox overlay — dark full-screen */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox.open {
  display: flex;
}

/* Image wrapper — fills available space for large preview */
.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw;
  height: 85vh;
  flex-shrink: 0;
}

/* The actual image — large, aspect-ratio preserved */
#lb-img,
.lb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  transition: opacity 0.15s ease;
}

/* Caption / tag bar */
.lb-info {
  text-align: center;
  padding: 10px 20px 0;
  flex-shrink: 0;
}

#lb-tag {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

#lb-cap {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.lb-counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .1em;
  margin-top: 5px;
}

/* Close button */
#lb-close {
  position: fixed;
  top: 16px;
  right: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2010;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.25s;
}

#lb-close:hover {
  background: rgba(197, 160, 89, 0.3);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* Prev / Next navigation arrows */
.lb-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lb-nav-btn:hover {
  background: rgba(197, 160, 89, 0.25);
  border-color: var(--gold);
  color: var(--gold);
}

#lb-prev {
  left: 20px;
}

#lb-next {
  right: 20px;
}

/* Tablet lightbox */
@media (max-width: 900px) {
  .lb-img-wrap {
    width: 92vw;
    height: 80vh;
  }
}

/* Mobile lightbox */
@media (max-width: 700px) {
  #lightbox {
    padding: 15px 8px;
  }

  .lb-img-wrap {
    width: 96vw;
    height: 75vh;
  }

  .lb-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  #lb-prev {
    left: 6px;
  }

  #lb-next {
    right: 6px;
  }

  #lb-close {
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — GRID LAYOUT FIX (makes category filter work visually)
   ═══════════════════════════════════════════════════════════════════ */
.bp-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* When a card is filtered-in, restore flex layout */
.bp-grid .blog-card {
  display: flex !important;
  flex-direction: column;
  flex: unset;
  margin-right: 0;
  width: 100%;
}

.bp-grid .blog-card[style*="display: none"] {
  display: none !important;
}

@media (max-width: 600px) {
  .bp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}