/* =============================================
   ROYAL VIP HOSPITALITY - LIGHT THEME CSS
   Brand: Purple #7B1A6B | Orange #F07722
   Theme: Clean White/Light Background
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ======== CSS VARIABLES ======== */
:root {
  /* Backgrounds */
  --bg: #ffffff;
  --bg-alt: #f9f5fc;
  --bg-warm: #fff8f3;
  --bg-section: #f4eff9;
  --bg-dark: #1a0d18;

  /* Text */
  --text: #1a0d18;
  --text-2: #4a3060;
  --text-3: #8a7098;
  --text-light: #b8a8c8;

  /* Brand Colors */
  --purple: #7B1A6B;
  --purple-2: #9e2288;
  --purple-light: #f3e8f2;
  --orange: #F07722;
  --orange-2: #ff8c30;
  --orange-light: #fff0e4;
  --gold: #FFB347;

  /* Borders */
  --border: rgba(123, 26, 107, 0.12);
  --border-o: rgba(240, 119, 34, 0.15);
  --border-card: #ebe3f0;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(123, 26, 107, 0.07);
  --shadow-md: 0 6px 24px rgba(123, 26, 107, 0.10);
  --shadow-lg: 0 14px 48px rgba(123, 26, 107, 0.14);
  --shadow-xl: 0 24px 64px rgba(123, 26, 107, 0.18);
  --shadow-glow-p: 0 0 32px rgba(123, 26, 107, 0.25);
  --shadow-glow-o: 0 0 32px rgba(240, 119, 34, 0.25);

  /* Gradients */
  --g-brand: linear-gradient(135deg, #7B1A6B 0%, #C44020 55%, #F07722 100%);
  --g-purple: linear-gradient(135deg, #7B1A6B, #9e2288);
  --g-orange: linear-gradient(135deg, #F07722, #ff9a3c);
  --g-hero: linear-gradient(135deg, #f9f5fc 0%, #fff8f3 100%);
  --g-light: linear-gradient(135deg, #f9f5fc, #fff8f3);

  /* Fonts */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 100px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== RESET ======== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ======== SCROLLBAR ======== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ======== UTILITIES ======== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--r-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--g-orange);
  color: #fff;
  box-shadow: 0 6px 22px rgba(240, 119, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240, 119, 34, 0.45);
}

.btn-secondary {
  background: var(--g-purple);
  color: #fff;
  box-shadow: 0 6px 22px rgba(123, 26, 107, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(123, 26, 107, 0.4);
}

.btn-outline-p {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
}

.btn-outline-p:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-o {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-outline-o:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ======== TOPBAR ======== */
.topbar {
  background: var(--purple);
  padding: 8px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.topbar-contact a:hover {
  color: var(--orange-2);
}

.topbar-contact a svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.topbar-gst {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

/* ======== HEADER - 3-COLUMN LAYOUT ======== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(123, 26, 107, 0.08);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(123, 26, 107, 0.12);
  border-bottom-color: var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 5px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 75px;
  width: auto;
}

.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.logo-text .logo-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo-text .logo-brand .r {
  color: var(--purple);
}

.logo-text .logo-brand .v {
  color: var(--orange);
}

.logo-text .logo-sub {
  font-size: 0.58rem;
  color: var(--purple);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.logo-text .logo-tag {
  font-size: 0.55rem;
  color: var(--text-3);
  font-style: italic;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Center Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--g-orange);
  border-radius: 1px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-link:hover::after, .nav-link.active::after {
  left: 14px;
  right: 14px;
}

.nav-link.active {
  color: var(--orange);
}

/* Right side: phone + social */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--border-card);
  padding-right: 12px;
}

.nav-phone a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  line-height: 1.2;
}

.nav-phone a:hover {
  color: var(--orange);
}

.nav-phone a .flag {
  font-size: 0.9rem;
}

.nav-socials {
  display: flex;
  gap: 7px;
}

.nav-socials a {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--transition);
}

.nav-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.nav-socials a svg {
  width: 14px;
  height: 14px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border-card);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======== HERO ======== */
.hero {
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 119, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(123, 26, 107, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 26, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 26, 107, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}

.hero-text .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 3px;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--g-brand);
}

.hero-card-main .card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--g-brand);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-glow-o);
}

.hero-floating {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}

.hero-floating-1 {
  top: -24px;
  left: -32px;
  animation: floatA 5s ease-in-out infinite;
}

.hero-floating-2 {
  bottom: -16px;
  right: -24px;
  animation: floatB 6s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-12px) rotate(-2deg)
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translateY(0) rotate(2deg)
  }

  50% {
    transform: translateY(-8px) rotate(2deg)
  }
}

/* ======== SECTION HEADING ======== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-3);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ======== ABOUT SECTION ======== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--g-light);
  border: 1px solid var(--border-card);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 13px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-stat {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-stat:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.about-stat .label {
  font-size: 0.76rem;
  color: var(--text-3);
  margin-top: 5px;
  display: block;
}

/* ======== SERVICES ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-brand);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.7rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card ul li {
  color: var(--text-2);
  font-size: 0.83rem;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.service-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Icon color variants */
.icon-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.icon-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.icon-gold {
  background: #fff5e0;
  color: #d97706;
}

