/* =========================================================
   DR. DESHMUKH'S HOMEOPATHY
   GALLERY PAGE
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {

  --blue: #1B4F8A;
  --blue-dark: #143d6e;
  --blue-light: #2563EB;

  --teal: #2A9D8F;
  --teal-light: #3BBFB0;
  --teal-pale: #E6F7F5;

  --gray-bg: #F8FAFC;
  --gray-border: #E2E8F0;

  --text-dark: #0F1923;
  --text-mid: #374151;
  --text-light: #6B7280;

}


/* =========================================================
   GLOBAL
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  margin: 0;

  font-family: 'Inter', sans-serif;

  color: var(--text-dark);

  background: #fff;

  overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5 {

  font-family: 'Poppins', sans-serif;

  margin: 0;

}

p {
  margin: 0;
}

img {
  max-width: 100%;
}


/* =========================================================
   HEADER
   ========================================================= */

#main-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  height: 70px;

  background:
    rgba(255,255,255,0.96);

  backdrop-filter: blur(12px);

  border-bottom:
    1px solid var(--gray-border);

  box-shadow:
    0 1px 12px rgba(27,79,138,0.08);

  transition:
    box-shadow 0.3s;

}

.header-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

}

.logo-wrap {

  display: flex;

  align-items: center;

}

.logo-wrap img {

  height: 48px;

  width: auto;

  display: block;

}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav.desktop-nav {

  display: flex;

  align-items: center;

  gap: 4px;

}

nav.desktop-nav a {

  font-family: 'Poppins', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: var(--text-mid);

  padding: 8px 14px;

  border-radius: 8px;

  text-decoration: none;

  transition:
    color 0.2s,
    background 0.2s;

}

nav.desktop-nav a:hover {

  color: var(--blue);

  background:
    rgba(27,79,138,0.06);

}

nav.desktop-nav a.active {

  color: var(--teal);

  font-weight: 600;

  background:
    rgba(42,157,143,0.07);

}


/* =========================================================
   BUTTONS
   ========================================================= */

.header-actions {

  display: flex;

  gap: 10px;

  align-items: center;

}

.btn-call {

  display: flex;

  align-items: center;

  gap: 6px;

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  color: var(--blue);

  border:
    1.5px solid var(--blue);

  padding: 8px 16px;

  border-radius: 10px;

  text-decoration: none;

  white-space: nowrap;

  transition: all 0.2s;

}

.btn-call:hover {

  background: var(--blue);

  color: #fff;

}

.btn-primary {

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  padding: 9px 20px;

  border-radius: 10px;

  text-decoration: none;

  white-space: nowrap;

  transition: all 0.2s;

  box-shadow:
    0 4px 12px rgba(42,157,143,0.3);

}

.btn-primary:hover {

  transform: translateY(-1px);

  box-shadow:
    0 6px 20px rgba(42,157,143,0.4);

}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger-btn {

  display: none;

  flex-direction: column;

  gap: 5px;

  background: none;

  border: none;

  cursor: pointer;

  padding: 8px;

}

.hamburger-btn span {

  width: 24px;

  height: 2px;

  background: var(--blue);

  border-radius: 2px;

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

#mobile-menu {

  display: none;

  position: fixed;

  top: 70px;

  left: 0;

  right: 0;

  z-index: 999;

  background: #fff;

  padding: 16px 24px 24px;

  border-bottom:
    1px solid var(--gray-border);

  box-shadow:
    0 8px 32px rgba(0,0,0,0.1);

}

#mobile-menu.open {
  display: block;
}

#mobile-menu a {

  display: block;

  font-family: 'Poppins', sans-serif;

  font-size: 0.95rem;

  font-weight: 500;

  color: var(--text-mid);

  padding: 12px 0;

  border-bottom:
    1px solid var(--gray-border);

  text-decoration: none;

}

#mobile-menu .mobile-ctas {

  display: flex;

  gap: 10px;

  margin-top: 16px;

}

#mobile-menu .mobile-ctas a {

  flex: 1;

  text-align: center;

  border: 0;

  padding: 12px;

}


/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.floating-call,
.floating-wa {

  position: fixed;

  right: 20px;

  z-index: 900;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: #fff;

  display: none;

}

