/* ================================================================
   VMAX WINGS LLP — Master Stylesheet
   Theme: Black & Gold (matches brand logo)
   ================================================================ */

:root {
  --gold: #d4af37;
  --gold-2: #f0d27a;
  --gold-deep: #a8801f;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --gray: #6b6b6b;
  --gray-light: #b8b8b8;
  --white: #ffffff;
  --soft: #f6f4ee;

  --ff-head: 'Cormorant Garamond', 'Playfair Display', serif;
  --ff-body: 'Montserrat', system-ui, sans-serif;

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.30);
  --shadow-gold: 0 18px 40px rgba(212, 175, 55, 0.35);

  --radius: 14px;
  --transition: all 0.4s cubic-bezier(.2, .9, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: #2a2a2a;
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

a { color: var(--gold-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

.text-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding: 100px 0; }
.section-alt { background: var(--soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 30px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-deep); }

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.lead-muted { color: #4a4a4a; font-size: 1.05rem; }

/* =============== BUTTONS =============== */

.btn {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 13px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
  color: var(--black);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
  border: 1px solid transparent;
}
.btn-gold:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.55);
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}
.btn-gold:hover::after { left: 100%; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-lg { padding: 14px 34px; font-size: 14px; }

/* =============== TOPBAR =============== */

.topbar {
  background: var(--black);
  color: var(--gray-light);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.topbar-left span { margin-right: 30px; }
.topbar-left i, .topbar-right a { color: var(--gold); }
.topbar-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  margin-left: 8px;
  transition: var(--transition);
}
.topbar-right a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* =============== NAVBAR =============== */

.main-nav {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.main-nav.scrolled {
  padding: 8px 0;
  background: rgba(10, 10, 10, 0.98);
}
.navbar-brand {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.navbar-brand img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.35));
  transition: var(--transition);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .brand-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
}
.brand-text .brand-tag {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.main-nav.scrolled .navbar-brand img { height: 46px; }
.main-nav.scrolled .brand-text .brand-name { font-size: 1.2rem; }
@media (max-width: 575px) {
  .navbar-brand img { height: 42px; }
  .brand-text .brand-name { font-size: 1.05rem; letter-spacing: 1px; }
  .brand-text .brand-tag { font-size: 8px; }
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-deep));
  transform: translateX(-50%);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gold-glow); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* =============== HERO =============== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: #000 url('../images/portfolio/WhatsApp Image 2026-04-27 at 1.14.51 PM (3).jpeg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(10,10,10,0.30) 50%, rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse at 25% 50%, rgba(212,175,55,0.10) 0%, transparent 60%);
  z-index: 1;
}
.hero-video {
  filter: brightness(1.05) contrast(1.02);
  will-change: transform;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.08); }
}
.hero-content { position: relative; z-index: 2; padding: 120px 0; }

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: 16px;
  position: relative;
}
.hero-tag::after {
  content: '';
  position: absolute;
  left: 0; bottom: 8px;
  width: 60px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 18px 0 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.hero-cta .btn { margin-right: 14px; margin-bottom: 12px; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: floatY 2.4s ease-in-out infinite;
}
.hero-scroll i { display: block; font-size: 22px; margin-bottom: 6px; }
@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* =============== ABOUT MEDIA =============== */

.about-media {
  position: relative;
  perspective: 1200px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: var(--transition);
}
.about-img-main:hover { transform: rotateY(0) rotateX(0); }
.about-img-accent {
  position: absolute;
  bottom: -40px; right: -30px;
  width: 55%;
  border-radius: var(--radius);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-md);
  transform: rotateY(6deg);
  transition: var(--transition);
}
.about-img-accent:hover { transform: rotateY(0); }
.about-badge {
  position: absolute;
  top: -25px; left: -25px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  font-family: var(--ff-head);
  border: 6px solid var(--white);
  z-index: 2;
}
.about-badge .num { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 600; margin-top: 4px; line-height: 1.2; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  padding: 8px 0;
  font-weight: 500;
  color: #333;
}
.check-list i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 18px;
}

