/* ============================================
   MONTR ADS - DOOH Advertising Company
   Main Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #045CB4;
  --primary-dark: #033d7a;
  --primary-light: #e8f0fb;
  --secondary: #FC4100;
  --secondary-light: #fff0eb;
  --text-dark: #1a1a2e;
  --text-body: #444466;
  --text-muted: #7a7a9e;
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-section: #f8f9fc;
  --border-light: #e2e6ef;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 20px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1300px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

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

.section-header .overline {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(4, 92, 180, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 92, 180, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(252, 65, 0, 0.3);
}

.btn-secondary:hover {
  background: #e53a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 65, 0, 0.4);
}

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

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

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.06s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.12s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.18s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.24s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color var(--transition);
}

.logo span {
  color: var(--secondary);
}

.site-header.scrolled .logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
}

.nav-links .dropdown-menu a::after {
  display: none;
}

.nav-links .dropdown-menu a:hover {
  background: rgba(4, 92, 180, 0.05);
  color: var(--primary) !important;
}

/* Ensure glass-card background for dropdown */
.nav-links .dropdown-menu.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header.scrolled .nav-links a {
  color: var(--text-body);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--primary);
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.site-header.scrolled .header-cta .btn {
  background: var(--primary);
  color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .menu-toggle span {
  background: var(--text-dark);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right var(--transition);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: #fff !important;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.show {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(10, 10, 20, 0.75) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s ease forwards;
  opacity: 0;
}

.hero-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  animation: heroFadeUp 0.7s ease 0.15s forwards;
  opacity: 0;
}

.hero-content .btn {
  animation: heroFadeUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-bar .container {
  display: flex;
  justify-content: space-around;
  padding: 28px 24px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-item .stat-number span {
  color: var(--secondary);
}

.hero-stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

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

/* ============================================
   STATS SECTION — Modern Strip
   ============================================ */
.stats-section {
  padding: 0;
  background: var(--bg-white);
  position: relative;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
  padding: 52px 24px 48px;
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

.stat-item:hover {
  background: var(--bg-section);
}

.stat-item .stat-value {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-item .stat-value span {
  color: var(--secondary);
}

.stat-item .stat-label {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   ABOUT SITE SECTION
   ============================================ */
.about-site-section {
  background: var(--bg-section);
}

.about-site-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.about-video-wrapper iframe,
.about-video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: all var(--transition);
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-text .feature-list {
  margin-top: 24px;
}

.about-text .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text-dark);
}

.about-text .feature-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 24px;
  flex-shrink: 0;
}

/* ============================================
   CLIENTELE SECTION
   ============================================ */
.clientele-section {
  background: var(--bg-white);
  overflow: hidden;
}

.clientele-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.client-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.client-logo:hover {
  transform: scale(1.35);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: all var(--transition);
}

.client-logo:hover img {
  opacity: 1;
}

/* ============================================
   WHY DOOH SECTION
   ============================================ */
.why-dooh-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #112a4a 100%);
}

.why-dooh-section .section-header h2 {
  color: #fff;
}

.why-dooh-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.why-dooh-section .section-header .overline {
  color: var(--secondary);
}

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

.why-dooh-card {
  padding: 36px 28px;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.why-dooh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.why-dooh-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primary-light), #dce8f7);
  color: var(--primary);
  transition: all var(--transition);
}

.why-dooh-card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.why-dooh-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: #fff;
}

.why-dooh-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ============================================
   ADS SHOWCASE SECTION
   ============================================ */
.ads-section {
  background: var(--bg-white);
}

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

.ad-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  group: true;
}

.ad-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ad-card:hover .ad-card-img {
  transform: scale(1.08);
}

.ad-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 92, 180, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all var(--transition);
}

.ad-card-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.ad-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}

.badge-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(252, 65, 0, 0.3);
}

/* Ad card placeholders (gradient backgrounds) */
.ad-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.6s ease;
}

