:root {
  --color-primary: #0C2340;
  --color-primary-light: #1A3A5C;
  --color-primary-mid: #2C5282;
  --color-primary-dark: #071526;
  --color-primary-form: rgba(12, 35, 64, 0.92);
  --color-overlay: rgba(12, 35, 64, 0.78);
  --color-accent: #3182CE;
  --color-accent-glow: #4299E1;
  --color-accent-gold: #F6AD55;
  --color-red: #DC2626;
  --color-red-dark: #B91C1C;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-navy: #0C2340;
  --color-text-body: #4A5568;
  --color-text-light: #cbd5e1;
  --color-text-muted: rgba(255, 255, 255, 0.78);
  --color-bg-light: #D6EDFF;
  --color-bg-hover-nav: rgba(255, 255, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --color-star: #fbbc04;
  --color-google-blue: #4285F4;
  --color-text-facebook: #1877F2;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 26px;
  --radius-full: 50%;
  --hero-height: 80vh;
  --nav-height: 64px;
  --mobile-nav-height: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Open Sans', sans-serif;
}

a {
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(12, 35, 64, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.main-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.main-nav>ul>li {
  position: relative;
}

.nav-spacer {
  display: block;
}

.nav-phone {
  display: flex;
  justify-content: flex-end;
}

.nav-links-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  height: var(--nav-height);
  padding: 0 16px;
  color: var(--color-white);
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  outline: none;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background .2s, border-color .2s;
}

.nav-btn:hover {
  background: var(--color-bg-hover-nav);
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-height);
  padding: 0 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: .03em;
  transition: background .2s;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.nav-phone-link:hover {
  background: var(--color-accent-glow);
}

.nav-phone-link i {
  font-size: 16px;
}

/* ── Mobile Nav ── */
.mobile-topbar {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--mobile-nav-height);
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 35, 64, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: .85rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  letter-spacing: .02em;
}

.topbar-phone i {
  font-size: 15px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.hamburger i {
  font-size: 26px;
  color: var(--color-white);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1199;
}

.overlay.active {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--color-primary-light);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: left .3s ease;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-drawer::-webkit-scrollbar {
  display: none;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  background: var(--color-accent);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.drawer-logo {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.close-btn i {
  font-size: 20px;
  color: var(--color-white);
}

.drawer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-nav>li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.drawer-nav>li>.m-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 16px;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}

.drawer-nav>li>.m-nav-btn:hover {
  background: rgba(255, 255, 255, .08);
}

.drawer-phone {
  margin-top: auto;
  padding: 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.drawer-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius-md);
  letter-spacing: .03em;
  transition: background .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.drawer-phone-link:hover {
  background: var(--color-accent-glow);
}

.drawer-phone-link i {
  font-size: 20px;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: var(--hero-height);
  padding-bottom: 180px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(12, 35, 64, 0.58) 0%, rgba(12, 35, 64, 0.38) 55%, rgba(12, 35, 64, 0.09) 100%);
  z-index: 1;
}

/* Gallery Hero - Light Blue Styling without Video */
.hero-section--gallery {
  background: linear-gradient(135deg, #1b4d7e 0%, #2563eb 40%, #38bdf8 85%, #7dd3fc 100%);
  min-height: auto;
  padding-bottom: 110px;
}

.hero-section--gallery .hero-bg-gallery {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(125, 211, 252, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #163d63 0%, #1e5aa0 35%, #2563eb 68%, #38bdf8 100%);
  z-index: 0;
}

.hero-section--gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 35, 64, 0.25) 0%, rgba(12, 35, 64, 0.05) 50%, rgba(12, 35, 64, 0.2) 100%);
  z-index: 1;
}

.hero-section--gallery .hero-title,
.hero-section--gallery .hero-title-text {
  text-align: center !important;
  display: block;
}

@media (max-width: 768px) {
  .hero-section--gallery .hero-title {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .hero-section--gallery .hero-title-text {
    text-align: center !important;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 30px);
}

.custom-shape-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 3;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 47px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: #FFFFFF;
}

.custom-shape-divider-bottom.fill-light .shape-fill {
  fill: #D6EDFF;
}

.custom-shape-divider-bottom.fill-dark .shape-fill {
  fill: #071526;
}

.custom-shape-divider-bottom.fill-primary .shape-fill {
  fill: var(--color-primary-dark);
}

.custom-shape-divider-bottom.fill-blue-light .shape-fill {
  fill: #E8F0FE;
}

.custom-shape-divider-bottom.fill-projects .shape-fill {
  fill: #E6F3FF;
}

.custom-shape-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 47px;
}