/* =============== SERVICE CARDS =============== */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  text-align: left;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
  z-index: 0;
  opacity: 0;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover h4,
.service-card:hover p { color: var(--white); }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  transform: rotateY(360deg);
}
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: all 0.7s cubic-bezier(.2, .9, .3, 1);
}

.service-card h4 { font-size: 1.4rem; margin-bottom: 12px; transition: var(--transition); }
.service-card p { color: var(--gray); margin: 0; transition: var(--transition); }

/* =============== STATS =============== */

.stats-strip {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.stat { position: relative; }
.stat .counter {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stat p {
  margin: 6px 0 0;
  color: var(--gray-light);
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* =============== STRIDES-STYLE PORTFOLIO TILES =============== */
.project-tile {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.project-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.project-tile .tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project-tile .tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2, .9, .3, 1);
}
.project-tile:hover .tile-img img { transform: scale(1.08); }
.project-tile .tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
}
.project-tile .tile-meta {
  padding: 18px 20px 22px;
  border-top: 2px solid var(--gold);
}
.project-tile .tile-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--black);
  margin: 0 0 4px;
  transition: var(--transition);
}
.project-tile:hover .tile-title { color: var(--gold-deep); }
.project-tile .tile-event {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-tile .tile-event i { color: var(--gold); }

/* =============== PORTFOLIO CARDS =============== */

.portfolio-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: var(--transition);
}
.portfolio-card img,
.portfolio-card video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2, .9, .3, 1);
  display: block;
}
.portfolio-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.portfolio-card:hover img,
.portfolio-card:hover video { transform: scale(1.1); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h5 {
  color: var(--white);
  margin: 0;
  font-size: 1.3rem;
  transform: translateY(15px);
  transition: var(--transition);
}
.portfolio-overlay span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateY(15px);
  transition: var(--transition);
  transition-delay: 0.05s;
}
.portfolio-card:hover .portfolio-overlay h5,
.portfolio-card:hover .portfolio-overlay span { transform: translateY(0); }

.video-card::before {
  content: '\F4F4';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulseGold 2s infinite;
  pointer-events: none;
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 25px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Filters */
.portfolio-filter .filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #333;
  padding: 8px 22px;
  margin: 0 6px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.portfolio-filter .filter-btn:hover,
.portfolio-filter .filter-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  border-color: transparent;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

/* Lightbox */
.vmax-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vmax-lightbox.active { display: flex; }
.vmax-lightbox .lb-content {
  max-width: 92vw;
  max-height: 90vh;
}
.vmax-lightbox .lb-content img,
.vmax-lightbox .lb-content video {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}
.vmax-lightbox .lb-close,
.vmax-lightbox .lb-prev,
.vmax-lightbox .lb-next {
  position: absolute;
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: var(--transition);
  z-index: 2;
}
.vmax-lightbox .lb-close { top: 24px; right: 24px; }
.vmax-lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.vmax-lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.vmax-lightbox .lb-close:hover,
.vmax-lightbox .lb-prev:hover,
.vmax-lightbox .lb-next:hover {
  background: var(--white);
  transform: scale(1.1);
}
.vmax-lightbox .lb-prev:hover,
.vmax-lightbox .lb-next:hover { transform: translateY(-50%) scale(1.1); }

/* =============== WHY US =============== */

.why-us {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.92) 0%, rgba(10,10,10,0.7) 60%, rgba(0,0,0,0.5) 100%);
}
.why-us .section-title { color: var(--white); }

.why-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.18);
  transform: perspective(1400px) rotateY(3deg);
  transition: var(--transition);
}
.why-media:hover { transform: perspective(1400px) rotateY(0); }
.why-media .carousel,
.why-media .carousel-inner,
.why-media .carousel-item { height: 670px; }
.why-media .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-media .carousel-control-prev,
.why-media .carousel-control-next { width: 8%; opacity: 0; transition: var(--transition); }
.why-media:hover .carousel-control-prev,
.why-media:hover .carousel-control-next { opacity: 0.85; }
.why-media .carousel-indicators { margin-bottom: 1.4rem; }
.why-media .carousel-indicators [data-bs-target] {
  width: 30px; height: 3px;
  background: var(--gold);
  border: none;
  opacity: 0.4;
}
.why-media .carousel-indicators .active { opacity: 1; }
.why-frame-badge {
  position: absolute;
  bottom: -1%; right: -1%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  z-index: 4;
}
@media (max-width: 991px) {
  .why-media { transform: none; margin-bottom: 30px; }
  .why-media .carousel,
  .why-media .carousel-inner,
  .why-media .carousel-item { height: 340px; }
}