.floating-call {

  bottom: 80px;

  background: var(--blue);

  box-shadow:
    0 6px 20px rgba(27,79,138,0.4);

}

.floating-wa {

  bottom: 20px;

  background: #25D366;

  box-shadow:
    0 6px 20px rgba(37,211,102,0.4);

}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb {

  padding: 12px 0;

  background: var(--gray-bg);

  border-bottom:
    1px solid var(--gray-border);

}

.breadcrumb-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 0.82rem;

  color: var(--text-light);

}

.breadcrumb-inner a {

  color: var(--teal);

  text-decoration: none;

  font-weight: 500;

}


/* =========================================================
   COMMON
   ========================================================= */

.section-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

}

.section-eyebrow {

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  color: var(--teal);

  letter-spacing: 0.08em;

  text-transform: uppercase;

  margin-bottom: 10px;

}

.section-title {

  font-size:
    clamp(1.6rem,3vw,2.4rem);

  font-weight: 800;

  line-height: 1.2;

  color: var(--text-dark);

  margin-bottom: 16px;

}

.reveal {

  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;

}

.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}


/* =========================================================
   HERO
   ========================================================= */

#page-hero {

  position: relative;

  overflow: hidden;

  padding: 72px 0 64px;

  background:
    linear-gradient(
      135deg,
      #0F1923 0%,
      #1B4F8A 55%,
      #2A9D8F 100%
    );

}

#page-hero::before {

  content: '';

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(42,157,143,0.18),
      transparent 50%
    );

}

.page-hero-inner {

  position: relative;

  z-index: 1;

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  text-align: center;

}

.hero-kicker {

  display: inline-flex;

  padding: 6px 14px;

  margin-bottom: 20px;

  border-radius: 100px;

  border:
    1px solid rgba(255,255,255,0.2);

  background:
    rgba(255,255,255,0.1);

  color:
    rgba(255,255,255,0.9);

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.06em;

}

#page-hero h1 {

  color: #fff;

  font-size:
    clamp(2rem,4vw,3rem);

  font-weight: 800;

  line-height: 1.15;

  margin-bottom: 16px;

}

#page-hero h1 span {

  background:
    linear-gradient(
      90deg,
      #7ED4CC,
      #A5F3EC
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}

#page-hero p {

  max-width: 580px;

  margin: 0 auto;

  color:
    rgba(255,255,255,0.75);

  font-size: 1.05rem;

  line-height: 1.75;

}

.hero-stat-row {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 48px;

  margin-top: 40px;

}

.hero-stat .num {

  font-family: 'Poppins', sans-serif;

  font-size: 2rem;

  font-weight: 800;

  line-height: 1;

  color: #fff;

}

.hero-stat .num span {

  color: #7ED4CC;

}

.hero-stat .lbl {

  margin-top: 4px;

  color:
    rgba(255,255,255,0.6);

  font-size: 0.78rem;

}


/* =========================================================
   VIDEOS
   ========================================================= */

#case-studies {

  padding: 100px 0;

  background: #fff;

}

.videos-header {

  max-width: 640px;

  margin:
    0 auto 56px;

  text-align: center;

}

.videos-header .sub {

  color: var(--text-light);

  font-size: 1rem;

  line-height: 1.7;

}

.videos-grid {

  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 32px;

}

.video-card {

  overflow: hidden;

  background: var(--gray-bg);

  border:
    1px solid var(--gray-border);

  border-radius: 20px;

  transition: all 0.3s;

}

.video-card:hover {

  transform: translateY(-4px);

  border-color: var(--teal);

  box-shadow:
    0 16px 48px rgba(27,79,138,0.12);

}

.video-embed-wrap {

  position: relative;

  height: 0;

  padding-bottom: 56.25%;

  overflow: hidden;

  background: #0F1923;

}