.ad-card:nth-child(1) .ad-placeholder { background: linear-gradient(135deg, #045CB4, #0a3d7a); }
.ad-card:nth-child(2) .ad-placeholder { background: linear-gradient(135deg, #FC4100, #c93500); }
.ad-card:nth-child(3) .ad-placeholder { background: linear-gradient(135deg, #1a1a2e, #2d2d52); }
.ad-card:nth-child(4) .ad-placeholder { background: linear-gradient(135deg, #045CB4, #FC4100); }

/* ============================================
   SERVICES SECTION — Modern Bento Grid
   ============================================ */
.services-section {
  background: var(--bg-section);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.service-tile {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

/* Tile 1: DOOH — large featured card */
.service-tile:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  background: linear-gradient(135deg, #045CB4, #033d7a);
  color: #fff;
}

.service-tile:nth-child(1)::before {
  background: linear-gradient(135deg, #0565cc, #045CB4);
}

/* Tile 2: Marketing */
.service-tile:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.service-tile:nth-child(2)::before {
  background: var(--bg-section);
}

/* Tile 3: AI Marketing */
.service-tile:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  background: linear-gradient(135deg, #FC4100, #c93500);
  color: #fff;
}

.service-tile:nth-child(3)::before {
  background: linear-gradient(135deg, #ff5722, #FC4100);
}

/* Tile 4: IT Services */
.service-tile:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 2 / 3;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.service-tile:nth-child(4)::before {
  background: var(--bg-section);
}

/* Tile 5: Marketing SaaS */
.service-tile:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
  background: linear-gradient(160deg, #0a1628, #112a4a);
  color: #fff;
}

.service-tile:nth-child(5)::before {
  background: linear-gradient(160deg, #112a4a, #0a1628);
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-tile .tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Icon styles for light tiles */
.service-tile:nth-child(2) .tile-icon,
.service-tile:nth-child(4) .tile-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.service-tile:nth-child(2):hover .tile-icon,
.service-tile:nth-child(4):hover .tile-icon {
  background: var(--primary);
  color: #fff;
}

/* Icon styles for dark tiles */
.service-tile:nth-child(1) .tile-icon,
.service-tile:nth-child(3) .tile-icon,
.service-tile:nth-child(5) .tile-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-tile:nth-child(1):hover .tile-icon,
.service-tile:nth-child(3):hover .tile-icon,
.service-tile:nth-child(5):hover .tile-icon {
  background: rgba(255, 255, 255, 0.25);
}

.service-tile .tile-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.service-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-tile p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Light tile text colors */
.service-tile:nth-child(2) p,
.service-tile:nth-child(4) p {
  color: var(--text-muted);
}

/* Dark tile text colors */
.service-tile:nth-child(1) p,
.service-tile:nth-child(3) p,
.service-tile:nth-child(5) p {
  color: rgba(255, 255, 255, 0.7);
}

.service-tile .tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.82rem;
  transition: gap 0.2s ease;
}

.service-tile:nth-child(2) .tile-arrow,
.service-tile:nth-child(4) .tile-arrow {
  color: var(--primary);
}

.service-tile:nth-child(1) .tile-arrow,
.service-tile:nth-child(3) .tile-arrow,
.service-tile:nth-child(5) .tile-arrow {
  color: rgba(255, 255, 255, 0.85);
}

.service-tile:hover .tile-arrow {
  gap: 12px;
}

/* Services responsive */
@media (max-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .service-tile:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4),
  .service-tile:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-tile:nth-child(1) {
    grid-column: 1;
  }
  .service-tile {
    min-height: 200px;
  }
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
  background: var(--bg-white);
}

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

.partner-card {
  padding: 40px 32px;
  text-align: left;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  background: var(--bg-white);
}

.partner-card .partner-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 24px 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--secondary-light);
  color: var(--secondary);
  transition: all var(--transition);
}

.partner-card:hover .partner-icon {
  background: var(--secondary);
  color: #fff;
}

.partner-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.partner-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.partner-card-list {
  text-align: left;
  margin: 0 0 24px 0;
  padding-left: 20px;
  list-style: disc;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.partner-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--bg-section);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 40px;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-card .testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-card .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-card .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-primary);
}

.testimonial-card .author-name {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.testimonial-card .author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slider-dots .dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0f1e;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
  color: #fff;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-links a.instagram-badge {
  width: auto;
  height: auto;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  gap: 8px;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-links a.instagram-badge:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-column ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

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

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #e53a00;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(160deg, #0a1628 0%, #0d2137 40%, #112a4a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(4, 92, 180, 0.08);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(252, 65, 0, 0.04);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .separator {
  font-size: 0.75rem;
}

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

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), #dce8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.value-card {
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

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

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 45%;
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.timeline-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item:nth-child(odd)::before {
  right: -38px;
}

.timeline-item:nth-child(even)::before {
  left: -38px;
}

.timeline-item .year {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-light), #dce8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  transition: all 0.35s ease;
  overflow: hidden;
}

.team-card:hover .team-avatar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.team-card .team-info {
  padding: 24px 20px;
}

.team-card .team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .team-info .role {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card .team-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--text-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(4, 92, 180, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card .info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 32px;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.legal-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.legal-tabs button {
  padding: 12px 28px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  background: var(--bg-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.legal-tabs button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.legal-tabs button:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   SITE PAGE (Screen Locations)
   ============================================ */
.site-map-section {
  background: var(--bg-light);
}

.site-map-placeholder {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f0fb, #dce8f7);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.site-map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
}

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

.location-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.location-card .location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-card .loc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.1rem;
}

.location-card h3 {
  font-size: 1.05rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.location-card .location-stats {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}

.location-card .location-stats span {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   STATS GRID & CARDS (Used in Site & Partners)
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.2, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.stat-card .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
  transition: all 0.35s ease;
}

.stat-card:hover .stat-icon {
  background: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
}

.stat-card .stat-value {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-card .stat-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.partner-benefit-card {
  padding: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  transition: all var(--transition);
}

.partner-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--secondary-light);
  color: var(--secondary);
  flex-shrink: 0;
}

.partner-benefit-card h3 {
  margin-bottom: 8px;
}

.partner-benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.partner-types-section .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ============================================
   CLIENTELE PAGE
   ============================================ */
.clientele-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.client-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.client-card .client-logo-placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.client-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.client-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.case-study-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-study-image {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-light), #dce8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.case-study-content h3 {
  margin-bottom: 12px;
}

.case-study-content .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.case-study-content .tag {
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.case-study-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-bottom-two {
    max-width: 100%;
  }

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero-stats-bar .container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-item {
    width: calc(50% - 10px);
  }

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

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

  .about-site-grid,
  .about-story-grid,
  .contact-grid,
  .case-study-card {
    grid-template-columns: 1fr;
  }

  .why-dooh-grid {
    grid-template-columns: 1fr;
  }

  .clientele-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 20px !important;
  }

  .client-logo {
    width: 100% !important;
    padding: 10px;
  }

  .client-logo img {
    max-height: 100px;
    margin: 0 auto;
  }

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

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

  .services-bottom-two {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .partner-grid,
  .partner-types-section .partner-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }

  .timeline-item::before {
    left: -38px !important;
    right: auto !important;
  }

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

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

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

  .locations-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-stats-bar .hero-stat-item .stat-number {
    font-size: 1.5rem;
  }

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

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  color: #fff;
}

/* ============================================
   BLOG HERO SECTION
   ============================================ */
.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-light);
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* Subtle noise texture */
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.blog-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.blog-hero-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.blog-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(4, 92, 180, 0.2);
}

.blog-hero h1 {
  color: var(--text-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 800;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-body);
  font-size: 0.95rem;
  font-family: var(--font-secondary);
  font-weight: 500;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

.blog-breadcrumbs {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-breadcrumbs a {
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-weight: 500;
}

.blog-breadcrumbs a:hover {
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.mouse {
  width: 22px;
  height: 38px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  position: relative;
}

.mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }
  .blog-hero-glass {
    padding: 40px 24px;
  }
  .blog-meta {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   BLOG CONTENT
   ============================================ */
.blog-post-content {
  padding: 80px 0;
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 40px;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.blog-post-content p {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.blog-post-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.blog-post-content a:hover {
  color: var(--secondary);
}

.blog-content-image {
  margin: 40px 0;
  text-align: center;
}

.blog-content-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-primary);
}

.toast-content i {
  color: var(--success, #22c55e);
  font-size: 1.2rem;
}