/* =============== GLOBAL PRESENCE =============== */
.global-section {
  background: linear-gradient(135deg, #fafaf6 0%, var(--soft) 100%);
  position: relative;
  overflow: hidden;
}
.global-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
}
.global-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 60%);
  pointer-events: none;
}
.global-intro {
  max-width: 920px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}
.global-intro p {
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 1199px) {
  .country-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .country-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 479px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 359px) {
  .country-grid { grid-template-columns: 1fr; }
}
.country-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.country-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}
.country-card:hover::before { transform: scaleX(1); }
.country-flag {
  width: 92px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.13);
  transition: var(--transition);
}
.country-card:hover .country-flag {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.country-flag.region-flag {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 2rem;
}
.country-name {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
  margin: 0;
  letter-spacing: 0.3px;
}
.country-card:hover .country-name { color: var(--gold-deep); }

@media (max-width: 575px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .country-flag { width: 80px; height: 58px; }
  .country-flag.region-flag { font-size: 1.7rem; }
  .country-name { font-size: 0.95rem; }
}

/* =============== WHERE WE WORK (geo strip) =============== */
.geo-section { background: var(--soft); }
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.geo-chip {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid var(--gold);
}
.geo-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-deep);
}
.geo-chip .geo-flag {
  font-size: 1.6rem;
  line-height: 1;
}
.geo-chip .geo-name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  color: #2a2a2a;
  letter-spacing: 0.5px;
}

/* =============== TESTIMONIALS =============== */
.testimonials-section {
  background: linear-gradient(135deg, var(--black), var(--black-2));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.12), transparent 60%);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .eyebrow,
.why-us .eyebrow {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.testimonial-card p { flex: 1 1 auto; }
.testimonial-card .author { margin-top: auto; }
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.testimonial-card .quote-mark {
  font-family: var(--ff-head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -10px;
  display: block;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}
.testimonial-card .author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card .author .meta { line-height: 1.3; }
.testimonial-card .author .name { color: var(--white); font-weight: 600; font-size: 14px; }
.testimonial-card .author .role { color: rgba(255, 255, 255, 0.55); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* Testimonial multi-card carousel (3 cards per slide on desktop) */
.testimonial-multi { position: relative; padding: 0 60px; }
.testimonial-multi .carousel-inner {
  padding: 10px 0 60px;
  overflow: hidden;
  border-radius: 12px;
}
.testimonial-multi .carousel-item .row { align-items: stretch; }
.testimonial-multi .carousel-item .row > [class*="col-"] { display: flex; }
/* Smooth slide transition — premium ease-out, longer duration, no jerky stop */
.testimonial-multi .carousel-item {
  transition: transform 0.85s cubic-bezier(.22, .61, .36, 1);
}
.testimonial-multi .carousel-item.carousel-item-start,
.testimonial-multi .carousel-item.carousel-item-end {
  transition: transform 0.85s cubic-bezier(.22, .61, .36, 1);
}
.testimonial-multi .carousel-indicators { bottom: 0; margin: 0; gap: 8px; }
.testimonial-multi .carousel-indicators [data-bs-target] {
  width: 32px; height: 4px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  opacity: 0.35;
  transition: var(--transition);
}
.testimonial-multi .carousel-indicators [data-bs-target].active {
  opacity: 1;
  width: 50px;
}
.testimonial-multi .carousel-control-prev,
.testimonial-multi .carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  top: calc(50% - 30px);
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: var(--transition);
}
.testimonial-multi .carousel-control-prev { left: 0; }
.testimonial-multi .carousel-control-next { right: 0; }
.testimonial-multi .carousel-control-prev:hover,
.testimonial-multi .carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}
.testimonial-multi .carousel-control-prev-icon,
.testimonial-multi .carousel-control-next-icon { width: 18px; height: 18px; }
@media (max-width: 991px) {
  .testimonial-multi { padding: 0 12px; }
  .testimonial-multi .carousel-control-prev,
  .testimonial-multi .carousel-control-next { display: none; }
}

/* Testimonial carousel (slider) */
.testimonial-carousel { padding: 0 60px; position: relative; }
.testimonial-carousel .carousel-inner { padding: 10px 0 60px; }
.testimonial-slide {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  position: relative;
}
.testimonial-slide .quote-mark {
  font-family: var(--ff-head);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.testimonial-slide p {
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  font-family: var(--ff-head);
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-slide .author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}
.testimonial-slide .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
}
.testimonial-slide .meta { text-align: left; line-height: 1.3; }
.testimonial-slide .name { color: var(--white); font-weight: 600; font-size: 15px; }
.testimonial-slide .role {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Indicators */
.testimonial-carousel .carousel-indicators {
  bottom: 0;
  margin: 0;
  gap: 8px;
}
.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 32px; height: 4px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  opacity: 0.35;
  transition: var(--transition);
}
.testimonial-carousel .carousel-indicators [data-bs-target].active {
  opacity: 1;
  width: 50px;
}

/* Prev/Next buttons */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: var(--transition);
}
.testimonial-carousel .carousel-control-prev { left: 0; }
.testimonial-carousel .carousel-control-next { right: 0; }
.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}
.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon { width: 18px; height: 18px; }