.video-embed-wrap iframe {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

.video-card-body {

  padding: 24px;

}

.video-tag {

  display: inline-block;

  margin-bottom: 10px;

  padding: 4px 10px;

  border-radius: 6px;

  background: var(--teal-pale);

  color: var(--teal);

  font-family: 'Poppins', sans-serif;

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

}

.video-card-body h3 {

  margin-bottom: 8px;

  font-size: 1.05rem;

  font-weight: 700;

}

.video-card-body p {

  color: var(--text-light);

  font-size: 0.87rem;

  line-height: 1.65;

}

.video-meta {

  display: flex;

  gap: 12px;

  margin-top: 14px;

  flex-wrap: wrap;

  color: var(--text-light);

  font-size: 0.78rem;

}

.youtube-cta {

  margin-top: 40px;

  text-align: center;

}

.youtube-cta p {

  margin-bottom: 14px;

  color: var(--text-light);

  font-size: 0.9rem;

}

.youtube-button {

  display: inline-flex;

  padding: 9px 20px;

  border:
    1.5px solid #FF0000;

  border-radius: 10px;

  color: #FF0000;

  font-family: 'Poppins', sans-serif;

  font-size: 0.88rem;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.2s;

}

.youtube-button:hover {

  color: #fff;

  background: #FF0000;

}


/* =========================================================
   PHOTO GALLERY
   ========================================================= */

#photo-gallery {

  padding: 100px 0;

  background: var(--gray-bg);

}

.gallery-heading {

  max-width: 640px;

  margin:
    0 auto 40px;

  text-align: center;

}

.gallery-heading > p:last-child {

  color: var(--text-light);

  font-size: 1rem;

  line-height: 1.7;

}


/* FILTER */

.filter-bar {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 48px;

}

.filter-btn {

  padding: 8px 18px;

  border:
    1.5px solid var(--gray-border);

  border-radius: 100px;

  background: #fff;

  color: var(--text-mid);

  font-family: 'Poppins', sans-serif;

  font-size: 0.82rem;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.2s;

}

.filter-btn:hover {

  color: var(--teal);

  border-color: var(--teal);

}

.filter-btn.active {

  border-color: transparent;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  box-shadow:
    0 4px 12px rgba(42,157,143,0.3);

}


/* MASONRY */

.gallery-grid {

  columns: 4;

  column-gap: 16px;

}

.gallery-item {

  position: relative;

  overflow: hidden;

  break-inside: avoid;

  margin-bottom: 16px;

  border-radius: 16px;

  background:
    linear-gradient(
      160deg,
      #EBF7F5,
      #E8F0FB
    );

  cursor: pointer;

  transition:
    transform 0.3s,
    box-shadow 0.3s;

}

.gallery-item:hover {

  transform: scale(1.02);

  z-index: 2;

  box-shadow:
    0 12px 40px rgba(27,79,138,0.18);

}

.gallery-item img {

  width: 100%;

  height: auto;

  display: block;

  transition:
    transform 0.4s;

}

.gallery-item:hover img {

  transform: scale(1.05);

}

.gallery-item.hidden {

  display: none;

}


/* CATEGORY BADGE */

.gallery-cat-badge {

  position: absolute;

  top: 12px;

  left: 12px;

  padding: 3px 8px;

  border-radius: 5px;

  background:
    rgba(15,25,35,0.65);

  backdrop-filter: blur(4px);

  color: #fff;

  font-family: 'Poppins', sans-serif;

  font-size: 0.65rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.04em;

}


/* ZOOM */

.gallery-zoom {

  position: absolute;

  top: 12px;

  right: 12px;

  width: 32px;

  height: 32px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  background:
    rgba(255,255,255,0.2);

  opacity: 0;

  transition: opacity 0.3s;

}

.gallery-item:hover .gallery-zoom {

  opacity: 1;

}


/* OVERLAY */

.gallery-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 16px;

  background:
    linear-gradient(
      to top,
      rgba(15,25,35,0.75),
      transparent 55%
    );

  opacity: 0;

  transition: opacity 0.3s;

}

.gallery-item:hover .gallery-overlay {

  opacity: 1;

}

.overlay-cat {

  margin-bottom: 3px;

  color: #7ED4CC;

  font-size: 0.68rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}

.overlay-label {

  color: #fff;

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 600;

}


/* =========================================================
   LIGHTBOX
   ========================================================= */

#lightbox {

  position: fixed;

  inset: 0;

  z-index: 9999;

  display: none;

  align-items: center;

  justify-content: center;

  padding: 24px;

  background:
    rgba(10,15,25,0.95);

  backdrop-filter: blur(8px);

}

#lightbox.open {

  display: flex;

}

.lightbox-inner {

  position: relative;

  width: 100%;

  max-width: 900px;

}

