/* ============================================================
   DRON ADS Pvt. Ltd. — Main Stylesheet
   Multi-page website
   Color Palette: Orange (#E8842A) + Dark Navy (#1A2036)
   Typography: Poppins (global), Syne (headings), Caveat (handwritten)
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&family=Caveat:wght@400;500;600;700&display=swap');

/* ========== CSS CUSTOM PROPERTIES (THEME) ========== */
:root {
  /* Brand Colors */
  --primary: #e8842a;
  --primary-light: #f09a4a;
  --primary-dark: #c96e18;
  --primary-rgb: 232, 132, 42;

  /* Secondary & Neutrals */
  --secondary: #1a2036;
  --secondary-light: #2a3050;
  --accent-gold: #d4a04a;

  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6f3;
  --bg-tertiary: #f0ede8;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5e;
  --text-light: #7a7a8e;
  --text-inverse: #ffffff;
  --border-color: #e5e2dd;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 16px 60px rgba(26, 26, 46, 0.15);

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-display: "Red Hat Display", sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1320px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slider: 0.8s ease-in-out;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Header */
  --header-height: 80px;
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
  --bg-primary: #0e1118;
  --bg-secondary: #151820;
  --bg-tertiary: #1c2028;
  --bg-card: #1a1e28;
  --text-primary: #f0ede8;
  --text-secondary: #b0b0c0;
  --text-light: #7878a0;
  --border-color: #2a2e3a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.5);
}

/* === LOGO FIX — always white on transparent header === */
.header__logo img {
  filter: brightness(0) invert(1);
}

.header.scrolled .header__logo img {
  filter: none;
}

[data-theme="dark"] .header.scrolled .header__logo img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .footer__logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