.custom-shape-divider-top .shape-fill {
  fill: #FFFFFF;
}

.custom-shape-divider-top.fill-light .shape-fill {
  fill: #D6EDFF;
}

.hero-wave-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 3;
}

.hero-wave-1 svg {
  position: relative;
  display: block;
  width: calc(148% + 1.3px);
  height: 47px;
}

.hero-wave-1 .shape-fill {
  fill: #E1F0FF;
}

.hero-wave-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.hero-wave-2 svg {
  position: relative;
  display: block;
  width: calc(145% + 1.3px);
  height: 75px;
}

.hero-wave-2 .shape-fill {
  fill: #E1F0FF;
  opacity: 1;
}

.hero-wave-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.hero-wave-3 svg {
  position: relative;
  display: block;
  width: calc(132% + 1.3px);
  height: 164px;
}

.hero-wave-3 .shape-fill {
  fill: #E1F0FF;
  opacity: 1;
}

.logo {
  width: 270px;
  height: 270px;
  border-radius: var(--radius-full);
  background-color: var(--color-overlay);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.logo-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 25px;
  margin-bottom: 30px;
}

.hero-title {
  display: block !important;
  margin-bottom: 20px !important;
}

.hero-title-text {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.6);
  display: block;
}

.hero-title-text span {
  color: var(--color-accent-glow);
}

.hero-subtitle {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  max-width: 520px;
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  margin: 0;
}

.highlight-pill {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08);
  display: inline-block;
  font-size: 1.35rem;
}

.hero-features li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-features .bi {
  color: var(--color-white);
  opacity: .95;
  font-size: 1.15rem;
  vertical-align: -3px;
  margin-right: .6rem;
}

.form-container {
  width: 100%;
}