#lightbox-img {

  display: block;

  width: 100%;

  max-height: 80vh;

  object-fit: contain;

  border-radius: 16px;

}

.lightbox-close {

  position: absolute;

  top: -44px;

  right: 0;

  width: 36px;

  height: 36px;

  border: 0;

  border-radius: 10px;

  background:
    rgba(255,255,255,0.12);

  color: #fff;

  cursor: pointer;

  font-size: 1.1rem;

}

.lightbox-nav {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 44px;

  height: 44px;

  border: 0;

  border-radius: 12px;

  background:
    rgba(255,255,255,0.1);

  color: #fff;

  cursor: pointer;

  font-size: 1.4rem;

}

.lightbox-nav:hover,
.lightbox-close:hover {

  background:
    rgba(255,255,255,0.25);

}

.lightbox-prev {

  left: -56px;

}

.lightbox-next {

  right: -56px;

}

.lightbox-caption {

  margin-top: 16px;

  text-align: center;

  color:
    rgba(255,255,255,0.7);

  font-family: 'Poppins', sans-serif;

  font-size: 0.85rem;

}

.lightbox-caption strong {

  color: #fff;

}


/* =========================================================
   CLINIC TOUR
   ========================================================= */

#clinic-tour {

  padding: 100px 0;

  background: #fff;

}

.tour-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 48px;

  align-items: center;

}

.tour-text > p:not(.section-eyebrow) {

  margin-bottom: 20px;

  color: var(--text-mid);

  font-size: 0.97rem;

  line-height: 1.85;

}

.tour-features {

  display: flex;

  flex-direction: column;

  gap: 14px;

  margin-top: 28px;

}

.tour-feature {

  display: flex;

  gap: 14px;

  padding: 16px 18px;

  align-items: flex-start;

  border:
    1px solid var(--gray-border);

  border-radius: 12px;

  background: var(--gray-bg);

  transition: all 0.2s;

}

.tour-feature:hover {

  border-color: var(--teal);

}

.tf-icon {

  width: 40px;

  height: 40px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background: var(--teal-pale);

}

.tour-feature h4 {

  margin-bottom: 3px;

  font-size: 0.9rem;

  font-weight: 700;

}

.tour-feature p {

  color: var(--text-light);

  font-size: 0.82rem;

  line-height: 1.5;

}


/* CLINIC PHOTOS */

.tour-img-wrap {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;

}

.tour-img {

  min-height: 200px;

  overflow: hidden;

  border-radius: 16px;

  background:
    linear-gradient(
      160deg,
      #EBF7F5,
      #E8F0FB
    );

}

.tour-img.tall {

  grid-row: span 2;

}

.tour-img img {

  width: 100%;

  height: 100%;

  min-height: 200px;

  display: block;

  object-fit: cover;

}


/* =========================================================
   RECOGNITION
   ========================================================= */

#recognition {

  padding: 100px 0;

  background: var(--gray-bg);

}

.recognition-heading {

  max-width: 600px;

  margin: 0 auto;

  text-align: center;

}

.recognition-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 24px;

  margin-top: 56px;

}

.recog-card {

  padding: 28px 24px;

  text-align: center;

  background: #fff;

  border:
    1px solid var(--gray-border);

  border-radius: 20px;

  transition: all 0.3s;

}

.recog-card:hover {

  transform: translateY(-5px);

  border-color: var(--teal);

  box-shadow:
    0 14px 40px rgba(27,79,138,0.1);

}

.recog-icon {

  display: block;

  margin-bottom: 14px;

  font-size: 2.2rem;

}

.recog-card h3 {

  margin-bottom: 6px;

  font-size: 0.95rem;

  font-weight: 700;

}

.recog-card p {

  color: var(--text-light);

  font-size: 0.82rem;

  line-height: 1.6;

}


/* =========================================================
   CONNECT
   ========================================================= */

#stay-connected {

  position: relative;

  overflow: hidden;

  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      var(--blue-dark),
      var(--blue) 45%,
      var(--teal)
    );

}

.connected-inner {

  max-width: 700px;

  margin: 0 auto;

  padding: 0 24px;

  text-align: center;

}

.connected-eyebrow {

  margin-bottom: 12px;

  color:
    rgba(255,255,255,0.6);

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

}