@media (max-width: 767px) {
  .testimonial-carousel { padding: 0 8px; }
  .testimonial-slide { padding: 40px 24px; }
  .testimonial-slide .quote-mark { font-size: 4.5rem; }
  .testimonial-slide p { font-size: 1.05rem; }
  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next { display: none; }
}

.why-item {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  transition: var(--transition);
}
.why-item:hover {
  transform: translateX(10px);
  background: rgba(212, 175, 55, 0.1);
}
.why-item i {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.why-item h5 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255, 255, 255, 0.65); font-size: 14px; margin: 0; }

/* =============== CLIENTS / MARQUEE (full-width logo strip) =============== */
.clients-section { padding: 80px 0 90px; }

.clients-marquee {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clients-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: scroll-x 35s linear infinite;
  width: max-content;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-track .client-logo {
  flex: 0 0 auto;
  height: 90px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px 18px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.clients-track .client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}
.clients-track .client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.clients-track .client-logo:hover img { transform: scale(1.05); }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============== VALUE / PROCESS =============== */

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.process-step .step-num {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.process-step h5 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 14px; margin: 0; }

/* =============== PAGE BANNER =============== */

.page-banner {
  position: relative;
  padding: 130px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
}
.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.page-banner .breadcrumb {
  display: inline-flex;
  background: transparent;
  padding: 0;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.page-banner .breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--gold); content: "›"; }

/* =============== CONTACT =============== */

.contact-card {
  background: var(--white);
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-gold);
}
.contact-card h5 { margin-bottom: 8px; }
.contact-card p, .contact-card a { color: var(--gray); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}
.contact-form-wrap .form-control {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  background: #fafafa;
  transition: var(--transition);
}
.contact-form-wrap .form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-feedback { font-size: 14px; }
.form-feedback.success { color: #1f7a3d; }
.form-feedback.error { color: #b53030; }

.contact-side {
  background: linear-gradient(135deg, var(--black), var(--black-2));
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-side::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
}
.contact-side h4 { color: var(--gold); margin-bottom: 14px; }
.contact-side p { color: rgba(255, 255, 255, 0.75); }

.contact-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.contact-side-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-side-list i {
  color: var(--gold);
  font-size: 22px;
  margin-top: 4px;
}
.contact-side-list span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-side-list a { color: var(--white); }
.contact-side-list a:hover { color: var(--gold); }

.contact-side-socials a {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
}
.contact-side-socials a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.map-section iframe { display: block; filter: grayscale(0.3) contrast(1.05); }

/* =============== CTA STRIP =============== */

.cta-strip {
  background: linear-gradient(135deg, var(--black), var(--black-2));
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.18), transparent 60%);
  transform: rotate(20deg);
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin: 0;
  position: relative;
}