.appointment-card {
  background: var(--color-primary-form);
  border-radius: 10px;
  color: var(--color-white);
  width: 75%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.estimate-form-msg {
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 22px;
}

.appointment-pill {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 800;
  display: inline-block;
  font-size: 1.15rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.rounded-input {
  border-radius: 4px !important;
  padding: 5px 8px;
  box-shadow: none;
  border: none;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(49, 130, 206, 0.3);
}

.btn-cta {
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  padding: 12px 18px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
  color: var(--color-white);
}

.btn-cta:hover {
  background: var(--color-accent-glow);
}

/* ══════════════════════════════════════════════
   REVIEW BADGES
   ══════════════════════════════════════════════ */
.review-section {
  background-color: #E8F0FE;
  font-family: 'Arial', sans-serif;
}

.text-google {
  color: #4285F4;
}

.text-facebook {
  color: #1877F2;
}

.review-badge {
  text-decoration: none;
  color: #555;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5px;
  transition: transform 0.3s ease;
}

.review-badge:hover {
  transform: scale(1.05);
}

.inner-content {
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.2;
  z-index: 2;
}

.google-ring {
  background: conic-gradient(#4285F4 0deg 90deg, #EA4335 90deg 180deg, #FBBC05 180deg 270deg, #34A853 270deg 360deg);
  padding: 5px;
}

.facebook-ring {
  background: #3b5998;
  padding: 5px;
}

/* ══════════════════════════════════════════════
   ABOUT / COMPANY
   ══════════════════════════════════════════════ */
.company-section {
  background: #E1F0FF;
  position: relative;
  padding-bottom: 100px;
}

.company-img-col {
  background: url('/images/about-img.png') no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
}

.about-content-bg {
  background-color: #E1F0FF;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.text-navy {
  color: var(--color-text-navy);
}

.section-title {
  padding: 15px 25px;
  font-weight: 800;
  color: var(--color-text-navy);
  font-size: 2.2rem;
  line-height: 1.2;
}

.highlight {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.trust-pill {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0 15px;
  border-radius: var(--radius-md);
  display: inline-block;
}

.content-text p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.stat-box {
  background: var(--color-primary-light);
  color: var(--color-white);
  padding: 15px 10px;
  border-radius: var(--radius-md);
  height: 100%;
}

.stat-box p {
  font-size: 13px;
  margin: 0;
}

.stat-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 160px;
  margin: 0 auto;
}

.stat-circle {
  background: #3b82f6;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.3rem;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  z-index: 2;
  text-align: center;
  line-height: 1.2;
  padding: 0 6px;
}

.stat-label {
  background: #0f172a;
  color: var(--color-white);
  width: 100%;
  padding: 50px 8px 15px;
  margin-top: -45px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.btn-contact-custom {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: var(--color-white);
  font-weight: 700;
  padding: 10px 25px;
  border-radius: var(--radius-sm);
  transition: background .3s, color .3s;
  display: flex;
  align-items: center;
}

.btn-contact-custom:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ══════════════════════════════════════════════
   SERVICES SECTION (REDESIGNED)
   ══════════════════════════════════════════════ */
.services-section {
  position: relative;
  background: #D6EDFF;
  overflow: hidden;
}

/* --- Ocean wave banner --- */
.services-wave-banner {
  position: relative;
  width: 100%;
  height: 220px;
  /* Slightly taller to accommodate the top wave */
  background-image: url('../images/hero-bg.png');
  /* Wavy water background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* --- Wavy divider at the top (masking banner) --- */
.services-wave-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.services-wave-divider-top svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* --- Wavy divider between banner and content --- */
.services-wave-divider {
  position: relative;
  margin-top: -40px;
  z-index: 2;
  line-height: 0;
}

.services-wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* --- Main content area --- */
.services-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 100px;
  background: #D6EDFF;
}

.services-content .container {
  max-width: 1440px;
  width: 96%;
  margin: 0 auto;
}

/* --- Header / Title block --- */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-subtitle-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.services-subtitle-line__rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.3;
}

/* --- Logo icon above subtitle --- */
.services-logo-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.services-logo-icon__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  /* The supplied logo is white-only; use a dark treatment on this light section. */
  filter: brightness(0) saturate(100%);
}

.services-subtitle-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 18px;
}

.services-title--secondary {
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--color-primary-mid);
}

.services-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin: 0;
}

/* --- Services Grid (3 columns x 2 rows) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
}

/* --- Individual Service Card --- */
.service-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.18);
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

/* Dark gradient overlay at bottom of card */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(7, 21, 38, 0.88) 0%,
      rgba(7, 21, 38, 0.55) 40%,
      rgba(7, 21, 38, 0.1) 70%,
      transparent 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(0deg,
      rgba(7, 21, 38, 0.92) 0%,
      rgba(7, 21, 38, 0.6) 45%,
      rgba(7, 21, 38, 0.15) 75%,
      transparent 100%);
}

/* Card body (text content at bottom-left) */
.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 12px;
}

.service-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.service-card__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 10px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.service-card:hover .service-card__link {
  gap: 10px;
}