#stay-connected h2 {

  margin-bottom: 14px;

  color: #fff;

  font-size:
    clamp(1.8rem,3vw,2.6rem);

  font-weight: 800;

}

#stay-connected > .connected-inner > p:not(.connected-eyebrow) {

  margin-bottom: 36px;

  color:
    rgba(255,255,255,0.8);

  font-size: 1rem;

  line-height: 1.7;

}

.connect-btns {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

}

.btn-white {

  padding: 14px 28px;

  border-radius: 12px;

  background: #fff;

  color: var(--blue);

  font-family: 'Poppins', sans-serif;

  font-size: 0.95rem;

  font-weight: 700;

  text-decoration: none;

}

.btn-wa {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 14px 28px;

  border-radius: 12px;

  background: #25D366;

  color: #fff;

  font-family: 'Poppins', sans-serif;

  font-size: 0.95rem;

  font-weight: 700;

  text-decoration: none;

}

.btn-white:hover,
.btn-wa:hover {

  transform: translateY(-2px);

}

.social-row {

  display: flex;

  justify-content: center;

  gap: 14px;

  margin-top: 32px;

}

.soc-btn {

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid rgba(255,255,255,0.2);

  border-radius: 14px;

  background:
    rgba(255,255,255,0.12);

  color: #fff;

  text-decoration: none;

  transition: all 0.2s;

}

.soc-btn:hover {

  background:
    rgba(255,255,255,0.25);

  transform: translateY(-2px);

}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

  padding: 60px 0 0;

  background: var(--text-dark);

  color:
    rgba(255,255,255,0.75);

}

.footer-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

}

.footer-grid {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1.5fr;

  gap: 40px;

  padding-bottom: 48px;

  border-bottom:
    1px solid rgba(255,255,255,0.1);

}

.footer-brand img {

  height: 52px;

  margin-bottom: 16px;

  display: block;

  filter: brightness(10);

}

.footer-brand p {

  max-width: 280px;

  margin-bottom: 20px;

  font-size: 0.85rem;

  line-height: 1.7;

}

.social-icons {

  display: flex;

  gap: 10px;

}

.social-icon {

  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background:
    rgba(255,255,255,0.08);

  color:
    rgba(255,255,255,0.8);

  text-decoration: none;

}

.social-icon:hover {

  background: var(--teal);

  color: #fff;

}

.footer-col h4 {

  margin-bottom: 16px;

  color: #fff;

  font-family: 'Poppins', sans-serif;

  font-size: 0.9rem;

  font-weight: 700;

}

.footer-col ul {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-col li {

  margin-bottom: 10px;

}

.footer-col li a {

  color:
    rgba(255,255,255,0.65);

  font-size: 0.85rem;

  text-decoration: none;

}

.footer-col li a:hover {

  color: var(--teal-light);

}

.footer-contact-item {

  display: flex;

  gap: 10px;

  align-items: flex-start;

  margin-bottom: 12px;

  font-size: 0.84rem;

  line-height: 1.5;

}

.footer-contact-item a {

  color:
    rgba(255,255,255,0.65);

  text-decoration: none;

}

.footer-contact-item a:hover {

  color: var(--teal-light);

}

.footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 16px;

  padding: 20px 0;

}

.footer-bottom p {

  font-size: 0.82rem;

}

.footer-links {

  display: flex;

  flex-wrap: wrap;

  gap: 20px;

}

.footer-links a {

  color:
    rgba(255,255,255,0.55);

  font-size: 0.82rem;

  text-decoration: none;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .gallery-grid {
    columns: 3;
  }

  .recognition-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width: 900px) {

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

}


@media (max-width: 768px) {

  nav.desktop-nav {
    display: none;
  }

  .header-actions .btn-call,
  .header-actions .btn-primary {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .floating-call,
  .floating-wa {
    display: flex;
  }

  .gallery-grid {
    columns: 2;
  }

  .tour-img-wrap {
    grid-template-columns: 1fr;
  }

  .tour-img.tall {
    grid-row: auto;
  }

  .recognition-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-row {
    gap: 28px;
  }

}


@media (max-width: 480px) {

  .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .breadcrumb-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-grid {
    columns: 1;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 7px 13px;
  }

  .connect-btns {
    flex-direction: column;
  }

  .connect-btns a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

}