/* =============== FOOTER =============== */

.footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.footer h6 {
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h6::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-logo {
  height: 140px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: block;
}
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li, .footer-contact li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact i { color: var(--gold); margin-right: 10px; }

.footer-socials a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  margin-top: 14px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Certificate strip */
.cert-strip {
  margin-top: 50px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cert-strip-title {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.cert-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.cert-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  min-width: 170px;
}
.cert-badge:hover {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.10);
  border-color: var(--gold);
}
.cert-badge img {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}
.cert-badge .cert-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cert-badge .cert-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
.cert-badge .cert-sub {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .row { align-items: center; }
.footer-bottom .credit {
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .credit a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}
.footer-bottom .credit a:hover { color: var(--gold-2); text-decoration: underline; }
@media (max-width: 575px) {
  .footer-bottom .credit, .footer-bottom .copy { text-align: center; margin: 4px 0; }
}

/* =============== FLOATING WIDGETS =============== */

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
  transform: translateY(-4px) rotate(360deg);
  color: var(--black);
}

.whats-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: var(--transition);
  animation: pulseGreen 2s infinite;
}
.whats-float:hover { color: var(--white); transform: scale(1.1); }
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =============== INDUSTRIES SERVED =============== */
.industries-section { background: var(--soft); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}
.industry-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.industry-card > * { position: relative; z-index: 1; }
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  color: var(--black);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover .industry-icon { background: var(--white); color: var(--gold-deep); transform: rotateY(360deg); }
.industry-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.7s cubic-bezier(.2, .9, .3, 1);
}
.industry-card h6 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
  color: var(--black);
  letter-spacing: 0.3px;
}

/* =============== STAND TYPES =============== */
.standtypes-section { background: var(--white); }
.standtype-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.standtype-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}
.standtype-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.standtype-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2, .9, .3, 1);
}
.standtype-card:hover .standtype-img img { transform: scale(1.08); }
.standtype-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.standtype-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}
.standtype-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.standtype-body h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.standtype-body p {
  color: var(--gray);
  font-size: 14px;
  flex: 1;
  margin-bottom: 18px;
}
.standtype-body .btn { align-self: flex-start; }

/* =============== MAJOR SHOWS 2026 (white section, white cards) =============== */
.shows-section {
  background: var(--white);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.shows-section::before, .shows-section::after { display: none; }
.shows-section .container { position: relative; z-index: 1; }
.shows-section .section-sub { color: #4a4a4a !important; }

/* "2026 Calendar" eyebrow — force visible on white section */
.shows-section .eyebrow {
  background: rgba(212, 175, 55, 0.15) !important;
  color: var(--gold-deep) !important;
  -webkit-text-fill-color: var(--gold-deep) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

/* Segmented-control style filter pills (iOS / premium tabs) — single line */
.shows-filter {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 3px;
  margin: 0 auto 50px;
  padding: 6px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.shows-filter::-webkit-scrollbar { display: none; }
.shows-filter .month-btn {
  background: transparent;
  border: none;
  color: #6b6b6b;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  flex: 0 0 auto;
  white-space: nowrap;
}
.shows-filter .month-btn:hover {
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.08);
}
.shows-filter .month-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--black);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
@media (max-width: 575px) {
  .shows-filter { padding: 4px; gap: 2px; border-radius: 20px; }
  .shows-filter .month-btn { padding: 6px 8px; font-size: 10px; letter-spacing: 1px; }
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.shows-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Premium dark "event ticket" cards on white section — high contrast, luxe */
.show-card {
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1), box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.show-card.hide { display: none; }

/* Gold corner glow */
.show-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 65%);
  pointer-events: none;
  transition: var(--transition);
}
/* Subtle gold dot top-left */
.show-card::after {
  content: '';
  position: absolute;
  top: 28px; right: 28px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.show-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px var(--gold);
}
.show-card:hover::before {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.30), transparent 65%);
}