.icon-teal {
  background: #e6faf8;
  color: #0d9488;
}

.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.icon-green {
  background: #ecfdf5;
  color: #059669;
}

/* ======== WHY CHOOSE US ======== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--orange);
}

.why-feature-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-feature h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.65;
}

/* ======== OTA CLIENTS MARQUEE ======== */
.clients-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.clients-marquee-wrap::before, .clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.clients-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.clients-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.clients-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  padding: 8px 0;
}

.clients-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.client-logo-pill {
  background: #fff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--r-sm);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-2);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.client-logo-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 6px 20px rgba(240, 119, 34, 0.15);
  transform: translateY(-2px);
}

.client-logo-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ======== TESTIMONIALS ======== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 5rem;
  color: rgba(240, 119, 34, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-title {
  font-size: 0.76rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* ======== CTA BANNER ======== */
.cta-section {
  background: var(--g-brand);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 540px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ======== CONTACT ======== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--orange-light);
  border: 1px solid var(--border-o);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-top: 2px;
}

.contact-detail:hover .contact-detail-icon {
  background: var(--orange);
  color: #fff;
}

.contact-detail .lbl {
  font-size: 0.75rem;
  color: var(--text-3);
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail .val {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail .val a {
  color: var(--orange);
  font-weight: 600;
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-alt);
  border: 1.5px solid var(--border-card);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240, 119, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ======== OFFICE CARDS ======== */
.office-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.office-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-brand);
}

.office-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.office-flag {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.office-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 3px;
}

.office-type {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.office-addr {
  color: var(--text-3);
  font-size: 0.86rem;
  line-height: 1.7;
}

.office-phone {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
}

.office-phone a {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.86rem;
}

/* ======== STEP PROCESS ======== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step-c;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  counter-increment: step-c;
}

.step-card::before {
  content: counter(step-c, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(240, 119, 34, 0.08);
  line-height: 1;
}

.step-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: var(--g-brand);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 20px rgba(240, 119, 34, 0.3);
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.65;
}

/* ======== FAQ ======== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(240, 119, 34, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  gap: 12px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 400;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ======== PORTFOLIO ======== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-card);
  background: #fff;
  color: var(--text-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(240, 119, 34, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.portfolio-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
}

.portfolio-body {
  padding: 24px 20px;
}

.portfolio-tag {
  display: inline-block;
  background: var(--orange-light);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-full);
  margin-bottom: 9px;
}

.portfolio-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.portfolio-body p {
  color: var(--text-3);
  font-size: 0.85rem;
  line-height: 1.65;
}

.case-stats {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.case-stat .val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-stat .lbl {
  font-size: 0.7rem;
  color: var(--text-3);
}

.case-divider {
  width: 1px;
  background: var(--border-card);
  align-self: stretch;
}

/* ======== CLIENTS PAGE ======== */
.ota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.ota-card {
  background: #fff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--r-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ota-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ota-card .ota-icon {
  font-size: 2.4rem;
}

.ota-card .ota-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.ota-card .ota-desc {
  font-size: 0.74rem;
  color: var(--text-3);
  line-height: 1.5;
}

.ota-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ======== PAGE HERO (inner pages) ======== */
.page-hero {
  background: var(--g-hero);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 119, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(123, 26, 107, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 26, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 26, 107, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--text-3);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--orange);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-2);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ======== MAP ======== */
.map-section {
  height: 380px;
  overflow: hidden;
  border-top: 2px solid var(--border-card);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-brand .r {
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo .logo-brand .v {
  color: var(--orange);
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo .logo-tag {
  color: rgba(240, 119, 34, 0.8);
}

.footer-about {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-gst {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.footer-gst span {
  color: var(--orange-2);
  font-weight: 600;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--g-orange);
  border-radius: 1px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange-2);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-links a:hover::before {
  opacity: 1;
}

.newsletter-form {
  display: flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 10px 13px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-form button {
  background: var(--g-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  filter: brightness(1.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--orange-2);
}

/* ======== SCROLL TO TOP ======== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--g-orange);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(240, 119, 34, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(240, 119, 34, 0.5);
}

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* Tablet & small laptop */
@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-link {
    padding: 7px 10px;
    font-size: 0.83rem;
  }

  .nav-phone {
    display: none;
  }

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

@media (max-width: 900px) {
  .about-grid, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 60px 0;
  }

  /* Nav: Logo left | Hamburger right — center menu hidden */
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .nav-right .nav-phone {
    display: none;
  }

  .nav-right {
    gap: 6px;
  }

  .nav-right .nav-socials {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Full-screen mobile menu */
  .nav-menu.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 9999;
    padding: 40px;
  }

  .nav-menu.open .nav-link {
    font-size: 1.5rem;
    padding: 14px 32px;
  }

  /* Mobile nav contact bar inside menu */
  .nav-menu.open::after {
    content: '📞 +91 99445 38386  |  +971 547476234';
    display: block;
    font-size: 0.82rem;
    color: var(--text-3);
    margin-top: 24px;
    text-align: center;
  }

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

  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .ota-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 48px 0;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .logo-img {
    height: 42px;
  }
}

.footer .logo-img {
  height: 124px;
  filter: brightness(0) invert(1);
}