.service-card__arrow {
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__arrow {
  transform: translateX(3px);
}

/* --- CTA Button --- */
.services-cta {
  display: flex;
  justify-content: center;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-cta__btn:hover {
  background: transparent;
  color: var(--color-primary);
}

.services-cta__btn:hover .services-cta__icon {
  color: var(--color-primary);
}

.services-cta__icon {
  display: flex;
  align-items: center;
  color: #fff;
  transition: color 0.3s ease;
}

.services-cta__arrow {
  transition: transform 0.25s ease;
}

.services-cta__btn:hover .services-cta__arrow {
  transform: translateX(4px);
}


/* --- Floating Logos --- */
.services-floating-logo {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  width: 250px;
  opacity: 0.18;
  filter: brightness(0) saturate(100%);
  z-index: 0;
  pointer-events: none;
}

.services-floating-logo--left {
  left: 3%;
}

.services-floating-logo--right {
  right: 3%;
}

@media (max-width: 1600px) {
  .services-floating-logo {
    width: 200px;
    top: 55%;
  }
}

@media (max-width: 1400px) {
  .services-floating-logo {
    display: none;
  }
}

/* --- Services Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .services-title--secondary {
    font-size: 1.75rem;
  }

  .services-content .container {
    width: 94%;
  }
}

@media (max-width: 767px) {
  .services-wave-banner {
    height: 120px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .services-title--secondary {
    font-size: 1.4rem;
  }

  .services-description {
    font-size: 0.95rem;
  }

  .services-description br {
    display: none;
  }

  .services-header {
    margin-bottom: 32px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  .services-cta__btn {
    padding: 13px 30px;
    font-size: 0.8rem;
  }

  .services-content .container {
    width: 92%;
  }
}

/* ══════════════════════════════════════════════
   PROJECTS CAROUSEL
   ══════════════════════════════════════════════ */
.projects-gallery-section {
  padding: 160px 0 220px;
  background: #E6F3FF;
  position: relative;
}

.projects-gallery-section .container {
  max-width: 1720px;
  width: 94%;
}

/* --- Boat Tracks --- */
.boat-track {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.boat-track--left { left: calc(3% - 25px); }
.boat-track--right { right: calc(3% - 25px); }

/* Hide on smaller screens */
@media (max-width: 1400px) {
  .boat-track { display: none; }
}

/* --- Scroll-Driven Boat Animation --- */
.scroll-boat {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  /* Hardware acceleration for smooth JS animation */
  will-change: transform, top, opacity;
}

.boat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-boat--left {
  left: 3%;
}

.scroll-boat--right {
  right: 3%;
}

/* Hide on smaller screens to avoid overlapping content */
@media (max-width: 1400px) {
  .scroll-boat {
    display: none;
  }
}

.projects-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.waves-divider {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.projects-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #071526;
}

.projects-desc {
  max-width: 700px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 360px;
  }

  .tall-card {
    grid-row: span 2;
  }
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 360px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .gallery-card {
    height: 100%;
  }
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-card__badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1A3A5C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s, border-color 0.3s;
}

.gallery-card:hover .gallery-card__badge {
  background: var(--color-primary);
  border-color: #fff;
}

.gallery-card__info {
  display: flex;
  flex-direction: column;
}

.gallery-card__title {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-card__location {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin-top: 2px;
  font-weight: 500;
}

.btn-gallery-cta {
  background: transparent;
  color: #071526;
  border: 2px solid #071526;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-gallery-cta:hover {
  background: #071526;
  color: #fff;
}

/* ══════════════════════════════════════════════
   REVIEWS CAROUSEL
   ══════════════════════════════════════════════ */
.review-sec {
  padding: 260px 0 220px;
  background-image: linear-gradient(rgba(44, 82, 130, 0.4), rgba(44, 82, 130, 0.4)), url('/images/image-review-section.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect optional, but let's just keep it simple first without attachment fixed if it's wavy */
  position: relative;
}

.review-sec h2 {
  color: var(--color-white);
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.review-sec-sub {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin-bottom: 48px;
}

.review-carousel-outer {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 48px;
  box-sizing: border-box;
}

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform .2s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 18px;
  color: #202124;
}

.review-date {
  font-size: 14px;
  color: #70757a;
}

.stars {
  color: var(--color-star);
  font-size: 22px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3c4043;
  flex: 1;
}

.google-logo {
  font-size: 18px;
  color: #4285F4;
  width: 32px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.review-arrow:hover {
  background: rgba(0, 0, 0, 0.2);
}

.review-prev {
  left: 6px;
}

.review-next {
  right: 6px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
  display: inline-block;
}

.review-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer-main {
  background-color: #1A2A3E;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--color-text-light) !important;
  padding: 72px 0 0;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background-color: var(--color-accent);
}

.footer-list li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.footer-list a {
  color: var(--color-text-light);
  font-size: 1.05rem;
  transition: color .2s;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--color-accent-glow);
  text-decoration: none !important;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  margin-bottom: 10px;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.copyright-bar {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}

.copyright-bar p {
  font-size: 1.25rem;
}

.copyright-bar a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.copyright-bar a:hover {
  color: var(--color-accent-glow);
}

.footer-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: var(--color-accent);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: background .2s;
}

.footer-phone-cta:hover {
  background: var(--color-accent-glow);
  color: var(--color-white);
}

.footer-phone-cta i {
  font-size: 18px;
}

/* Custom elements for the footer */
.footer-contact-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-white);
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--color-primary-light);
  color: var(--color-white) !important;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none !important;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-accent);
  color: var(--color-white) !important;
}