.show-card > * { position: relative; z-index: 1; }

/* Month + year line */
.show-card .show-month {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.show-card .show-month::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* Show name — large serif white */
.show-card h5 {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* Meta info */
.show-card .show-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.show-card .show-meta li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.show-card .show-meta li i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* CTA link — gold uppercase with arrow */
.show-card .show-link {
  align-self: flex-start;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  transition: var(--transition);
}
.show-card .show-link i {
  transition: transform 0.3s ease;
  font-size: 13px;
}
.show-card .show-link:hover { color: var(--gold-2); }
.show-card .show-link:hover i { transform: translateX(5px); }

@media (max-width: 575px) {
  .show-card { padding: 24px 22px 22px; }
  .show-card h5 { font-size: 1.3rem; }
  .show-card::after { top: 22px; right: 22px; }
}

/* =============== PAN-INDIA CITIES =============== */
.cities-section { background: var(--soft); }
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.city-card {
  position: relative;
  border-radius: 14px;
  padding: 28px 24px;
  overflow: hidden;
  color: var(--white);
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  border: none;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 50%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.05) 100%);
  transition: var(--transition);
  z-index: 1;
}
.city-card:hover::before {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.30), transparent 50%),
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.20) 50%, transparent 100%);
}
.city-card > * { position: relative; z-index: 2; }
.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--gold);
}
.city-card .city-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}
.city-card h5 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.8);
}
.city-card .city-state {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.7);
}
.city-card .venue-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}
.city-card .venue-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.city-card .venue-list li:first-child { border-top: none; padding-top: 0; }
.city-card .venue-list li i { color: var(--gold); margin-right: 6px; font-size: 11px; }

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

@media (max-width: 575px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 24px 12px; }
  .industry-icon { width: 54px; height: 54px; font-size: 22px; }
  .industry-card h6 { font-size: 0.92rem; }
  .standtype-body { padding: 18px 20px 22px; }
  .standtype-body h4 { font-size: 1.15rem; }
  .show-card { padding: 22px 20px; }
  .city-card { padding: 24px 20px; }
}

/* =============== SECTION BACKGROUND OVERRIDES (custom mix) =============== */
.clients-section { background: var(--soft); }                         /* cream */
.industries-section { background: var(--soft) !important; }           /* cream */
.standtypes-section { background: var(--white) !important; }          /* white */
.global-section { background: var(--soft) !important; }               /* cream */
.global-section::before, .global-section::after { display: none; }
.cities-section { background: var(--white) !important; }              /* white */

/* Services section → white (both index and services pages) */
.services-section {
  background: var(--white) !important;
}
.services-section::before { display: none; }

/* =============== UTILITIES =============== */

.portfolio-item.hide { display: none; }

/* =============== RESPONSIVE =============== */

@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  .navbar-nav .nav-link { padding: 10px 8px !important; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 80px 0; }
  .about-img-accent { display: none; }
  .about-badge { width: 110px; height: 110px; top: -15px; left: -15px; }
  .why-us { background-attachment: scroll; }
  .page-banner { background-attachment: scroll; padding: 90px 0 70px; }
}

@media (max-width: 575px) {
  .topbar { font-size: 12px; }
  .hero-cta .btn { width: 100%; margin-right: 0; }
  .contact-form-wrap, .contact-side { padding: 30px 22px; }
  .back-to-top, .whats-float { width: 44px; height: 44px; font-size: 16px; bottom: 18px; }
  .whats-float { width: 50px; height: 50px; font-size: 24px; }
}

/* =============== COMPREHENSIVE MOBILE RESPONSIVENESS =============== */

