/* ==========================================================================
   TRIVELA WEBSITE - EXACT MOCKUP DESIGN MATCH
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* Custom Local Fonts Declaration */
@font-face {
  font-family: "Bizmo";
  src: url("../fonts/Bizmo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Corsa Grotesk";
  src: url("../fonts/Corsa Grotesk XBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange-primary: #ff6a00;
  --orange-glow: #ff6a00;
  --bg-peach: #ffe5d4;
  --bg-dark: #1c1c1c;
  --bg-darker: #121212;
  --text-dark: #1c1c1c;
  --text-light: #f5f5f5;
  --font-heading: "Corsa Grotesk", "Outfit", sans-serif;
  --font-body: "Corsa Grotesk", "Plus Jakarta Sans", sans-serif;
  --font-brand: "Bizmo", "Corsa Grotesk", sans-serif;
  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  position: relative;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 800;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background-color: var(--orange-primary);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  padding: 0 36px;
  gap: 24px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  padding: 2px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-wrap:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.site-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav ul {
  position: relative;
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 1;
}

/* Sliding Box Outline Indicator - Matches Mockup Exact Outline Box */
.nav-box-indicator {
  position: absolute;
  border: 1.5px solid #ffffff;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
}

.nav-box-indicator.active {
  opacity: 1;
}

/* ==========================================================================
   HEADER RIGHT & LANGUAGE SWITCHER
   ========================================================================== */
.header-right-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 1001;
  padding: 6px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-toggle:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   DESKTOP & HEADER LANGUAGE PILL SWITCHER
   ========================================================================== */
.lang-pill-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 3px 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  user-select: none;
  flex-shrink: 0;
}

.lang-pill-switch:hover {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lang-pill-globe {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.85;
  margin-right: 2px;
}

.lang-pill-divider {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

.lang-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lang-pill-btn:hover {
  color: #ffffff;
}

.lang-pill-btn.active {
  background: #ffffff;
  color: #121212;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: default;
}

/* Mobile Drawer Language Switcher - Hidden on Desktop */
.mobile-lang-drawer-box {
  display: none !important;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 85%;
  max-width: 290px;
  text-align: center;
}

.mobile-lang-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #b0b0b0;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.mobile-lang-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mobile-lang-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-lang-pill:hover,
.mobile-lang-pill.active {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.5);
}

/* ==========================================================================
   HERO SECTION (100% Viewport Height - Exact Mockup Matching)
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--orange-primary);
  min-height: calc(100vh - 82px);
  min-height: calc(100dvh - 82px);
  display: flex;
  flex-direction: column;
  scroll-margin-top: 0;
}

.hero-background-bands {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.hero-top-orange {
  background-color: var(--orange-primary);
  padding: 40px 0 46px;
  display: flex;
  align-items: flex-end;
  flex: 1;
}

.hero-top-orange .container,
.hero-middle-black .container,
.hero-bottom-orange .container {
  width: 100%;
  padding-left: clamp(36px, 10vw, 140px);
}

.hero-title-top {
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -1px;
  animation: heroCinematicText 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-middle-black {
  background-color: #1c1c1c;
  padding: 65px 0 70px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.hero-text-black-band {
  max-width: 54%;
}

.hero-title-mid {
  font-size: clamp(3.4rem, 5.8vw, 5.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  animation: heroCinematicText 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-title-sub {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  animation: heroCinematicText 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-bottom-orange {
  background-color: var(--orange-primary);
  padding: 20px 0 38px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.hero-text-bottom {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
  opacity: 0.95;
  animation: heroCinematicText 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-plus-symbols {
  position: absolute;
  right: 50px;
  bottom: 25px;
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 6px;
}

/* Circle Image Positioned overlapping all 3 bands, anchored inside container */
.hero-circle-anchor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.hero-circle-container {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  pointer-events: auto;
}

.hero-neon-triangle {
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  pointer-events: none;
  z-index: 1;
  animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    opacity: 0.82;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* High-End Professional Cinematic Reveal Animation */
@keyframes heroCinematicText {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroCinematicImage {
  0% {
    opacity: 0;
    transform: scale(1.08) translateY(12px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Hidden by default on Desktop / PC */
.hero-mobile-frame,
.hero-mobile-laser-bg,
.hero-mobile-image-placeholder {
  display: none !important;
}

.hero-neon-triangle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-circle-image {
  position: relative;
  z-index: 2;
  width: clamp(336px, 34vw, 528px);
  height: clamp(336px, 34vw, 528px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  animation: heroCinematicImage 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   SCROLL REVEAL POP-UP ANIMATIONS (All Sections)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered Delays for Grid Elements & Experience Cards */
.service-card:nth-child(2),
.team-member-card:nth-child(2),
.exp-card:nth-child(2),
.testi-orange-card:nth-child(2),
.client-pill-logo:nth-child(2n) {
  transition-delay: 0.15s;
}

.service-card:nth-child(3),
.team-member-card:nth-child(3),
.exp-card:nth-child(3),
.testi-orange-card:nth-child(3),
.client-pill-logo:nth-child(3n) {
  transition-delay: 0.3s;
}

.team-member-card:nth-child(4),
.exp-card:nth-child(4),
.testi-orange-card:nth-child(4),
.client-pill-logo:nth-child(4n) {
  transition-delay: 0.45s;
}

.plus-decor {
  color: var(--orange-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

.hero-plus {
  position: absolute;
  bottom: -40px;
  right: 20px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-peach);
  color: var(--text-dark);
  padding: 0;
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--orange-primary);
  border-radius: 2px;
}

.about-orange-card {
  background: var(--orange-primary);
  color: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.about-orange-card p {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-orange-card p:last-child {
  margin-bottom: 0;
}

/* Curve Cutout Top Right */
.about-curve-cutout {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--bg-dark);
  border-bottom-left-radius: 60px;
}

.about-plus-decor {
  position: absolute;
  right: 3%;
  top: 60%;
  transform: translateY(-50%);
  color: var(--orange-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 2px;
  z-index: 0;
  opacity: 0.8;
}

/* Bottom Right Dark Curve Connecting About Us to Services Section */
.about-bottom-curve {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(260px, 38vw, 520px);
  height: clamp(100px, 16vw, 200px);
  background-color: var(--bg-dark);
  border-top-left-radius: 70px;
  z-index: 1;
  pointer-events: none;
}

.about-bottom-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at top left, transparent 40px, var(--bg-dark) 40px);
}

/* Shared Wrapper for Services & Team Sections with Seamless Asset 5.svg Background */
/* Services Section Left Orange Panel */
.services-orange-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  background-color: var(--orange-primary);
  z-index: 1;
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--bg-dark);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-header-split {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 45px;
}

.services-header-left {
  flex: 0 0 65%;
  text-align: right;
  padding-right: 15px;
  box-sizing: border-box;
}

.services-header-left h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.services-header-right {
  flex: 0 0 35%;
  text-align: left;
  padding-left: 15px;
  box-sizing: border-box;
}

.services-header-right h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  color: var(--orange-primary);
  margin: 0;
  line-height: 1;
}

.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  margin: 0 20px;
}

.service-card {
  background: #181818;
  border-radius: 16px;
  border: 2px solid var(--orange-primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.35);
  border-color: #ff8533;
}

.service-card-top {
  background: var(--orange-primary);
  color: #fff;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 2px solid var(--orange-primary);
  line-height: 1.35;
  letter-spacing: 0.3px;
}

.service-card-body {
  padding: 24px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-lead-text {
  font-size: 0.92rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-sub-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-sub-item h4 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.4;
}

.service-sub-item p {
  font-size: 0.86rem;
  color: #c4c4c4;
  line-height: 1.55;
  margin: 0;
}

.service-card-body ul {
  list-style: none;
}

.service-card-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #ddd;
}

.service-card-body ul li::before {
  content: "•";
  color: var(--orange-primary);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* ==========================================================================
   MEET OUR TEAM SECTION
   ========================================================================== */
.team-section {
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

/* ---- Left Panel (Orange with Laser BG & Large Bottom-Right Curved Cutout) ---- */
.team-left-panel {
  position: relative;
  flex: 0 0 65%;
  background-color: var(--orange-primary);
  border-bottom-right-radius: 220px;
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: max(30px, calc((100vw - var(--container-width)) / 2 + 24px));
  padding-right: 40px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
}

.team-laser-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.team-laser-bg img {
  width: 80%;
  height: 80%;
  display: block;
  object-fit: fill;
  object-position: bottom left;
  opacity: 0.5;
}

.team-title-wrap {
  position: relative;
  z-index: 3;
  max-width: 45%;
}

.team-title {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin: 0;
}

.team-title-dark {
  color: #1c1c1c;
  font-weight: 800;
}

/* CEO Circle Container & Overlay Info */
.team-ceo-container {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.team-ceo-circle {
  position: relative;
  z-index: 3;
  width: auto;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-ceo-circle img {
  height: 100%;
  width: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.team-ceo-overlay-info {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 4;
}

.team-ceo-name span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.team-ceo-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ---- Right Panel (Dark) ---- */
.team-right-panel {
  flex: 0 0 35%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 50px 60px 40px;
  position: relative;
  z-index: 1;
}

.team-right-top-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.team-plus-decor {
  position: absolute;
  top: 48px;
  right: 40px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange-primary);
  letter-spacing: 6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  align-items: start;
  max-width: 380px;
  margin-top: 20px;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 0.85;
  background: #262626;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-photo-placeholder svg {
  width: 55%;
  height: 55%;
}

.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-name span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange-primary);
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--orange-primary);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   COVERAGE AREA SECTION
   ========================================================================== */
.coverage-section {
  background-color: var(--bg-dark);
  padding: 0;
  text-align: center;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.coverage-header .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.coverage-header h2 {
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.coverage-map-box {
  background: #161616;
  border: 2px solid rgba(255, 85, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.coverage-map-box img {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.coverage-desc {
  color: #bbb;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ==========================================================================
   EXPERIENCE SECTION (Carousel Slider & Exact Mockup Matching)
   ========================================================================== */
.experience-section {
  background-color: var(--bg-dark);
  padding: 20px 0;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.experience-header {
  text-align: center;
  margin-bottom: 12px;
}

.experience-header h2 {
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.experience-header h2 .txt-orange {
  color: var(--orange-primary);
}

/* Slider Outer Wrapper & Controls */
.exp-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.exp-slider-track {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 15px 20px 20px;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.exp-slider-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.exp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  box-shadow: 0 0 16px rgba(255, 85, 0, 0.6);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.exp-carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: #ff6b00;
}

.exp-carousel-btn.exp-prev {
  left: -15px;
}

.exp-carousel-btn.exp-next {
  right: -15px;
}

/* Individual Experience Cards with 3D Curved Warp Array */
.exp-card {
  width: 240px;
  min-width: 240px;
  height: 420px;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s ease;
  will-change: transform;
  cursor: pointer;
  position: relative;
}

.photo-card-badge-pill {
  transform: translateZ(12px);
  transition: transform 0.3s ease;
}

.photo-card-overlay {
  transform-style: preserve-3d;
}

/* Card Type A: Text & List Cards */
.exp-card.text-list-card {
  display: flex;
  flex-direction: column;
}

.exp-card-header-pill {
  background: linear-gradient(135deg, #ff6a00 0%, #ff4400 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
  padding: 7px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.exp-card-body-box {
  background: #0e0e0e;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 10px;
  color: #ffffff;
  font-size: 0.75rem;
  flex-grow: 1;
  overflow-y: auto !important;
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.8),
    0 8px 20px rgba(0, 0, 0, 0.6);
  scrollbar-width: thin !important;
  scrollbar-color: var(--orange-primary) #111111 !important;
}

.exp-card-body-box::-webkit-scrollbar {
  display: block !important;
  width: 4px !important;
}

.exp-card-body-box::-webkit-scrollbar-thumb {
  background: var(--orange-primary) !important;
  border-radius: 4px !important;
}

.year-badge {
  background: var(--orange-primary);
  color: #ffffff;
  display: inline-block;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 5px;
  margin-top: 2px;
}

.year-badge.mt-3 {
  margin-top: 8px;
}

.exp-card-body-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 4px;
}

.exp-card-body-box ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 3px;
  line-height: 1.28;
  color: #e0e0e0;
  font-size: 0.72rem;
}

.exp-card-body-box ul li::before {
  content: "•";
  color: var(--orange-primary);
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Card Type B: Full Photo Showcase Cards */
.exp-card.photo-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.photo-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 14px 16px;
}

.photo-card-date {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 10px;
}

.photo-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.photo-card-badge-pill {
  background: #ffffff;
  color: #111111;
  padding: 10px 16px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: auto;
}

.photo-card-badge-pill .brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card-badge-pill .brand-name img,
.photo-card-badge-pill .brand-logo-img {
  max-height: 28px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.photo-card-badge-pill .location-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #444444;
}

/* Bottom CTA Box */
.experience-cta-box {
  text-align: center !important;
  max-width: 800px;
  margin: 30px auto 0 !important;
  padding: 0 20px;
}

.experience-cta-box h3 {
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center !important;
}

.experience-cta-box h3 .txt-orange {
  color: var(--orange-primary);
}

.experience-cta-box p {
  color: #bbbbbb;
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: center !important;
  max-width: 750px;
  margin: 0 auto !important;
}

/* ==========================================================================
   OUR CLIENT SECTION
   ========================================================================== */
.client-section {
  background-color: var(--bg-peach);
  color: var(--text-dark);
  padding: 0;
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.client-header .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.client-header h2 {
  font-size: 2.2rem;
  color: var(--orange-primary);
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
}

.client-pill-logo {
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 16px;
  height: 64px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.client-pill-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.22);
  border-color: var(--orange-primary);
}

.client-pill-logo img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
  background-color: var(--bg-peach);
  color: var(--text-dark);
  padding: 0;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

.testimonial-header h2 span {
  color: var(--orange-primary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testi-orange-card {
  background: var(--orange-primary);
  border-radius: 20px;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-orange-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(255, 85, 0, 0.5);
}

.testi-company-banner {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.testi-body-text {
  font-size: 0.88rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
  text-align: center;
}

.testi-reviewer-pill {
  background: #fff;
  color: var(--text-dark);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}

.testi-reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 6px;
  object-fit: cover;
}

.testi-stars {
  color: #ffb800;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.testi-reviewer-name {
  font-weight: 800;
  font-size: 0.85rem;
}

/* ==========================================================================
   WHY TRIVELA SECTION
   ========================================================================== */
.why-us-section {
  background-color: var(--bg-dark);
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.why-full-layout {
  display: flex;
  width: 100%;
  min-height: 600px;
  align-items: stretch;
  background: url("../images/BG.webp") no-repeat center center/cover;
}

/* Left Box Background Image */
.why-green-box {
  flex: 1.25;
  background: url("../images/BG.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.why-green-logo {
  max-width: 230px;
  width: 75%;
  height: auto;
  object-fit: contain;
}

/* Middle Orange Box (Inset 10px Top & Bottom) */
.why-orange-box {
  flex: 1;
  background-color: var(--orange-primary);
  color: #ffffff;
  padding: 55px 44px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-orange-box h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
}

.why-orange-box p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.why-orange-box p:last-child {
  margin-bottom: 0;
}

/* Right Black Box */
.why-black-box {
  flex: 1.1;
  background-color: #141414;
  color: #ffffff;
  padding: 55px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-black-box h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
}

.why-black-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-black-box ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #d0d0d0;
}

.why-black-box ul li:last-child {
  margin-bottom: 0;
}

.why-black-box ul li::before {
  content: "•";
  color: #ffffff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.why-black-box ul li strong {
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================================
   FOOTER SECTION (Modern 3-Column Structured Layout)
   ========================================================================== */
.site-footer {
  background-color: #0d0d0d;
  padding: 60px 0 35px;
  border-top: 3px solid var(--orange-primary);
  position: relative;
  color: #d1d1d1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Col 1: Brand & Office */
.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-tagline {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #a0a0a0;
  margin-bottom: 18px;
  max-width: 380px;
}

.footer-office-box {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #b5b5b5;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.footer-office-box:hover {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.04);
}

.footer-office-icon {
  color: var(--orange-primary);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-office-text strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
}

/* Col 2: Direct Contacts */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--orange-primary);
  border-radius: 2px;
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.footer-contact-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.06);
  transform: translateY(-2px);
}

.footer-contact-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-name i {
  color: var(--orange-primary);
  font-size: 0.85rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-contact-link {
  color: #a8a8a8;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-contact-link i {
  width: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-contact-link:hover i {
  color: var(--orange-primary);
}

.footer-wa-link:hover {
  color: #25d366;
}

.footer-wa-link:hover i {
  color: #25d366;
}

/* Col 3: Navigation & Social */
.footer-nav-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 22px;
  padding: 0;
}

.footer-nav-grid a {
  color: #a8a8a8;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-grid a:hover {
  color: var(--orange-primary);
  transform: translateX(3px);
}

.footer-social-wrapper {
  margin-top: 16px;
}

.footer-social-title {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  background: var(--orange-primary);
  color: #ffffff;
  border-color: var(--orange-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.45);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-copyright {
  color: #888;
  font-weight: 500;
}

.footer-tagline-sub {
  color: #666;
  font-size: 0.78rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WhatsApp + Back-to-Top)
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 86px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 106, 0, 0.6);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 106, 0, 0.6);
}

/* ==========================================================================
   RESPONSIVE DESIGN — LAPTOP / SMALL DESKTOP (max-width: 1200px)
   ========================================================================== */
@media (max-width: 1200px) {
  .site-header .container {
    padding: 0 20px;
    gap: 16px;
  }

  .site-logo-img {
    height: 35px;
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav a {
    font-size: 0.76rem;
    padding: 5px 9px;
    letter-spacing: 0.3px;
  }

  .lang-pill-switch {
    padding: 2px 6px;
    gap: 3px;
  }

  .lang-pill-btn {
    font-size: 0.74rem;
    padding: 2px 6px;
  }

  .header-right-nav {
    gap: 12px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN — TABLET (max-width: 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ---- Header & Mobile Menu ---- */
  .site-header {
    padding: 13px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .site-header .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }

  .site-logo-img {
    height: 32px;
  }

  .header-right-nav {
    gap: 12px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lang-pill-switch {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(28, 28, 28, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .mobile-lang-drawer-box {
    display: block !important;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-nav a {
    font-size: 1.3rem;
    padding: 12px 30px;
  }

  .nav-box-indicator {
    display: none !important;
  }

  /* ---- All Sections: Remove min-height ---- */
  .about-section,
  .services-section,
  .coverage-section,
  .experience-section,
  .client-section,
  .testimonial-section,
  .why-us-section {
    min-height: auto;
    padding: 50px 0;
  }

  /* ---- Hero ---- */
  .hero-top-orange .container,
  .hero-middle-black .container,
  .hero-bottom-orange .container {
    padding-left: clamp(45px, 10vw, 120px);
    padding-right: clamp(45px, 10vw, 120px);
  }

  .hero-top-orange {
    padding: 24px 0 14px;
  }

  .hero-middle-black {
    padding: 28px 0 30px;
  }

  .hero-bottom-orange {
    padding: 24px 0 28px;
  }

  .hero-text-black-band {
    max-width: 45%;
    text-align: left;
  }

  .hero-title-top {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }

  .hero-title-mid {
    font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  }

  .hero-title-sub {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  }

  .hero-circle-anchor {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .hero-circle-container {
    position: absolute;
    top: 50%;
    right: clamp(45px, 10vw, 120px);
    transform: translateY(-50%);
    pointer-events: auto;
  }

  .hero-circle-image {
    width: clamp(255px, 33vw, 352px);
    height: clamp(255px, 33vw, 352px);
  }

  /* ---- About ---- */
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 280px;
  }

  .about-curve-cutout {
    width: 80px;
    height: 80px;
  }

  .about-bottom-curve {
    display: none !important;
  }

  /* ---- Services ---- */
  .services-orange-bg {
    width: 100% !important;
    display: block !important;
  }

  .services-header-split {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: center !important;
    margin-bottom: 35px !important;
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .services-header-left,
  .services-header-right {
    flex: 0 0 auto !important;
    width: auto !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .services-header-left h2 {
    font-size: clamp(1.8rem, 5.5vw, 3rem) !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  .services-header-right h2 {
    font-size: clamp(1.8rem, 5.5vw, 3rem) !important;
    color: #1c1c1c !important;
    margin: 0 !important;
  }

  .services-carousel-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
    max-width: 100vw;
    margin: 0;
    /* Remove 20px desktop margin */
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 auto;
    width: 320px;
    min-width: 320px;
    scroll-snap-align: center;
  }

  .services-carousel-wrapper .carousel-btn {
    display: none !important;
  }

  /* ---- Team ---- */
  .team-section {
    flex-direction: column;
  }

  .team-left-panel,
  .team-right-panel {
    flex: unset;
    width: 100%;
    padding: 50px 30px;
  }

  .team-left-panel {
    border-bottom-right-radius: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .team-title-wrap {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .team-title {
    text-align: center;
  }

  .team-ceo-container {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
  }

  .team-ceo-circle {
    height: 300px;
  }

  .team-ceo-circle img {
    max-height: 300px;
  }

  .team-right-panel {
    padding: 50px 30px;
    align-items: center;
  }

  .team-grid {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* ---- Experience Section ---- */
  .exp-carousel-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    box-sizing: border-box;
  }

  .exp-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 4px 30px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .exp-card {
    flex: 0 0 auto;
    width: clamp(270px, 80vw, 320px);
    min-width: clamp(270px, 80vw, 320px);
    height: 420px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .exp-carousel-btn {
    display: none !important;
  }

  .experience-cta-box {
    max-width: 800px;
    margin: 25px auto 0;
    padding: 0 15px;
    text-align: center;
  }

  .experience-cta-box h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    line-height: 1.35;
    margin-bottom: 12px;
    text-align: center;
  }

  .experience-cta-box p {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    line-height: 1.65;
    color: #b0b0b0;
    text-align: center;
  }

  /* ---- Coverage ---- */
  .coverage-map-box {
    padding: 20px;
  }

  /* ---- Testimonial ---- */
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- Why Trivela ---- */
  .why-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .why-badge-col {
    min-height: 250px;
    grid-column: 1 / -1;
  }

  /* ---- Client Logo Grid ---- */
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .client-pill-logo {
    height: 56px;
    padding: 8px 14px;
  }

  /* ---- Footer ---- */
  .site-footer {
    padding: 50px 0 35px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-tagline {
    max-width: 100%;
  }

  .footer-bottom-bar {
    margin-top: 35px;
  }

  /* ---- Floating Buttons ---- */
  .floating-wa-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    bottom: 20px;
    right: 78px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN — MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .about-section,
  .services-section,
  .coverage-section,
  .experience-section,
  .client-section,
  .testimonial-section,
  .why-us-section {
    min-height: calc(100dvh - 66px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 24px 0 !important;
    box-sizing: border-box !important;
  }

  /* ---- Header ---- */
  .site-header {
    padding: 12px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .site-logo-img {
    height: 30px;
  }

  .header-right-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: 1.15rem;
    padding: 10px 24px;
  }

  /* ---- Hero (100% Viewport Height Mobile Version) ---- */
  .hero-section {
    padding: 0 !important;
    height: calc(100dvh - 54px) !important;
    min-height: calc(100dvh - 54px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #ff6a00 !important;
  }

  /* Mobile Laser Beams Overlay (Asset 5.svg) */
  .hero-mobile-laser-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    overflow: visible !important;
  }

  .hero-mobile-laser-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 0.5 !important;
    mix-blend-mode: overlay !important;
    transform: scale(0.65) translateY(8%) !important;
    transform-origin: center center !important;
  }

  .hero-background-bands {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    margin-top: 8% !important;
  }

  .hero-top-orange .container,
  .hero-middle-black .container,
  .hero-bottom-orange .container {
    padding-left: clamp(45px, 12vw, 75px) !important;
    padding-right: clamp(45px, 12vw, 75px) !important;
    width: 100% !important;
  }

  .hero-top-orange {
    padding: 14px 0 6px !important;
    background-color: #ff6a00 !important;
  }

  .hero-title-top {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
    max-width: 50% !important;
  }

  .hero-middle-black {
    background-color: #1c1c1c !important;
    padding: 10px 0 12px !important;
  }

  .hero-text-black-band {
    max-width: 50% !important;
  }

  .hero-title-mid {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 0.95 !important;
    margin-bottom: 4px !important;
  }

  .hero-title-sub {
    font-size: clamp(0.72rem, 2.6vw, 0.9rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
  }

  .hero-bottom-orange {
    padding: 6px 0 8px !important;
    background-color: #ff6a00 !important;
    position: relative;
  }

  .hero-text-bottom {
    font-size: clamp(0.62rem, 2.2vw, 0.76rem) !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    max-width: 50% !important;
  }

  .hero-plus-symbols {
    display: block !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    letter-spacing: 4px !important;
    margin-top: 2px !important;
  }

  .hero-circle-anchor {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 10 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .hero-circle-container {
    position: absolute !important;
    top: 50% !important;
    right: clamp(50px, 15vw, 85px) !important;
    transform: translateY(-50%) !important;
    pointer-events: auto !important;
    margin: 0 !important;
  }

  .hero-circle-image {
    width: clamp(120px, 38vw, 155px) !important;
    height: clamp(120px, 38vw, 155px) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45) !important;
  }

  .hero-circle-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* ---- Mobile Placeholder Image with Gradient (Bright to Transparent) ---- */
  .hero-mobile-image-placeholder {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #ff6a00 !important;
  }

  .hero-mobile-image-wrapper {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero-mobile-bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    filter: contrast(1.08) brightness(1.02) !important;
  }

  .hero-mobile-gradient-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg,
        #ff6a00 0%,
        #ff6a00 18%,
        rgba(255, 106, 0, 0.85) 38%,
        rgba(255, 106, 0, 0.15) 68%,
        rgba(255, 106, 0, 0.75) 100%) !important;
  }

  .hero-mobile-bottom-plus {
    position: absolute !important;
    bottom: 20px !important;
    right: 24px !important;
    z-index: 15 !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: rgba(255, 220, 160, 0.95) !important;
    letter-spacing: 5px !important;
  }

  /* ---- About ---- */
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-image img {
    height: 220px;
    border-radius: 14px;
  }

  .about-orange-card {
    padding: 22px;
    border-radius: 14px;
  }

  .about-orange-card p {
    font-size: 0.9rem;
  }

  .about-bottom-curve {
    display: none;
  }

  .about-curve-cutout {
    width: 60px;
    height: 60px;
  }

  /* ---- Services ---- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 8px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .services-header-left h2,
  .services-header-right h2 {
    font-size: 2rem;
  }

  /* ---- Team ---- */
  .team-left-panel,
  .team-right-panel {
    padding: 36px 20px;
  }

  .team-left-panel {
    border-bottom-right-radius: 50px;
  }

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

  .team-ceo-circle {
    height: 240px;
  }

  .team-ceo-circle img {
    max-height: 240px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ---- Coverage ---- */
  .coverage-header h2 {
    font-size: 1.6rem;
  }

  .service-card {
    width: 82vw;
    min-width: 82vw;
  }

  .coverage-map-box {
    padding: 14px;
    border-radius: 14px;
  }

  .coverage-desc {
    font-size: 0.88rem;
  }

  /* ---- Experience ---- */
  .experience-section {
    min-height: calc(100dvh - 66px) !important;
    padding: 16px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .experience-header {
    margin-bottom: 6px !important;
  }

  .experience-header h2 {
    font-size: 1.65rem !important;
  }

  .exp-carousel-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
  }

  .exp-slider-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 4px 15px !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    scrollbar-width: none !important;
  }

  .exp-card {
    flex: 0 0 auto !important;
    width: clamp(230px, 75vw, 260px) !important;
    min-width: clamp(230px, 75vw, 260px) !important;
    height: 420px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  .exp-card-header-pill {
    font-size: 0.72rem !important;
    padding: 5px 8px !important;
    margin-bottom: 6px !important;
  }

  .exp-card-body-box {
    padding: 10px 8px !important;
    font-size: 0.72rem !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--orange-primary) #111111 !important;
  }

  .exp-card-body-box::-webkit-scrollbar {
    display: block !important;
    width: 4px !important;
  }

  .experience-cta-box {
    text-align: center !important;
    margin: 8px auto 0 !important;
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  .experience-cta-box h3 {
    text-align: center !important;
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  .experience-cta-box p {
    text-align: center !important;
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
  }

  /* ---- Client ---- */
  .client-header h2 {
    font-size: 1.6rem;
  }

  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .client-pill-logo {
    height: 50px;
    padding: 6px 10px;
    border-radius: 35px;
  }

  .client-pill-logo img {
    max-height: 28px;
  }

  /* ---- Testimonial ---- */
  .testimonial-header h2 {
    font-size: 1.8rem;
  }

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

  .testi-orange-card {
    padding: 20px 16px;
  }

  /* ---- Why Trivela ---- */
  .why-full-layout {
    flex-direction: column;
  }

  .why-green-box {
    min-height: 260px;
    padding: 40px 20px;
  }

  .why-green-logo {
    max-width: 100px;
  }

  .why-orange-box,
  .why-black-box {
    padding: 38px 24px;
    margin: 0;
  }

  .why-orange-box h2,
  .why-black-box h2 {
    font-size: 2.2rem;
  }

  /* ---- Footer ---- */
  .site-footer {
    padding: 45px 0 85px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col-brand {
    grid-column: 1;
  }

  .footer-office-box {
    font-size: 0.8rem;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    margin-top: 28px;
    padding-top: 18px;
  }

  /* ---- Floating Buttons ---- */
  .floating-wa-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 18px;
    right: 18px;
  }

  .back-to-top-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    bottom: 18px;
    right: 74px;
  }
}

/* ==========================================================================
   EXPERIENCE CARD MODAL POP-UP FOCUS
   ========================================================================== */
.exp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.35s ease;
  padding: 20px;
}

.exp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exp-modal-content {
  position: relative;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  transform: scale(0.8) translateY(30px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.exp-modal-overlay.active .exp-modal-content {
  transform: scale(1) translateY(0);
}

.exp-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #ffffff;
  border: 2.5px solid #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(255, 85, 0, 0.8);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.exp-modal-close:hover {
  transform: scale(1.15) rotate(90deg);
  background: #ff6b00;
}

.exp-modal-body .exp-card {
  width: 100% !important;
  min-width: 100% !important;
  height: 520px !important;
  transform: none !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(255, 85, 0, 0.55) !important;
}

.exp-modal-body .exp-card-body-box {
  font-size: 0.85rem !important;
}

.exp-modal-body .exp-card-body-box ul li {
  margin-bottom: 7px !important;
}

.exp-modal-body .photo-card-title {
  font-size: 1.25rem !important;
}

@media (max-width: 576px) {
  .exp-modal-content {
    max-width: 94vw;
    max-height: 85vh;
  }

  .exp-modal-body .exp-card {
    height: 440px !important;
  }

  .exp-modal-close {
    top: -14px;
    right: -10px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 27px;
  }

  .header-right-nav {
    gap: 8px;
  }
}