[data-theme="dark"] .about__logo-display {
  /* filter: invert(1) hue-rotate(180deg) saturate(1.3) brightness(1.05); */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
  overflow-x: hidden;
  padding-top: 0;
  font-family: var(--font-body);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input,
select,
textarea {
  font-size: inherit;
}

/* ========== UTILITY ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background: var(--bg-secondary);
}

/* Section Header */
.section__tag {
  display: inline-block;

  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}

.section__divider--center {
  margin-left: auto;
  margin-right: auto;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.btn--secondary {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.btn--secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: #ffffff;
  color: var(--secondary);
  border-color: #ffffff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn--white {
  background: #ffffff;
  color: var(--secondary);
  border-color: #ffffff;
}

.btn--white:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.btn--lg {
  padding: 16px 38px;
  font-size: 16px;
}

/* ========== HEADER — Floating Transparent Style ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Scrolled state: frosted solid background */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(14, 17, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo sizing */
.header__logo img {
  height: auto;
  width: 160px;
  object-fit: contain;
  transition: filter var(--transition-base);
}

/* ---- PILL NAV WRAPPER ---- */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 5px 6px;
  gap: 2px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

@media (min-width: 769px) {

  /* When scrolled, pill adapts to light/dark bg */
  .header.scrolled .nav__pill {
    background: rgba(20, 22, 30, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
  }

  [data-theme="dark"] .header.scrolled .nav__pill {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 50px;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav__link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.nav__link.active::after {
  display: none;
}

@media (min-width: 769px) {

  /* When header is scrolled — switch pill nav text to dark */
  .header.scrolled .nav__link {
    color: var(--text-primary);
  }

  .header.scrolled .nav__link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
  }

  .header.scrolled .nav__link.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
  }

  [data-theme="dark"] .header.scrolled .nav__link {
    color: var(--text-primary);
  }
}

.nav__link .fa-chevron-down {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

/* Services pill highlight */
.nav__link--highlight {
  background: rgba(232, 132, 42, 0.25);
  color: #ffffff;
  border: 1px solid rgba(232, 132, 42, 0.5);
}

.nav__link--highlight:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Simple Dropdown */
.nav__dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 160px;
  background: rgba(20, 22, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}

.header.scrolled .dropdown__menu {
  background: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}

.nav__dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown:hover>.nav__link .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown__menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header.scrolled .dropdown__menu li a {
  color: var(--text-secondary);
}

.dropdown__menu li a:hover {
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--primary-light);
  padding-left: 20px;
}

.header.scrolled .dropdown__menu li a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

/* ========== MEGA MENU ========== */
.nav__mega .mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 900px;
  background: rgba(16, 18, 26, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}

.header.scrolled .nav__mega .mega-menu {
  background: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: var(--shadow-xl);
}

.nav__mega:hover .mega-menu,
.nav__mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__mega:hover>.nav__link .fa-chevron-down,
.nav__mega.open>.nav__link .fa-chevron-down {
  transform: rotate(180deg);
}

.mega-menu__heading {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header.scrolled .mega-menu__heading {
  color: var(--text-light);
  border-bottom-color: rgba(var(--primary-rgb), 0.15);
  text-shadow: none;
}

.mega-menu__col ul li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
}

.header.scrolled .mega-menu__col ul li a {
  color: var(--text-secondary);
  text-shadow: none;
}

.mega-menu__col ul li a:hover,
.mega-menu__col ul li a.active {
  color: var(--primary-light);
  padding-left: 6px;
}

.header.scrolled .mega-menu__col ul li a:hover,
.header.scrolled .mega-menu__col ul li a.active {
  color: var(--primary);
}

/* ========== HEADER ACTIONS ========== */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

/* Theme toggle — subtle on transparent header */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.header.scrolled .theme-toggle {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: transparent;
}

.header.scrolled .theme-toggle:hover {
  background: var(--primary);
  color: #ffffff;
}

/* CTA Button — white pill style */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  color: #1a1a2e;
  border: 2px solid #ffffff;
  border-radius: 50px;
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.header__cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.header.scrolled .header__cta {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.header.scrolled .header__cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.header.scrolled .hamburger {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .hamburger span {
  background: var(--text-primary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  /* background: var(--secondary); */
}

.hero__slider {
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-slider),
    visibility var(--transition-slider);
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero__slide>.container {
  position: relative;
  height: 100%;
}

/* ========== HERO BACKGROUNDS ========== */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform-origin: center top;
  transition: transform 8s linear;
}

.hero__slide.active .hero__bg {
  transform: scale(1.05);
}

.hero__bg--1 {
  background-image: url("../images/Hero/Hero1.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg--2 {
  background-image: url("../images/Hero/Hero2.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero__bg--3 {
  background-image: url("../images/Hero/Hero3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ========== HERO BACKGROUNDS — LIGHT MODE ========== */
[data-theme="light"] .hero__bg--1 {
  background-image: url("../images/Hero/Hero1.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

[data-theme="light"] .hero__bg--2 {
  background-image: url("../images/Hero/Hero2.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

[data-theme="light"] .hero__bg--3 {
  background-image: url("../images/Hero/Hero3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ========== HERO BACKGROUNDS — DARK MODE (same images, always visible) ========== */
[data-theme="dark"] .hero__bg--1 {
  background-image: url("../images/Hero/Hero1.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

[data-theme="dark"] .hero__bg--2 {
  background-image: url("../images/Hero/Hero2.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

[data-theme="dark"] .hero__bg--3 {
  background-image: url("../images/Hero/Hero3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ========== HERO OVERLAY ========== */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: background var(--transition-base);
}

/* Light mode: subtle white tint so image stays vibrant */
.hero__overlay,
[data-theme="light"] .hero__overlay {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.2) 40%,
      rgba(10, 12, 20, 0.6) 100%);
}

/* Dark mode: moderate darken — image stays visible, just dimmed */
[data-theme="dark"] .hero__overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.65) 100%);
}

/* ========== HERO CONTENT — Bottom-aligned like granth.in ========== */
.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  padding: 0 0 80px;
}

/* Hero Heading Group */
.hero__heading {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.3s forwards;
}

/* Hero Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
}

.hero__title strong {
  display: block;
  font-weight: 700;
}

/* Hero Bottom Row — Button left, Description right */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.6s forwards;
}

/* Hero CTA Button */
.hero__cta-btn {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 16px 60px;
  background: #ffffff;
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.5s ease;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__cta-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.5s ease;
}

.hero__cta-btn:hover {
  padding-left: 28px;
  padding-right: 60px;
  background: var(--primary);
  color: #ffffff;
}

.hero__cta-btn:hover .hero__cta-icon {
  left: calc(100% - 50px);
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-50%) rotate(180deg);
}

/* Hero Text — right side of bottom row */
.hero__text {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0;
}

[data-theme="light"] .hero__text {
  color: rgba(255, 255, 255, 0.9);
}

/* Reset animation for inactive slides */
.hero__slide:not(.active) .hero__heading,
.hero__slide:not(.active) .hero__bottom {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== HERO SCROLLBAR ========== */
.hero__scrollbar-wrap {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero__scrollbar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.hero__scrollbar-drag {
  position: absolute;
  top: -3px;
  left: 0;
  height: 8px;
  border-radius: 10px;
  background: #ffffff;
  width: 33.33%;
  transition: left 1.2s ease-in-out;
}

/* ========== PAGE BANNER (Inner Pages) ========== */
.page-banner {
  position: relative;
  /* min-height: 200px; */
  padding: 110px 0 0px;
  background-color: var(--secondary);
  background-image: var(--page-banner-image);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(7, 10, 18, 0.82) 0%,
      rgba(10, 16, 28, 0.64) 45%,
      rgba(12, 20, 32, 0.5) 100%);
  z-index: 0;
  pointer-events: none;
}

.page-banner::before {
  content: none;
}

.page-banner::after {
  content: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.page-banner__title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: normal;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.page-banner__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.breadcrumb__current {
  color: var(--primary-light);
  font-weight: 400;
}

/* ========== PAGE BANNER LIGHT MODE ========== */
[data-theme="light"] .page-banner {
  background-color: var(--primary-dark);
}

[data-theme="light"] .page-banner__overlay {
  background: linear-gradient(90deg,
      rgba(18, 14, 10, 0.74) 0%,
      rgba(24, 18, 12, 0.56) 45%,
      rgba(18, 14, 10, 0.42) 100%);
}

[data-theme="light"] .page-banner::before {
  content: none;
}

[data-theme="light"] .page-banner__title {
  color: #ffffff;
}

[data-theme="light"] .page-banner__subtitle {
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .page-banner__breadcrumb a:hover {
  color: #ffffff;
}

[data-theme="light"] .page-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .page-banner__breadcrumb span:last-child {
  color: #ffffff;
  font-weight: 400;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-primary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-placeholder {
  /* aspect-ratio: 4 / 3.5; */
  background: linear-gradient(135deg,
      var(--bg-tertiary) 0%,
      var(--bg-secondary) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.about__logo-display {
  width: 100%;
  height: 100%;
  /* opacity: 0.5; */
  transition: filter var(--transition-base);
}

.about__experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__experience-number {
  display: block;

  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.about__experience-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.4;
  opacity: 0.9;
}

.about__text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__highlights {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
}

.about__highlights li i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ========== STATS ========== */
.stats {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* Light mode stats */
[data-theme="light"] .stats {
  background: var(--bg-secondary);
}

[data-theme="light"] .stats__overlay {
  background:
    radial-gradient(circle at 20% 50%,
      rgba(232, 132, 42, 0.08) 0%,
      transparent 60%),
    radial-gradient(circle at 80% 30%,
      rgba(232, 132, 42, 0.06) 0%,
      transparent 50%);
}

[data-theme="light"] .stats__number {
  color: var(--text-primary);
  text-shadow: none;
}

[data-theme="light"] .stats__label {
  color: var(--text-secondary);
}

[data-theme="light"] .stats__suffix {
  color: var(--primary);
}

[data-theme="light"] .stats__item:not(:last-child)::after {
  background: var(--border-color);
}

.stats__overlay {
  position: absolute;
  inset: 0;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats__item {
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stats__icon {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.stats__number {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.stats__suffix {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-light);
}

.stats__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* ========== SERVICES GRID ========== */
.services {
  background: var(--bg-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

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

.service-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.1),
      rgba(var(--primary-rgb), 0.05));
  color: var(--primary);
  font-size: 28px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.service-card__title {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* Clickable card (link wrapper) */
a.service-card {
  text-decoration: none;
  color: inherit;
}

a.service-card:hover {
  color: inherit;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  background: var(--bg-primary);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.why-card__number {
  font-size: 40px;
  font-weight: 400;
  color: rgba(var(--primary-rgb), 0.15);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.why-card:hover .why-card__number {
  color: rgba(var(--primary-rgb), 0.3);
}

.why-card__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== PARALLAX CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
}

.cta-banner__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

.cta-banner__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-banner__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CTA BANNER LIGHT MODE ===== */
[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary) 60%,
      var(--primary-light) 100%);
}

[data-theme="light"] .cta-banner__overlay {
  background:
    radial-gradient(circle at 30% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
}

[data-theme="light"] .cta-banner__title {
  color: #ffffff;
}

[data-theme="light"] .cta-banner__text {
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .btn--white {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}

[data-theme="light"] .btn--white:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

[data-theme="light"] .btn--outline-white {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

[data-theme="light"] .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
}

/* ========== FEATURED SERVICES DETAIL ========== */
.featured {
  background: var(--bg-secondary);
}

.featured__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.featured__block:last-child {
  margin-bottom: 0;
}

.featured__block--reverse {
  direction: rtl;
}

.featured__block--reverse>* {
  direction: ltr;
}

.featured__visual-bg {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
}

.featured__visual-bg--outdoor {
  background: linear-gradient(135deg, #1a2036 0%, #2a3a50 100%);
}

.featured__visual-bg--digital {
  background: linear-gradient(135deg, #1a2a36 0%, #203040 100%);
}

.featured__visual-bg--events {
  background: linear-gradient(135deg, #2a1a30 0%, #3a2a40 100%);
}

.featured__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.featured__title {
  font-size: 30px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.featured__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.featured__list {
  margin-bottom: 28px;
}

.featured__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.featured__list li i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail {
  background: var(--bg-primary);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.service-detail__content .section__title {
  font-size: clamp(26px, 3.5vw, 38px);
}

.service-detail__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg,
      var(--bg-tertiary) 0%,
      var(--bg-secondary) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(var(--primary-rgb), 0.15);
}

.service-detail__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ========== BENEFITS GRID ========== */
.benefits {
  background: var(--bg-secondary);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.1),
      rgba(var(--primary-rgb), 0.05));
  color: var(--primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-card__icon {
  background: var(--primary);
  color: #ffffff;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== SERVICE WHY SECTION ========== */
.service-why {
  background: var(--bg-primary);
}

.service-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.service-why__list {
  margin: 24px 0 32px;
}

.service-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-weight: 400;
}

.service-why__list li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-why__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg,
      var(--secondary) 0%,
      var(--secondary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(var(--primary-rgb), 0.2);
}

/* ========== RELATED SERVICES ========== */
.related {
  background: var(--bg-secondary);
}

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

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
  color: inherit;
}

.related-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.1),
      rgba(var(--primary-rgb), 0.05));
  color: var(--primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.related-card:hover .related-card__icon {
  background: var(--primary);
  color: #ffffff;
}

.related-card h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.related-card span {
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
}

/* ========== SERVICES OVERVIEW PAGE ========== */
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ========== ABOUT PAGE ========== */
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.mission-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.1),
      rgba(var(--primary-rgb), 0.05));
  color: var(--primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-card__title {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mission-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========== CLIENTS / TRUST ========== */
.clients {
  background: var(--bg-primary);
}

.clients__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-4px);
}

.trust-badge i {
  font-size: 28px;
  color: var(--primary);
}

.trust-badge span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
}

/* ========== OUR CLIENTS LOGO GRID ========== */
.clients__grid-logo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.client-logo__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo__box {
  width: 100%;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-base);
  text-align: center;
}

.client-logo__box i {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.8;
  transition: all var(--transition-base);
}

.client-logo__box span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.client-logo__box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.client-logo__box:hover i {
  opacity: 1;
  transform: scale(1.1);
}


/* ========== CLIENTS MARQUEE ========== */
.clients__marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.clients__marquee-wrapper::before,
.clients__marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.clients__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.clients__marquee-track {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: marquee-scroll 120s linear infinite;
  padding-left: 30px;
  width: max-content;
}

.clients__marquee-track:hover {
  animation-play-state: paused;
}

.clients__marquee-track--reverse {
  animation: marquee-scroll-reverse 120s linear infinite;
  margin-top: 20px;
}

.clients__marquee-track--reverse:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo__item-clean {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 176px;
}

.client-logo__item-clean img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  opacity: 0.8;
  transition: all var(--transition-base);
}

.client-logo__item-clean:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ========== CONTACT ========== */
.contact {
  background: var(--bg-secondary);
  margin-top: 20px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group {
  margin-bottom: 20px;
  position: relative;
}

.form__row .form__group {
  margin-bottom: 0;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A8E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}

.form__group.error .form__input {
  border-color: #e53e3e;
}

.form__group.error .form__error {
  display: block;
}

.form__submit {
  width: 100%;
  margin-top: 4px;
}

.form__submit-loading {
  display: none;
}

.form__submit.loading .form__submit-text {
  display: none;
}

.form__submit.loading .form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Contact Info Card */
.contact__info-card {
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact__info-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact__info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

.contact__info-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact__info-item a {
  color: rgba(255, 255, 255, 0.7);
}

.contact__info-item a:hover {
  color: var(--primary-light);
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}

.contact__social-link:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ===== CONTACT INFO CARD LIGHT MODE ===== */
[data-theme="light"] .contact__info-card {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .contact__info-title {
  color: var(--text-primary);
}

[data-theme="light"] .contact__info-text {
  color: var(--text-secondary);
}

[data-theme="light"] .contact__info-item h4 {
  color: var(--text-primary);
}

[data-theme="light"] .contact__info-item p,
[data-theme="light"] .contact__info-item a {
  color: var(--text-secondary);
}

[data-theme="light"] .contact__info-item a:hover {
  color: var(--primary);
}

[data-theme="light"] .contact__info-icon {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

[data-theme="light"] .contact__social-link {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

[data-theme="light"] .contact__social-link:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Map placeholder */
.contact__map {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ========== HOARDING GALLERY ========== */
.hoarding-gallery {
  position: relative;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.gallery__item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #12131a;
  box-shadow: 0 18px 44px rgba(10, 12, 20, 0.14);
  isolation: isolate;
  aspect-ratio: 4 / 3;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 12, 20, 0.82) 0%,
      rgba(10, 12, 20, 0.18) 48%,
      transparent 72%);
  opacity: 0.95;
  transition: opacity var(--transition-base);
}

.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(10, 12, 20, 0.2);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.gallery__overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  transform: translateY(8px);
  opacity: 0;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    background var(--transition-base);
}

.gallery__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
  transform: translateY(0);
  background: rgba(var(--primary-rgb), 0.82);
}

.gallery__lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 12, 22, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 11000;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.gallery__lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Real-time ambient blurred background image */
.lightbox__bg-blur {
  position: absolute;
  inset: -30px;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: blur(50px) brightness(0.3);
  transition: background-image 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.7;
}

/* Gradient overlay for depth and focus */
.lightbox__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle, transparent 30%, rgba(10, 12, 22, 0.95) 100%);
  pointer-events: none;
}

/* Main slider container */
.lightbox__slider-container {
  position: relative;
  width: 100%;
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  padding: 0 50px;
}

/* Image wrapper with glass shadow */
.lightbox__img-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lightbox__img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65);
  background: rgba(255, 255, 255, 0.02);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease-in-out;
}

/* Active slide image animation states */
.gallery__lightbox.active .lightbox__img-wrap img.loaded {
  transform: scale(1);
  opacity: 1;
}

/* Ken burns visual enhancement class when moving slides */
.lightbox__img-wrap img.animate-zoom {
  animation: lightboxKenBurns 12s infinite alternate ease-in-out;
}

@keyframes lightboxKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* Control Buttons: Close */
.lightbox__close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  z-index: 100;
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.5);
}

/* Control Buttons: Navigation */
.lightbox__nav {
  position: absolute;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  z-index: 10;
  cursor: pointer;
}

.lightbox__prev {
  left: 30px;
}

.lightbox__next {
  right: 30px;
}

.lightbox__nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.5);
}

.lightbox__prev:hover {
  transform: scale(1.1) translateX(-4px);
}

.lightbox__next:hover {
  transform: scale(1.1) translateX(4px);
}

/* Glassmorphic Slide Info Panel */
.lightbox__info-panel {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  z-index: 5;
  padding: 22px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.gallery__lightbox.active .lightbox__info-panel {
  opacity: 1;
  transform: translateY(0);
}

/* Counter */
.lightbox__counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}

/* Caption */
.lightbox__caption {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  max-width: 100%;
}

/* Navigation dots (matching homepage hero slide indicators) */
.lightbox__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.lightbox__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 50px;
}

/* Touch swiping visual hints */
.lightbox__swipe-hint {
  display: none;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .gallery__lightbox {
    padding: 16px;
  }

  .lightbox__slider-container {
    height: 55vh;
    padding: 0 10px;
  }

  .lightbox__nav {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }

  .lightbox__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .lightbox__info-panel {
    padding: 16px 20px;
    margin-top: 10px;
  }

  .lightbox__caption {
    font-size: 14px;
  }

  .lightbox__swipe-hint {
    display: block;
  }
}

/* ========== FOOTER ========== */
.footer {
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  margin-bottom: 18px;
  /* Light mode: show as-is in dark footer by inverting to white */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--primary);
  color: #ffffff;
}

.footer__heading {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer__links ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer__contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer__contact ul li i {
  color: var(--primary-light);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact ul li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact ul li a:hover {
  color: var(--primary-light);
}

.footer__bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER LIGHT MODE ===== */
[data-theme="light"] .footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

[data-theme="light"] .footer__grid {
  border-bottom-color: var(--border-color);
}

[data-theme="light"] .footer__logo {
  filter: none;
  opacity: 1;
}

[data-theme="light"] .footer__desc {
  color: var(--text-secondary);
}

[data-theme="light"] .footer__heading {
  color: var(--text-primary);
}

[data-theme="light"] .footer__links ul li a {
  color: var(--text-secondary);
}

[data-theme="light"] .footer__links ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

[data-theme="light"] .footer__contact ul li {
  color: var(--text-secondary);
}

[data-theme="light"] .footer__contact ul li i {
  color: var(--primary);
}

[data-theme="light"] .footer__contact ul li a {
  color: var(--text-secondary);
}

[data-theme="light"] .footer__contact ul li a:hover {
  color: var(--primary);
}

[data-theme="light"] .footer__social a {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

[data-theme="light"] .footer__social a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

[data-theme="light"] .footer__bottom {
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn__tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all var(--transition-base);
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

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

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal--up {
  transform: translateY(40px);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Form Success */
.form__success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form__success.show {
  display: block;
}

.form__success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(72, 187, 120, 0.1);
  color: #48bb78;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form__success h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form__success p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ========== SERVICE DETAIL VISUAL (Service Pages) ========== */
.service-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__icon-large {
  position: relative;
  width: 280px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: #ffffff;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 50%,
      var(--accent-gold) 100%);
  border-radius: 32px;
  box-shadow:
    0 20px 60px rgba(var(--primary-rgb), 0.3),
    0 8px 24px rgba(var(--primary-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: iconFloat 6s ease-in-out infinite;
}

.service-detail__icon-large::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 38px;
  border: 2px dashed rgba(var(--primary-rgb), 0.2);
  animation: iconSpin 30s linear infinite;
}

.service-detail__icon-large::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 48px;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
}

/* ===== Image variant ONLY (photo service pages) =====
   Scoped with :has(img) so icon-badge pages (rural, hoardings, seo,
   branding, brand-strategy, digital-marketing, google-ads) stay unchanged.
   Grows the frame, hides the orange gradient/rings behind the photo,
   and lets the image fill the container. Responsive at all breakpoints. */
.service-detail__icon-large:has(img) {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* Hide the decorative orange dashed rings so no orange shows around the photo */
.service-detail__icon-large:has(img)::before,
.service-detail__icon-large:has(img)::after {
  display: none;
}

/* Make the photo fill the frame cleanly */
.service-detail__icon-large:has(img) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes iconSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ========== PAGE BANNER BREADCRUMB ========== */
.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.page-banner__breadcrumb a:hover {
  color: var(--primary-light);
}

.page-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.page-banner__breadcrumb span:last-child {
  color: var(--primary-light);
  font-weight: 400;
}

/* ========== SERVICE WHY ITEMS ========== */
.service-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.service-why__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.service-why__item:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.service-why__item i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
}

.service-why__item span {
  line-height: 1.5;
}

/* ========== CLIENTS GRID (Homepage) ========== */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clients__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.clients__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.clients__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.clients__card:hover::before {
  transform: scaleX(1);
}

.clients__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.1),
      rgba(var(--primary-rgb), 0.05));
  color: var(--primary);
  font-size: 24px;
  transition: all var(--transition-base);
}

.clients__card:hover .clients__card-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.clients__card-title {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.clients__card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== FEATURED VISUAL DEFAULT (no modifier) ========== */
.featured__visual-bg {
  background: linear-gradient(135deg,
      var(--secondary) 0%,
      var(--secondary-light) 100%);
}

/* ========== HERO DECORATIVE ELEMENTS ========== */
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(232, 132, 42, 0.08);
  border-radius: 50%;
  z-index: 1;
  animation: heroShapeRotate 40s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(232, 132, 42, 0.06) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero__slider::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(232, 132, 42, 0.1);
  transform: rotate(45deg);
  z-index: 3;
  animation: heroShapeFloat 10s ease-in-out infinite;
}

.hero__slider::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 25%;
  width: 30px;
  height: 30px;
  background: rgba(232, 132, 42, 0.08);
  border-radius: 50%;
  z-index: 3;
  animation: heroShapeFloat 7s ease-in-out infinite reverse;
}

@keyframes heroShapeRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes heroShapeFloat {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-20px);
  }
}

/* ========== HERO GRADIENT ANIMATION ========== */
/* .hero__bg--1 {
  background-image: linear-gradient(135deg, #1a2036 0%, #2a3050 40%, #3a4060 100%),
    url("./assets/images/home/1.jpeg");
  background-size: cover;
  background-position: center;
  animation: heroGradient 12s ease infinite;
}

.hero__bg--2 {
   background-image: linear-gradient(135deg, #1a2036 0%, #2a3050 40%, #3a4060 100%),
    url("./assets/images/home/2.jpeg");
  background: linear-gradient(135deg, #0d1520 0%, #1a2a3a 40%, #2a3a4a 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease infinite;
}

.hero__bg--3 {
   background-image: linear-gradient(135deg, #1a2036 0%, #2a3050 40%, #3a4060 100%),
    url("./assets/images/home/3.jpeg");
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2040 40%, #3a3050 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease infinite;
} */




.hero__bg--1 {
  background-image:
    linear-gradient(135deg, rgba(26, 32, 54, 0.7), rgba(42, 48, 80, 0.7)),
    url("../images/Hero/Hero1.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg--2 {
  background-image:
    linear-gradient(135deg, rgba(13, 21, 32, 0.7), rgba(42, 58, 74, 0.7)),
    url("../images/Hero/Hero2.png");

  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero__bg--3 {
  background-image:
    linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(58, 48, 80, 0.7)),
    url("../images/Hero/Hero3.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ========== PAGE LOAD ANIMATION ========== */
@keyframes pageLoadFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageLoadFade 0.6s ease-out;
}

.page-banner__content {
  animation: pageLoadFade 0.8s 0.15s ease-out both;
}

/* ========== ENHANCED CARD HOVER MICRO-INTERACTIONS ========== */
.service-card:hover .service-card__title {
  color: var(--primary);
  transition: color var(--transition-fast);
}

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

.benefit-card:hover .benefit-card__title {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.related-card:hover .related-card__title {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.why-card:hover .why-card__title {
  color: var(--primary);
  transition: color var(--transition-fast);
}

/* ========== SECTION DECORATIVE ACCENTS ========== */
.section__tag::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-right: 10px;
  vertical-align: middle;
}

.section__header .section__tag::before {
  display: none;
}

/* ========== CONTACT INFO CARD ITEMS ========== */
.contact__info-item h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

/* ========== PREMIUM VISUAL ENHANCEMENTS ========== */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--accent-gold),
      var(--primary));
  background-size: 200% 100%;
  animation: progressShine 3s ease infinite;
  z-index: 10001;
  width: 0%;
  pointer-events: none;
}

@keyframes progressShine {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Animated Gradient Hero Text */
.hero__title span {
  color: transparent;
  background: linear-gradient(120deg,
      #f7c97e,
      var(--primary-light),
      #ffd193,
      var(--primary),
      #f7c97e);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTextShine 6s ease-in-out infinite;
}

@keyframes heroTextShine {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Section Divider Gradient */
.section__divider {
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
}

/* Button Premium Glow Hover */
.btn--primary {
  position: relative;
  overflow: visible;
}

.btn--primary:hover {
  box-shadow:
    0 8px 24px rgba(var(--primary-rgb), 0.4),
    0 0 60px rgba(var(--primary-rgb), 0.1);
}

/* Service Card Enhanced Hover */
.service-card:hover {
  box-shadow:
    0 16px 48px rgba(var(--primary-rgb), 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Service Card Stagger Reveal */
.services__grid .service-card.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.services__grid .service-card.reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.services__grid .service-card.reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.services__grid .service-card.reveal:nth-child(5) {
  transition-delay: 0.24s;
}

.services__grid .service-card.reveal:nth-child(6) {
  transition-delay: 0.3s;
}

.services__grid .service-card.reveal:nth-child(7) {
  transition-delay: 0.36s;
}

.services__grid .service-card.reveal:nth-child(8) {
  transition-delay: 0.42s;
}

.services__grid .service-card.reveal:nth-child(9) {
  transition-delay: 0.48s;
}

.services__grid .service-card.reveal:nth-child(10) {
  transition-delay: 0.54s;
}

.services__grid .service-card.reveal:nth-child(11) {
  transition-delay: 0.6s;
}

.services__grid .service-card.reveal:nth-child(12) {
  transition-delay: 0.66s;
}

/* Stats Number Glow */
.stats__number {
  text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
}

/* Why Card Accent Bar */
.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition-base);
  transform-origin: top;
}

.why-card:hover::before {
  transform: scaleY(1);
}

/* Clients Card Icon Glow */
.clients__card:hover .clients__card-icon {
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
}

/* Featured Visual Inner Glow */
.featured__visual-bg {
  position: relative;
}

.featured__visual-bg::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  filter: blur(50px);
  animation: visualGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes visualGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }

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

/* Page Banner Animated Gradient */
.page-banner {
  background-color: var(--secondary);
  background-image: var(--page-banner-image);
  background-position: center;
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes bannerShift {

  0%,
  100% {
    background-position:
      0% 50%,
      center;
  }

  50% {
    background-position:
      100% 50%,
      center;
  }
}

/* Experience Badge Glow Pulse */
.about__experience {
  animation: expGlow 4s ease-in-out infinite;
}

.blog-index {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.9) 100%);
}

.blog-index__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.blog-index__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.blog-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 580px;
  background: var(--bg-card);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(26, 26, 46, 0.1);
}

.blog-lead__media {
  position: relative;
  background: #ddd6cc;
}

.blog-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 31, 0) 0%, rgba(15, 18, 31, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}

.blog-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-lead__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 40px;
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.blog-lead__title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #171a31;
  margin-bottom: 20px;
  max-width: 8.5ch;
}

.blog-lead__excerpt {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 32ch;
}

.blog-lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.blog-curated {
  display: grid;
  gap: 20px;
}

.blog-curated__panel {
  border-radius: 26px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  box-shadow: var(--shadow-md);
}

.blog-curated__panel--accent {
  background:
    linear-gradient(160deg, rgba(30, 36, 64, 0.98) 0%, rgba(18, 24, 44, 0.98) 100%);
  color: #ffffff;
}

.blog-curated__panel--accent h3,
.blog-curated__panel--accent p {
  color: #ffffff;
}

.blog-curated__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.blog-curated__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.blog-topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-topic-grid a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 400;
  transition: all var(--transition-fast);
}

.blog-topic-grid a:hover {
  background: rgba(var(--primary-rgb), 0.14);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.blog-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 34px;
}

.blog-ribbon__item {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.blog-ribbon__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.blog-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.blog-story {
  grid-column: span 4;
  display: grid;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.blog-story:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-story--wide {
  grid-column: span 6;
}

.blog-story__media {
  min-height: 240px;
  background: #ddd6cc;
}

.blog-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-story__body {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.blog-story__title {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.blog-story__excerpt {
  color: var(--text-secondary);
}

.blog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(var(--primary-rgb), 0.04) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.blog-bottom__callout h3 {
  font-size: 30px;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 10px;
  max-width: 18ch;
}

.blog-bottom__callout p {
  max-width: 62ch;
  color: var(--text-secondary);
}

.blog-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 14px;
}

.blog-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.blog-card__title,
.article__title,
.article-related__title {
  color: var(--text-primary);
}

.blog-card__excerpt,
.article__lead,
.blog-sidebar__text,
.article__content p,
.article__content li {
  color: var(--text-secondary);
}

.blog-sidebar {
  display: grid;
  gap: 24px;
}

.blog-panel,
.article-panel,
.article-takeaway {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.blog-panel__title,
.article-panel__title {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.blog-topic-list,
.article-toc,
.article-quick-links {
  display: grid;
  gap: 12px;
}

.blog-topic-list a,
.article-toc a,
.article-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 400;
  transition: all var(--transition-fast);
}

.blog-topic-list a:hover,
.article-toc a:hover,
.article-quick-links a:hover {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  transform: translateX(4px);
}

.article-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.article__hero {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 28px;
}

.article__hero img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article__title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.article__lead {
  font-size: 18px;
  margin-bottom: 28px;
}

.article__content {
  display: grid;
  gap: 24px;
}

.article__content h2 {
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.article__content ul {
  list-style: disc;
  padding-left: 22px;
}

.article__content li+li {
  margin-top: 8px;
}

.article-takeaway {
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.12) 0%,
      rgba(var(--primary-rgb), 0.04) 100%);
}

.article-takeaway h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.article-related {
  margin-top: 36px;
}

.article-related__card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: var(--bg-secondary);
}

@media (max-width: 1024px) {

  .blog-index__intro,
  .blog-index__hero,
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .article,
  .blog-panel,
  .article-panel,
  .article-takeaway {
    padding: 24px;
  }

  .article__hero img {
    aspect-ratio: 4 / 3;
  }
}

@keyframes expGlow {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.3);
  }

  50% {
    box-shadow:
      0 8px 50px rgba(var(--primary-rgb), 0.5),
      0 0 80px rgba(var(--primary-rgb), 0.1);
  }
}

/* Service Detail Icon Hover Enhancement */
.service-detail__icon-large {
  transition: box-shadow 0.3s ease;
}

.service-detail__icon-large:hover {
  box-shadow:
    0 24px 80px rgba(var(--primary-rgb), 0.35),
    0 12px 32px rgba(var(--primary-rgb), 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Enhanced Benefit Card Hover */
.benefit-card:hover {
  box-shadow:
    0 12px 32px rgba(var(--primary-rgb), 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Related Card Hover Glow */
.related-card:hover {
  box-shadow:
    0 12px 32px rgba(var(--primary-rgb), 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}


/* ========== HERO SLIDER CONTROLS ========== */
.hero__controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.hero__arrow:hover {
  background: rgba(var(--primary-rgb), 0.8);
  border-color: var(--primary);
  transform: scale(1.08);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero__dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--primary);
}

.hero__dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

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

/* --- 1200px: Large Tablets / Small Desktops --- */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .hero__content {
    padding: 0 0 70px;
  }

  .hero__bottom {
    gap: 32px;
  }

  .about__grid {
    gap: 40px;
  }

  .nav__mega .mega-menu {
    width: 680px;
  }

  .footer__brand-left {
    padding-right: 40px;
  }

  .footer__brand-grid {
    gap: 40px;
  }
}

/* --- 1024px: Tablets Landscape --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero__title {
    font-size: clamp(36px, 5vw, 56px);
  }

  .hero__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__content {
    padding: 0 0 60px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured__block {
    gap: 36px;
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__mega .mega-menu {
    width: 600px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail__icon-large {
    width: 240px;
    height: 240px;
    font-size: 60px;
  }

  /* Stats on tablet */
  .stats__grid {
    gap: 30px;
  }

  .stats__number {
    font-size: 42px;
  }

  /* Blog */
  .blog-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-story {
    grid-column: span 1;
  }

  .blog-story--wide {
    grid-column: span 2;
  }
}

/* --- 768px: Tablets Portrait / Small Tablets --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --header-height: 70px;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery__caption {
    font-size: 14px;
  }

  .gallery__lightbox {
    padding: 20px;
  }

  .lightbox__close,
  .lightbox__nav {
    width: 46px;
    height: 46px;
  }

  .lightbox__close {
    top: 18px;
    right: 18px;
  }

  .lightbox__prev {
    left: 14px;
  }

  .lightbox__next {
    right: 14px;
  }

  .lightbox__caption {
    bottom: 18px;
    padding: 12px 18px;
    font-size: 13px;
  }

  /* Mobile Navigation Premium Redesign */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 16, 20, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: calc(var(--header-height) + 20px) 24px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 999;
    flex: none;
    justify-content: flex-start;
    border-top: none;
  }

  .nav__pill {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    height: 100vh;
  }

  .nav__list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }

  .nav__list>li {
    width: 100%;
  }

  .nav__link {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    border-bottom: none;
    border-radius: var(--radius-lg);
    justify-content: space-between;
    text-align: left;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-fast);
  }

  .nav__link:hover,
  .nav__link.active {
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.25);
  }

  .nav__link--highlight {
    background: var(--primary);
    color: #ffffff;
  }

  /* Mobile mega menu inner styling */
  .nav__mega .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }

  .nav__mega:hover .mega-menu,
  .nav__mega.open .mega-menu {
    display: grid;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu__heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 6px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .mega-menu__col ul li a {
    padding: 10px 0;
    font-size: 15px;
    color: #ffffff;
    display: block;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .mega-menu__col ul li a:hover {
    color: var(--primary-light);
    padding-left: 6px;
  }

  .hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  /* Hero — Mobile */
  .hero {
    height: 100vh;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .hero__slider {
    min-height: 0;
  }

  .hero__slide {
    position: relative;
    inset: auto;
  }

  .hero__slide:not(.active) {
    position: absolute;
    inset: 0;
  }

  .hero__content {
    height: 98vh;
    padding: 0;
  }

  .hero__heading {
    padding: 60px 20px 40px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 0;
  }

  .hero__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-primary);
    padding: 28px 20px;
    position: relative;
  }

  .hero__text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
  }

  [data-theme="light"] .hero__text {
    color: var(--text-secondary);
  }

  .hero__cta-btn {
    font-size: 13px;
    padding: 10px 24px 10px 52px;
  }

  /* Hero Controls — Mobile */
  .hero__controls {
    bottom: 24px;
    gap: 12px;
  }

  .hero__arrow {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .hero__dot {
    width: 8px;
    height: 8px;
  }

  .hero__dot.active {
    width: 22px;
  }

  .hero__scrollbar-wrap {
    bottom: auto;
    position: relative;
  }

  .hero__scrollbar {
    margin-top: -1px;
  }

  /* Page Banner */
  .page-banner {
    min-height: 300px;
    background-position: right center;
    padding: 84px 0 56px;
  }

  .page-banner__title {
    font-size: clamp(26px, 5vw, 38px);
  }

  .page-banner__subtitle {
    font-size: 15px;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__experience {
    right: 10px;
    bottom: -10px;
    padding: 18px 22px;
  }

  .about__experience-number {
    font-size: 32px;
  }

  .about__text {
    font-size: 15px;
  }

  .about__highlights li {
    font-size: 14px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats__item:not(:last-child)::after {
    display: none;
  }

  .stats__number {
    font-size: 38px;
  }

  .stats__suffix {
    font-size: 28px;
  }

  .stats__label {
    font-size: 13px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 28px 20px 24px;
  }

  .service-card__icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .service-card__title {
    font-size: 17px;
  }

  .service-card__text {
    font-size: 13px;
  }

  /* Why Us */
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card__number {
    font-size: 32px;
  }

  .why-card__title {
    font-size: 16px;
  }

  .why-card__text {
    font-size: 13px;
  }

  /* Featured */
  .featured__block,
  .featured__block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .featured__title {
    font-size: 24px;
  }

  /* Service Detail */
  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail__icon-large {
    width: 200px;
    height: 200px;
    font-size: 52px;
    border-radius: 24px;
  }

  .service-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Mission */
  .mission__grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 28px;
  }

  /* CTA Banner */
  .cta-banner {
    background-attachment: scroll;
    padding: 70px 0;
  }

  .cta-banner__title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .cta-banner__text {
    font-size: 15px;
  }

  /* Contact form */
  .form__row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px;
  }

  .contact__info-card {
    padding: 28px;
  }

  .contact__info-title {
    font-size: 20px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Related */
  .related__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Clients */
  .clients__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .clients__card {
    padding: 24px 18px;
  }

  .clients__card-title {
    font-size: 15px;
  }

  .clients__card-text {
    font-size: 13px;
  }

  .clients__trust {
    gap: 16px;
  }

  .trust-badge {
    padding: 16px 20px;
    flex: 1 1 calc(50% - 16px);
  }

  /* Services Overview */
  .services-overview__grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-ribbon {
    grid-template-columns: 1fr;
  }

  .blog-editorial {
    grid-template-columns: 1fr;
  }

  .blog-story,
  .blog-story--wide {
    grid-column: span 1;
  }

  .blog-lead {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .blog-lead__media {
    min-height: 260px;
  }

  .blog-lead__content {
    padding: 28px;
  }

  .blog-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .blog-bottom__actions {
    justify-content: center;
  }

  /* Section typography */
  .section__title {
    font-size: clamp(24px, 4vw, 34px);
  }

  .section__subtitle {
    font-size: 15px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

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

  /* Hero decorative elements — hide on mobile for performance */
  .hero::before,
  .hero::after,
  .hero__slider::before,
  .hero__slider::after {
    display: none;
  }
}

/* --- 480px: Mobile Phones --- */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px 0;
    --container-padding: 0 16px;
  }

  .header {
    top: 0;
  }

  /* Gallery */
  .gallery__item {
    border-radius: 22px;
  }

  .gallery__overlay {
    opacity: 1;
    transform: none;
    width: 42px;
    height: 42px;
    top: 14px;
    right: 14px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero__heading {
    min-height: 295px;
    padding: 15px 15px 0;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__bottom {
    padding: 16px;
    gap: 16px;
  }

  .hero__text {
    font-size: 12px;
  }

  .hero__cta-btn {
    font-size: 12px;
    padding: 8px 20px 8px 48px;
  }

  .hero__cta-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
    left: 10px;
  }

  /* Hero controls — compact on small screens */
  .hero__controls {
    bottom: 16px;
    gap: 8px;
  }

  .hero__arrow {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .hero__dot {
    width: 7px;
    height: 7px;
  }

  .hero__dot.active {
    width: 18px;
  }

  .hero__dots {
    gap: 7px;
  }

  /* Stats */
  .stats {
    padding: 48px 0;
  }

  .stats__grid {
    gap: 24px;
  }

  .stats__number {
    font-size: 32px;
  }

  .stats__suffix {
    font-size: 24px;
  }

  .stats__icon {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .stats__label {
    font-size: 12px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 52px 0;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Clients */
  .clients__grid {
    grid-template-columns: 1fr;
  }

  .clients__card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* Trust badges */
  .trust-badge {
    flex: 1 1 100%;
  }

  /* Why Cards */
  .why-card {
    gap: 14px;
    padding: 20px 16px;
  }

  /* Service Why grid */
  .service-why__grid {
    grid-template-columns: 1fr;
  }

  /* Related grid */
  .related__grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__form {
    padding: 20px;
  }

  .contact__info-card {
    padding: 20px;
  }

  .contact__info-title {
    font-size: 18px;
  }

  .form__input {
    padding: 12px 14px;
    font-size: 14px;
  }

  /* About */
  .about__experience {
    right: 5px;
    bottom: -10px;
    padding: 14px 18px;
  }

  .about__experience-number {
    font-size: 28px;
  }

  .about__experience-text {
    font-size: 11px;
  }

  .about__logo-display {
    /* width: 160px; */
  }

  /* Page Banner */
  .page-banner {
    min-height: 240px;
    padding: 76px 0 40px;
  }

  .page-banner__title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .page-banner__subtitle {
    font-size: 14px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  /* Floating buttons */
  .whatsapp-btn {
    bottom: 20px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .scroll-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* Section headers */
  .section__tag {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  /* Footer CTA */
  .footer__cta-new h2 {
    font-size: clamp(28px, 5vw, 48px);
  }

  /* Blog */
  .blog-lead__title {
    font-size: clamp(28px, 4vw, 36px);
  }

  .blog-lead__excerpt {
    font-size: 15px;
  }

  .blog-story__title {
    font-size: 20px;
  }

  .blog-story__body {
    padding: 20px;
  }

  /* Article */
  .article {
    padding: 20px;
    border-radius: 20px;
  }

  .article__title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .article__lead {
    font-size: 15px;
  }

  .article__content h2 {
    font-size: 22px;
  }

  .blog-panel,
  .article-panel,
  .article-takeaway {
    padding: 20px;
    border-radius: 18px;
  }
}

/* --- 360px: Very Small Phones --- */
@media (max-width: 360px) {
  :root {
    --container-padding: 0 12px;
    --section-padding: 40px 0;
  }

  .hero__title {
    font-size: 19px;
  }

  .hero__heading {
    min-height: 260px;
    padding: 12px 12px 0;
  }

  .hero__text {
    font-size: 11px;
  }

  .hero__cta-btn {
    font-size: 11px;
    padding: 6px 16px 6px 42px;
  }

  .hero__cta-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
    left: 8px;
  }

  .hero__controls {
    bottom: 12px;
    gap: 6px;
  }

  .hero__arrow {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .section__title {
    font-size: clamp(20px, 4vw, 28px);
  }

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

  .stats__number {
    font-size: 26px;
  }

  .stats__suffix {
    font-size: 20px;
  }

  .stats__icon {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-card {
    padding: 20px 14px 18px;
  }

  .service-card__title {
    font-size: 15px;
  }

  .service-card__text {
    font-size: 12px;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

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

  .about__text {
    font-size: 13px;
  }

  .about__highlights li {
    font-size: 13px;
    gap: 8px;
  }

  .contact__form {
    padding: 16px;
  }

  .contact__info-card {
    padding: 16px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner__title {
    font-size: clamp(20px, 4vw, 28px);
  }

  .cta-banner__text {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .whatsapp-btn {
    bottom: 16px;
    left: 12px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .scroll-top {
    bottom: 16px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* ========== PRINT ========== */
@media print {

  .header,
  .hero__scrollbar-wrap,
  .whatsapp-btn,
  .scroll-top,
  .cta-banner,
  .page-banner::before,
  .page-banner::after {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }
}

/* ========== ULTRA-PREMIUM REDESIGNED FOOTER (Granth Inspired) ========== */
.footer {
  background: #0e1118 !important;
  /* Forced dark background for premium look */
  color: #ffffff !important;
  padding: 80px 0 40px;
  position: relative;
  font-family: "Poppins", sans-serif;
  z-index: 10;
  margin-top: 137px;
}

.footer h2,
.footer h4,
.footer p,
.footer a:not(.social-icons-footer a) {
  color: #ffffff !important;
  /* Ensure visibility on dark background regardless of theme */
}

.social-icons-footer a i {
  color: #000000 !important;
  /* Force black icons on white circles */
}

.rating-stars i {
  color: #ff3b30 !important;
  /* Force red stars for ratings */
}

.footer__links-col a {
  opacity: 0.8;
}

.footer__links-col a:hover {
  opacity: 1;
  color: var(--primary) !important;
}

/* Footer CTA Section */
.footer__cta-new {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.footer__cta-hand {
  margin-top: -166px !important;
  width: 150px;
  height: 150px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 83px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: waveHand 2.5s infinite;
}

@keyframes waveHand {

  0%,
  100% {
    transform: rotate(0);
  }

  20% {
    transform: rotate(-15deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }
}

.footer__cta-new h2 {
  font-weight: 700;
  font-size: clamp(32px, 6vw, 70px);
  line-height: 110px;
  background: linear-gradient(180deg, #FFF 0%, #fff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;

  font-family: 'Biennale', sans-serif;
}

.footer__cta-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.footer__cta-red {
  background: #f09a4a;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 45px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(240, 154, 74, 0.35);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer__cta-red:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 45px rgba(240, 154, 74, 0.55);
  color: #ffffff;
}

.footer__cta-note {
  position: absolute;
  left: calc(50% + 160px);
  top: 10px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__cta-note p {
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.2;
}

.footer__cta-note svg {
  width: 30px;
  height: auto;
  opacity: 0.5;
}

/* Brand & Mascot Grid */
.footer__brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  align-items: center;
}

.footer__brand-left {
  padding-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-left .footer__logo {
  height: auto;
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer__brand-left p {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

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

.social-icons-footer a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 1);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons-footer a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
}

.brand-featured-mascot {
  text-align: center;
}

.brand-featured-mascot img {
  width: 240px;
  margin: 0 auto 20px;
  border-radius: 20px;
  transform: rotate(-90deg);
}

.brand-featured-mascot h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  font-family: "Syne", sans-serif;
}

/* Links Grid */
.footer__links-main {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer__links-col h4 {
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 25px;
  font-weight: 600;
  font-family: "Syne", sans-serif;
}

.footer__links-col ul li {
  margin-bottom: 15px;
}

.footer__links-col ul li a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer__links-col ul li a:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--primary);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
}

/* Rating Cards */
.footer__ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.rating-card {
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rating-card h5 {
  color: #333;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.rating-stars {
  color: #ff3b30;
  font-size: 14px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.rating-value {
  color: #333;
  font-weight: 700;
  font-size: 16px;
  margin-left: 5px;
}

/* Action Buttons */
.footer__action-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.footer__pill-btn {
  background: #ff0000;
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__pill-btn:hover {
  background: #cc0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Footer Bottom */
.footer__bottom-final {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-final a {
  color: #ffffff;
  margin: 0 10px;
}

.brand-ip {
  color: #ff0000 !important;
  font-weight: 700;
}

@media (max-width: 992px) {
  .footer__brand-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }

  .footer__brand-left .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__brand-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons-footer {
    justify-content: center;
  }

  .footer__links-main {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__cta-note {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {


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

  .footer__action-btns {
    flex-wrap: wrap;
  }

  .footer__cta-hand {
    margin-top: -130px !important;
    width: 100px;
    height: 100px;
    font-size: 60px;
  }

  .footer__cta-new h2 {
    line-height: normal;
    margin-bottom: 0;
  }

  .footer__cta-btn-wrap {
    flex-direction: column;
    margin-top: 20px;
  }

  .footer__cta-red {
    padding: 10px 30px;
    font-size: 14px;
  }

  .footer__brand-left p,
  .brand-featured-mascot h4 {
    font-size: 14px;
  }

  .footer__brand-grid {
    padding-bottom: 40px;
    margin-bottom: 20px;
  }

  .footer__links-col h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer__links-col ul li a {
    font-size: 14px;
  }

  .footer__links-col ul li {
    margin-bottom: 5px;
  }

  .footer__cta-note p,
  .footer__cta-note {
    display: none;
  }

  .footer__cta-new {
    margin-bottom: 40px;
  }

  .footer__brand-grid {
    padding-top: 40px;
  }
}






/* Brand */
/* ========== COMPACT FEATURE CARD ========== */
.service-feature__card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  background: var(--bg-card);
  padding: 25px;
  border-radius: 24px;
  align-items: center;
  max-width: 100%;
  /* Let Swiper control the width */
  margin: 0 auto;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

/* Compact Image Styling */
.service-feature__image {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

/* Compact Typography */
.service-feature__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
  transition: color var(--transition-base);
}

.service-feature__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color var(--transition-base);
}

/* Compact Pill Tags */
.service-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.pill-tag {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-primary);
  background: rgba(232, 132, 42, 0.05);
  transition: all var(--transition-fast);
}

.pill-tag:hover {
  background: var(--primary);
  color: var(--text-inverse);
  transform: translateY(-1px);
}

/* Compact View All Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 20px;
  border-radius: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
}

.view-all-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 132, 42, 0.35);
}

.view-all-btn__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.view-all-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: all var(--transition-base);
}

.view-all-btn:hover .view-all-btn__icon {
  background: var(--bg-primary);
  color: var(--primary);
  transform: translateX(3px);
}

/* 1. Reduce space between cards and allow peeking */
.serviceSwiper {
  padding-bottom: 60px !important;
  /* Space for dots below cards */
  overflow: visible !important;
  /* Allows the next slide to peek in */
}

.swiper-slide {
  width: 85%;
  /* Adjust this to control how much of the next card shows */
  transition: transform 0.3s ease;
}

/* 2. Fix Pagination (Dots below card) */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: var(--text-light);
  opacity: 0.4;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .service-feature__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* Clean Logo Grid Structure */
.clients__logo-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced gap between rows for a tighter honeycomb feel */
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.clients__logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* Horizontal gap between logos */
}

/* Force specific widths to maintain 6 vs 7 sequence */
.row-6 .client-logo__item {
  flex: 0 0 calc(100% / 6 - 20px);
}

.row-7 .client-logo__item {
  flex: 0 0 calc(100% / 7 - 20px);
}

.client-logo__item {
  aspect-ratio: 1 / 1;
  /* Keeps them square for better alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  /* Subtle border like Granth */
  border-radius: 12px;
  transition: all var(--transition-base);
}

.client-logo__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.client-logo__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive: Stack them on mobile */
@media (max-width: 1024px) {
  .clients__logo-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .row-6 .client-logo__item,
  .row-7 .client-logo__item {
    flex: 0 0 calc(33.33% - 15px);
    /* 3 per row on tablets */
  }
}

@media (max-width: 600px) {

  .row-6 .client-logo__item,
  .row-7 .client-logo__item {
    flex: 0 0 calc(50% - 15px);
    /* 2 per row on phones */
  }
}

/* Responsive Fix for Mobile Client Grid */
@media (max-width: 768px) {

  /* Allow rows to wrap so they don't collapse */
  .clients__logo-row {
    flex-wrap: wrap;
    gap: 15px;
    /* Tighter gap for mobile */
    justify-content: center;
  }

  /* Reset the 6 and 7 item logic for smaller screens */
  .row-6 .client-logo__item,
  .row-7 .client-logo__item {
    /* 3 per row on tablets, 2 per row on small phones */
    flex: 0 0 calc(33.33% - 15px);
    width: 100px;
    /* Force a minimum width */
    height: 100px;
    /* Force a minimum height */
  }

  /* Ensure images actually show up */
  .client-logo__item img {
    filter: grayscale(0%);
    /* Optional: keep color on mobile for better visibility */
    opacity: 1;
    max-width: 80%;
    /* Give some padding within the box */
  }
}

@media (max-width: 480px) {

  .row-6 .client-logo__item,
  .row-7 .client-logo__item {
    flex: 0 0 calc(50% - 15px);
    /* 2 per row on small phones */
    height: 90px;
  }
}

/* ========================================================
   GIFTING GALLERY — FULL-SCREEN BANNER SLIDER
   ======================================================== */

.gift-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 60px;
  /* container both sides */
  background: var(--bg-alt, #f5f5f5);
}

.gift-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 18px;
  /* contained, premium look */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

/* ---------- Individual Slide ---------- */
.gift-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.gift-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background image with Ken Burns zoom */
.gift-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.8s ease;
}

.gift-slide.active .gift-slide__bg {
  animation: giftKenBurns 5s ease-out forwards;
}

@keyframes giftKenBurns {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* Dark gradient overlay */
.gift-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

/* ---------- Caption ---------- */
.gift-slide__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 60px 70px 110px;
  max-width: 680px;
  /* Hidden by default, animates in when active */
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.gift-slide.active .gift-slide__caption {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

.gift-slide__tag {
  display: inline-block;
  background: var(--primary, #E8842A);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-20px);
  transition: none;
}

.gift-slide.active .gift-slide__tag {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.gift-slide__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(28px);
  transition: none;
}

.gift-slide.active .gift-slide__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
}

.gift-slide__text {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

.gift-slide.active .gift-slide__text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.95s, transform 0.8s ease 0.95s;
}

/* ---------- Navigation Arrows ---------- */
.gift-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.gift-slider__arrow:hover {
  background: var(--primary, #E8842A);
  border-color: var(--primary, #E8842A);
  transform: translateY(-50%) scale(1.1);
}

.gift-slider__arrow--prev {
  left: 28px;
}

.gift-slider__arrow--next {
  right: 28px;
}

/* ---------- Dot Indicators ---------- */
.gift-slider__dots {
  position: absolute;
  bottom: 52px;
  left: 70px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gift-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, width 0.35s;
}

.gift-dot.active {
  background: var(--primary, #E8842A);
  border-color: var(--primary, #E8842A);
  width: 28px;
  border-radius: 6px;
  transform: scale(1);
}

/* ---------- Progress Bar ---------- */
.gift-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.gift-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary, #E8842A), #ffb347);
  border-radius: 0 4px 4px 0;
}

/* ---------- Slide Counter ---------- */
.gift-slider__counter {
  position: absolute;
  bottom: 44px;
  right: 36px;
  z-index: 10;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}

.gift-slider__counter #giftCurrent {
  font-size: 26px;
  color: #fff;
  font-weight: 800;
}

.gift-slider__counter-sep {
  margin: 0 4px;
  opacity: 0.5;
}

/* ---------- Caption — hidden per user request ---------- */
.gift-slide__caption {
  display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .gift-slider-section {
    padding: 30px 36px;
  }
}

@media (max-width: 768px) {
  .gift-slider-section {
    padding: 20px 16px;
  }

  .gift-slider {
    height: 72vh;
    min-height: 360px;
    border-radius: 12px;
  }

  .gift-slider__arrow {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .gift-slider__arrow--prev {
    left: 14px;
  }

  .gift-slider__arrow--next {
    right: 14px;
  }

  .gift-slider__dots {
    left: 24px;
    bottom: 40px;
  }

  .gift-slider__counter {
    right: 20px;
    bottom: 34px;
  }
}

@media (max-width: 480px) {
  .gift-slider-section {
    padding: 14px 10px;
  }

  .gift-slider {
    height: 60vh;
    min-height: 280px;
    border-radius: 8px;
  }

  .gift-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .gift-slider__counter #giftCurrent,
  .gift-slider__counter #hoardingCurrent,
  .gift-slider__counter #eventCurrent,
  .gift-slider__counter #gantryCurrent,
  .gift-slider__counter #kioskCurrent {
    font-size: 20px;
  }
}