/* Tablets and below */
@media (max-width: 991px) {
  body { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .section-sub { font-size: 0.98rem; margin-bottom: 30px; }
  .eyebrow { font-size: 11px; letter-spacing: 3px; padding: 5px 12px; }

  /* Topbar — hide email on tablet */
  .topbar { padding: 8px 0; }
  .topbar-left { display: none !important; }
  .topbar-right { width: 100%; justify-content: center; display: flex; }

  /* Navbar tweaks */
  .main-nav { padding: 10px 0; }
  .navbar-brand { gap: 10px; }
  .navbar-brand img { height: 50px; }
  .brand-text .brand-name { font-size: 1.15rem; letter-spacing: 1.2px; }
  .brand-text .brand-tag { font-size: 8px; letter-spacing: 2px; }
  .navbar-nav .nav-link::before { display: none; }
  .navbar-nav .nav-link { padding: 12px 8px !important; border-bottom: 1px solid rgba(212, 175, 55, 0.08); }
  .navbar-nav .nav-link:last-child { border-bottom: none; }
  .nav-item.ms-lg-3 { margin-top: 12px; padding: 0 8px; }
  .nav-item.ms-lg-3 .btn { width: 100%; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 7vw, 3.4rem); margin-bottom: 18px; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-tag { font-size: 11px; letter-spacing: 4px; }
  .hero-scroll { display: none; }

  /* About */
  .about-media { margin-bottom: 30px; }
  .about-img-main { transform: none; }
  .about-badge { width: 90px; height: 90px; top: -12px; left: -12px; border-width: 4px; }
  .about-badge .num { font-size: 1.5rem; }
  .about-badge .lbl { font-size: 9px; }

  /* Service cards */
  .service-card { padding: 32px 24px; }
  .service-card h4 { font-size: 1.2rem; }
  .service-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 16px; }

  /* Stats */
  .stats-strip { padding: 50px 0; }
  .stat .counter { font-size: 2rem; }
  .stat p { font-size: 12px; letter-spacing: 1px; }

  /* Portfolio teaser tiles */
  .project-tile .tile-meta { padding: 14px 16px 18px; }
  .project-tile .tile-title { font-size: 1.05rem; }
  .project-tile .tile-event { font-size: 11px; letter-spacing: 1px; }

  /* Why us */
  .why-item { padding: 18px; }
  .why-item h5 { font-size: 1rem; }
  .why-item p { font-size: 13px; }

  /* Global Presence intro */
  .global-intro { margin-bottom: 36px; }
  .global-intro p { font-size: 0.95rem; line-height: 1.7; }

  /* Testimonials */
  .testimonial-card { padding: 28px 24px; }
  .testimonial-card p { font-size: 0.92rem; }
  .testimonial-card .quote-mark { font-size: 3.5rem; }

  /* Page banner */
  .page-banner h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .page-banner p { font-size: 1rem; }
  .page-banner { padding: 80px 0 60px; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 26px 22px; }

  /* Contact */
  .contact-card { padding: 32px 20px; }
  .contact-icon { width: 60px; height: 60px; font-size: 22px; }
  .contact-side-list li { padding: 12px 0; }

  /* Map height */
  .map-section iframe { height: 380px; }

  /* CTA strip */
  .cta-strip { padding: 60px 0; }
  .cta-strip h2 { font-size: clamp(1.4rem, 4vw, 2rem); padding: 0 12px; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer h6 { margin-bottom: 16px; font-size: 12px; }
  .footer-logo { height: 110px; margin: 0 auto; }
  .footer .col-lg-4 { text-align: center; }
  .footer .col-lg-4 .footer-socials { display: flex; justify-content: center; }
  .cert-strip { margin-top: 40px; padding: 24px 0; }
  .cert-row { gap: 18px; }
  .cert-badge { min-width: 145px; padding: 12px 16px; gap: 10px; }
  .cert-badge img { height: 42px; }
  .cert-badge .cert-name { font-size: 0.95rem; }
  .cert-badge .cert-sub { font-size: 9px; letter-spacing: 1px; }

  /* Why-us carousel — already handled in section but add safety */
  .why-media .carousel,
  .why-media .carousel-inner,
  .why-media .carousel-item { height: 280px; }

  /* Clients marquee — smaller logo cards on mobile */
  .clients-track { gap: 36px; }
  .clients-track .client-logo { width: 140px; height: 76px; padding: 10px 14px; }

  /* Lightbox close/nav buttons */
  .vmax-lightbox .lb-close,
  .vmax-lightbox .lb-prev,
  .vmax-lightbox .lb-next { width: 42px; height: 42px; font-size: 18px; }
  .vmax-lightbox .lb-close { top: 14px; right: 14px; }
  .vmax-lightbox .lb-prev { left: 8px; }
  .vmax-lightbox .lb-next { right: 8px; }
}

/* Phones */
@media (max-width: 575px) {
  .section { padding: 50px 0; }
  .container { padding-left: 18px; padding-right: 18px; }

  /* Hero */
  .hero { min-height: 88vh; }
  .hero-content { padding: 70px 0; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); line-height: 1.1; }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta .btn-lg { padding: 12px 24px; font-size: 13px; }

  /* Navbar */
  .navbar-brand { gap: 8px; }
  .navbar-brand img { height: 40px; }
  .brand-text .brand-name { font-size: 0.95rem; letter-spacing: 0.8px; }
  .brand-text .brand-tag { display: none; }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Service cards — single column already via Bootstrap */
  .service-card { padding: 28px 20px; }

  /* About badge sizing */
  .about-badge { width: 78px; height: 78px; top: -10px; left: -10px; }
  .about-badge .num { font-size: 1.3rem; }
  .about-badge .lbl { font-size: 8px; letter-spacing: 0.5px; }

  /* Footer cert badge centering */
  .cert-row { flex-direction: column; gap: 14px; align-items: stretch; }
  .cert-badge { justify-content: center; min-width: 0; width: 100%; }

  /* Footer columns */
  .footer .footer-bottom .row { flex-direction: column; }
  .footer .footer-bottom .credit,
  .footer .footer-bottom .copy { text-align: center; }

  /* Contact card */
  .contact-card { padding: 28px 18px; }
  .contact-card p { font-size: 0.9rem; }

  /* Map */
  .map-section iframe { height: 320px; }

  /* CTA */
  .cta-strip h2 { font-size: 1.3rem; }
  .cta-strip .btn { padding: 12px 22px; font-size: 12px; }

  /* Why-us carousel — shorter on phone */
  .why-media .carousel,
  .why-media .carousel-inner,
  .why-media .carousel-item { height: 240px; }
  .why-frame-badge { padding: 8px 16px; font-size: 0.85rem; bottom: -14px; right: -10px; }

  /* Clients marquee — even smaller on phone */
  .clients-track { gap: 28px; }
  .clients-track .client-logo { width: 120px; height: 68px; padding: 8px 12px; }

  /* Portfolio filter buttons wrap nicely */
  .portfolio-filter .filter-btn { padding: 7px 16px; font-size: 11px; margin: 0 4px 8px; }

  /* Topbar — keep just socials centered */
  .topbar-right a { width: 28px; height: 28px; margin-left: 6px; font-size: 13px; }

  /* Floating widgets — closer to corners on small */
  .back-to-top { right: 14px; bottom: 14px; }
  .whats-float { left: 14px; bottom: 14px; width: 48px; height: 48px; font-size: 22px; }

  /* Page banner */
  .page-banner { padding: 60px 0 50px; }
  .page-banner h1 { font-size: 1.6rem; }
  .page-banner p { font-size: 0.9rem; }
  .page-banner .breadcrumb-item,
  .page-banner .breadcrumb-item a { font-size: 10px; letter-spacing: 1px; }
}

/* Tiny phones (< 360px) */
@media (max-width: 359px) {
  .navbar-brand img { height: 36px; }
  .brand-text .brand-name { font-size: 0.85rem; }
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .country-grid { grid-template-columns: 1fr; }
  .clients-track .client-logo { width: 110px; height: 62px; }
}

/* Landscape phones — keep hero usable */
@media (max-width: 991px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 50px 0; }
  .hero-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-sub { display: none; }
}