/* ══════════════════════════════════════════════
   SERVING AREAS
   ══════════════════════════════════════════════ */
.serving-areas-sec {
  position: relative;
  padding: 48px 0 80px;
  background-color: #F5F0E6;
}

.serving-bg-overlay {
  display: none;
}

.serving-areas-sec .container {
  position: relative;
  z-index: 1;
}

.serving-areas-container {
  margin-top: 32px;
}

.serving-areas-sec h2 {
  font-size: 1.6rem;
}

.serving-areas-sec h3 {
  font-size: 1.15rem;
}

.serving-areas-sec .display-6 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem !important;
}

.serving-areas-text {
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.serving-areas-text span {
  display: inline-block;
  font-weight: 700;
  color: var(--color-text-navy);
  margin: 0 4px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .mobile-topbar {
    display: flex;
  }

  .main-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .main-nav {
    display: block;
  }

  .mobile-topbar,
  .mobile-drawer,
  .overlay {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero-inner {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--mobile-nav-height) + 24px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section {
    min-height: auto;
  }

  .highlight-pill {
    font-size: 1rem;
  }

  .appointment-card {
    width: 100%;
  }

  .company-img-col {
    position: relative !important;
    height: 280px;
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .company-section .offset-lg-5 {
    margin-left: 0 !important;
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .modern-carousel-section {
    padding: 40px 0;
  }

  .carousel-wrapper {
    padding: 10px 16px 20px;
    gap: 12px;
  }

  .project-card {
    flex: 0 0 80vw;
    max-width: 300px;
    height: 320px;
    border-radius: var(--radius-md);
  }

  .project-card:hover {
    flex: 0 0 80vw;
    transform: scale(1.02);
  }

  .card-content {
    transform: translateY(0);
    opacity: 1;
  }

  .carousel-dots {
    display: flex;
  }

  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dot {
    background: rgba(255, 255, 255, 0.35);
  }

  .dot.active {
    background: var(--color-accent);
  }

  .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  .review-carousel-outer {
    padding: 0 44px;
  }

  .section-title {
    font-size: 1.8rem;
    padding: 10px 16px;
  }

  .stat-circle {
    width: 75px;
    height: 75px;
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
    padding-top: 40px;
    margin-top: -40px;
  }

  .review-badge {
    width: 120px;
    height: 120px;
  }

  .inner-content {
    font-size: 0.78rem;
  }

  .inner-content img {
    width: 42px !important;
  }
}

@media (max-width: 767.98px) {
  .logo-wrapper {
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
  }

  .logo {
    width: 220px;
    height: 220px;
  }

  .hero-title {
    text-align: left;
    width: 100%;
  }

  .right-side-section {
    text-align: left;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
  }

  .highlight-pill {
    white-space: normal;
    line-height: 1.4;
    font-size: 1rem;
  }

  .hero-section h3.blue-text {
    font-size: 1rem;
    padding-right: 12px !important;
    line-height: 1.6;
  }

  .appointment-card {
    width: 100% !important;
  }

  .form-container {
    padding: 0 8px;
  }

  .col-md-4.col-12 {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-bottom: 180px;
  }

  .review-sec {
    background-attachment: scroll;
  }

  .serving-areas-sec {
    background-attachment: scroll;
  }

  .highlight-pill {
    font-size: .9rem;
  }

  .appointment-pill {
    font-size: 1rem;
    padding: 8px 14px;
  }

  .appointment-card {
    border-radius: 8px;
    padding: 16px !important;
    width: 100% !important;
  }

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

  .form-container {
    padding: 0 8px;
  }

  .right-side-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
  }

  .carousel-wrapper {
    padding: 10px 8px 20px;
  }

  .project-card {
    flex: 0 0 88vw;
    max-width: 100%;
    height: 280px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .arrow-prev {
    left: 4px;
  }

  .arrow-next {
    right: 4px;
  }

  .review-sec {
    padding: 80px 0;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .review-carousel-outer {
    padding: 0 36px;
  }

  .review-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }

  .review-badge {
    width: 100px;
    height: 100px;
  }

  .inner-content {
    font-size: 0.72rem;
  }

  .inner-content img {
    width: 34px !important;
  }

  .section-title {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .service-map {
    height: 350px !important;
  }

  .serving-areas-sec {
    padding: 28px 0;
  }

  .serving-areas-sec h3 {
    font-size: 18px;
  }

  .stat-circle {
    width: 65px;
    height: 65px;
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.72rem;
    padding-top: 36px;
    margin-top: -36px;
  }

  .footer-main img {
    max-height: 120px !important;
  }

  .footer-phone-cta {
    font-size: 1.05rem;
    padding: 10px 18px;
  }

  .footer-phone-cta i {
    font-size: 16px;
  }

  .footer-heading {
    font-size: 1.15rem;
  }

  .footer-main p {
    font-size: 0.98rem;
  }

  .footer-contact-item {
    font-size: 0.98rem;
  }

  .footer-list li,
  .footer-list a,
  .business-hours li {
    font-size: 0.95rem;
  }

  .business-hours li {
    flex-direction: column;
    gap: 2px;
  }

  .copyright-bar p,
  .copyright-bar a {
    font-size: 1.05rem;
  }
}

/* ══════════════════════════════════════════════
   GALLERY PAGE - UNIFORM GRID & LIGHTBOX
   ══════════════════════════════════════════════ */
.gallery-page-section {
  background-color: #E1F0FF;
  padding: 30px 0 100px;
  position: relative;
}

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

@media (max-width: 1200px) {
  .gallery-uniform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-uniform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .gallery-uniform-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gallery-uniform-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: var(--color-primary);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-uniform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-uniform-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-uniform-card:hover .gallery-uniform-card__img {
  transform: scale(1.06);
}

.gallery-uniform-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-uniform-card__badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1A3A5C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gallery-uniform-card:hover .gallery-uniform-card__badge {
  background-color: var(--color-accent);
  border-color: #fff;
}

.gallery-uniform-card__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gallery-uniform-card__title {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-uniform-card__location {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin-top: 2px;
  font-weight: 500;
}

/* ════════ LIGHTBOX MODAL ════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.3s;
}

.gallery-lightbox.active {
  visibility: visible;
  opacity: 1;
}

.gallery-lightbox .lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-lightbox .lightbox-content {
  position: relative;
  max-width: 960px;
  width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10000;
  user-select: none;
}

.gallery-lightbox .lightbox-counter {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 10001;
  background: rgba(12, 35, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-lightbox .lightbox-img-wrapper {
  max-height: 72vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: #071526;
  position: relative;
}

.gallery-lightbox .lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox .lightbox-img.fade-out {
  opacity: 0.3;
  transform: scale(0.98);
}

.gallery-lightbox .lightbox-caption {
  text-align: center;
  color: #ffffff;
  margin-top: 16px;
}

.gallery-lightbox .lightbox-caption h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.gallery-lightbox .lightbox-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
  font-weight: 500;
}

.gallery-lightbox .lightbox-caption p i {
  color: var(--color-accent-glow);
  margin-right: 4px;
}

.gallery-lightbox .lightbox-close,
.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
  position: absolute;
  background: rgba(12, 35, 64, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 10001;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-lightbox .lightbox-close {
  top: 24px;
  right: 28px;
}

.gallery-lightbox .lightbox-close:hover {
  background-color: var(--color-accent);
  border-color: #ffffff;
  transform: scale(1.1);
}

.gallery-lightbox .lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox .lightbox-prev:hover {
  background-color: var(--color-accent);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox .lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox .lightbox-next:hover {
  background-color: var(--color-accent);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .gallery-lightbox .lightbox-prev,
  .gallery-lightbox .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .gallery-lightbox .lightbox-prev { left: 10px; }
  .gallery-lightbox .lightbox-next { right: 10px; }
  .gallery-lightbox .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .gallery-lightbox .lightbox-counter { top: 14px; left: 14px; padding: 4px 10px; font-size: 0.75rem; }
  .gallery-lightbox .lightbox-img-wrapper { max-height: 65vh; }
  .gallery-lightbox .lightbox-img { max-height: 65vh; }
}
