/* ============================================================
   RUDRA GRAPHICS PUNE - Premium CSS Design System
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --secondary: #2563EB;
  --dark-blue: #1E3A8A;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --success: #22C55E;
  --warning: #F59E0B;
  --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #2563EB 50%, #1E3A8A 100%);
  --gradient-light: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EDE9FE 100%);
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A8A 40%, #1D4ED8 70%, #0EA5E9 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.15), 0 12px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(14,165,233,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 76px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}
.loader-logo span { color: var(--primary); }
.loader-logo-img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 99px;
  animation: loaderAnim 1.4s ease forwards;
}
@keyframes loaderAnim { from { width: 0% } to { width: 100% } }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(14,165,233,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 50px; height: 50px; border-color: rgba(14,165,233,0.8); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Header */
.section-header { margin-bottom: 64px; }
.section-header.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 560px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,0.5); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(14,165,233,0.04); }
.btn-white {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  background: white;
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.nav-logo-text .brand { color: var(--text); }
.navbar.transparent .nav-logo-text .brand { color: white; }
.nav-logo-text .accent { color: var(--primary); }
.nav-logo-sub { font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; }
.navbar.transparent .nav-logo-sub { color: rgba(255,255,255,0.6); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  color: var(--text-muted);
  position: relative;
}
.navbar.transparent .nav-link { color: rgba(255,255,255,0.8); }
.nav-link:hover { color: var(--primary); background: rgba(14,165,233,0.06); }
.navbar.transparent .nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
}
.navbar.transparent .nav-phone { color: rgba(255,255,255,0.8); }
.nav-phone i { color: var(--success); font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.transparent .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 90vw);
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 96px 32px 32px;
  transition: var(--transition-slow);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-logo {
  position: absolute;
  top: 20px; left: 32px;
  display: flex;
  align-items: center;
}
.mobile-nav-logo img {
  height: 42px;
  width: auto;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-nav-link i { width: 20px; color: var(--primary); font-size: 14px; }
.mobile-nav-link:hover { background: var(--bg-light); color: var(--primary); }
.mobile-nav-footer { padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2563EB 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0EA5E9 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #1E3A8A 0%, transparent 70%);
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero Left */
.hero-left { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-heading {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-heading .accent { color: var(--primary); }
.hero-heading .line-break { display: block; }

/* Hero Slogan */
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: var(--primary);
  background: rgba(14,165,233,0.1);
  border-left: 3px solid var(--primary);
  padding: 10px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
}
.hero-slogan i { font-size: 12px; opacity: 0.8; }

/* Hero Photo Frame */
.hero-photo-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(150deg, #1E3A8A 0%, #0EA5E9 60%, #2563EB 100%);
  position: relative;
}
.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-photo-placeholder i {
  font-size: 56px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}
.hero-photo-placeholder-text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 0 24px;
}
.hero-photo-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-photo-tag-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.hero-photo-tag-text { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.4; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-number span { color: var(--primary); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* Hero Right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  position: relative;
  width: 480px;
  height: 480px;
}
.hero-logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-logo-icon {
  font-size: 48px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-logo-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.hero-logo-text small { font-weight: 400; color: rgba(255,255,255,0.6); font-size: 10px; display: block; margin-top: 2px; letter-spacing: 0.06em; }

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.float-card-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.float-card-text { }
.float-card-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
.float-card-value { font-size: 14px; font-weight: 700; color: white; font-family: var(--font-heading); }
.fc-1 { top: 40px; left: 0; animation: floatY 3s ease-in-out infinite; }
.fc-2 { top: 40px; right: 0; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.fc-3 { bottom: 100px; left: -20px; animation: floatY 4s ease-in-out infinite 1s; }
.fc-4 { bottom: 60px; right: -20px; animation: floatY 3.2s ease-in-out infinite 1.5s; }
.fc-5 { top: 50%; left: -40px; transform: translateY(-50%); animation: floatX 3.8s ease-in-out infinite 0.8s; }
.fc-6 { top: 50%; right: -40px; transform: translateY(-50%); animation: floatX 3.4s ease-in-out infinite 0.3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatX {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}

/* ============================================================
   MARQUEE / TRUSTED BY
   ============================================================ */
.marquee-section {
  padding: 32px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 36px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item i {
  font-size: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.marquee-item span { font-size: 15px; font-weight: 600; color: var(--text-muted); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--bg); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-preview-img-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.about-preview-img-placeholder i { font-size: 64px; color: rgba(255,255,255,0.4); }
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-img-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-img-badge-text { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.about-preview-content {}
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.highlight-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.highlight-item:hover { border-color: rgba(14,165,233,0.3); box-shadow: var(--shadow-md); }
.highlight-icon {
  width: 40px; height: 40px;
  background: rgba(14,165,233,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.highlight-label { font-size: 11px; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.highlight-value { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font-heading); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card-inner { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.15); color: white; }
.service-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--text); transition: var(--transition); }
.service-card:hover h3 { color: white; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; transition: var(--transition); }
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-arrow { color: white; transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 28px 24px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.2); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -8px;
}
.why-icon { font-size: 28px; color: var(--primary); margin-bottom: 14px; }
.why-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 14px; line-height: 1.6; }

/* ============================================================
   PORTFOLIO SHOWCASE
   ============================================================ */
.portfolio-section { background: var(--bg-light); }
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: white;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item.large { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-item-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-item:hover .portfolio-item-bg { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info {}
.portfolio-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(14,165,233,0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.portfolio-info h4 { color: white; font-size: 16px; margin-bottom: 8px; }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: white;
}
.portfolio-link i { font-size: 11px; }
.portfolio-icon-large { font-size: 80px; color: rgba(255,255,255,0.15); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--text); position: relative; overflow: hidden; }
.process-section-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14,165,233,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 50%);
}
.process-section .section-header .section-title { color: white; }
.process-section .eyebrow { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.3); }
.process-section .section-subtitle { color: rgba(255,255,255,0.6); }
.process-track {
  position: relative;
  display: flex;
  gap: 0;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--dark-blue));
  opacity: 0.3;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-step-num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  margin-bottom: 24px;
}
.process-step:nth-child(1) .process-step-num { background: rgba(14,165,233,0.2); border-color: var(--primary); }
.process-step-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}
.process-step h4 { color: white; font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: #FBBF24; font-size: 14px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--text); font-family: var(--font-heading); }
.testimonial-biz { font-size: 13px; color: var(--text-muted); }
.swiper { overflow: hidden; }
.swiper-pagination { margin-top: 32px; position: static !important; }
.swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--border);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.reviews-left {}
.google-rating-display {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
}
.google-logo {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 15px; font-weight: 700; color: var(--text-muted);
  margin-bottom: 16px;
}
.google-logo i { font-size: 20px; }
.rating-big {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.rating-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 8px; }
.rating-stars i { color: #FBBF24; font-size: 20px; }
.rating-count { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.reviews-right {}
.review-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.review-stat {
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.review-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.review-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.cta-shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.cta-shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; transform: translate(-50%,-50%); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: white; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}
.contact-info {}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }
.contact-map {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-map-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--text-muted);
}
.contact-map-placeholder i { font-size: 32px; color: var(--primary); }
.contact-form-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-logo-text { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: white; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-link:hover { color: var(--primary); transform: translateX(4px); }
.footer-link i { font-size: 10px; }
.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 14px; color: rgba(255,255,255,0.5);
  align-items: flex-start;
}
.footer-contact-item i { color: var(--primary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 11px 16px;
  font-size: 14px;
  color: white;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--primary); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--primary); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 84px; right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.float-whatsapp .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--text);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-whatsapp:hover .tooltip { opacity: 1; }
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(14,165,233,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(14,165,233,0.5); }

/* ============================================================
   AOS - custom overrides
   ============================================================ */
[data-aos] { transition-duration: 0.7s !important; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 10px; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: white;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.2); transform: translateY(-4px); }
.value-icon { font-size: 40px; color: var(--primary); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: white;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  height: 200px;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.4);
}
.team-info { padding: 20px; }
.team-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 500; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0.3;
}
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 20px; margin-bottom: 40px; align-items: center; }
.timeline-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.timeline-content.right { grid-column: 3; }
.timeline-dot {
  width: 60px; height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 800;
  color: white;
  grid-column: 2;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.15);
  z-index: 1;
}
.timeline-year { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.timeline-content h4 { font-size: 16px; margin-bottom: 6px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.service-placeholder i { font-size: 80px; opacity: 0.3; }
.service-detail-content {}
.service-benefits { margin: 24px 0; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.benefit-check {
  width: 24px; height: 24px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--success);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item p { font-size: 14px; color: var(--text); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: var(--transition); color: var(--text-light); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); display: none; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-masonry {
  columns: 3;
  gap: 20px;
}
.portfolio-masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-masonry-item img { width: 100%; display: block; }
.masonry-placeholder {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.masonry-placeholder i { font-size: 48px; opacity: 0.3; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 900px; max-height: 80vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  columns: 3;
  gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(0.98); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(14,165,233,0.7);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.2); }
.contact-card-icon {
  width: 56px; height: 56px;
  background: rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 22px;
  flex-shrink: 0;
}
.contact-card-title { font-size: 13px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-card-value { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-card-sub { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  :root { --navbar-height: 68px; }
  .section { padding: 70px 0; }
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .navbar-inner { padding: 0 20px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; align-items: center; }
  .process-track::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { columns: 2; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { font-size: 12px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .timeline::before { left: 30px; transform: none; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-dot { grid-column: 1; }
  .timeline-content.right { grid-column: 2; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { columns: 1; }
  .gallery-grid { columns: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.2rem; }
  .hero-heading { font-size: 2.2rem; }
}

/* ============================================================
   SHOW OUR WORK — global reusable image strip component
   (used on services.html, about.html, contact.html, etc.)
============================================================ */
.our-work-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
}
.our-work-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.our-work-heading i { color: var(--primary); font-size: 13px; }
.our-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.our-work-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.our-work-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(14,165,233,0.3); }
.our-work-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.our-work-thumb-inner i { font-size: 18px; color: rgba(255,255,255,0.55); }
.our-work-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(14,165,233,0.55);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px;
  transition: var(--transition);
}
.our-work-thumb:hover .our-work-thumb-overlay { opacity: 1; }
.our-work-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.6;
}
.our-work-note code {
  word-break: break-all;
}
.our-work-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .our-work-preview-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .our-work-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .our-work-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .our-work-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .our-work-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FULL RESPONSIVE — additional fixes for navbar, hero, maps,
   and extra-small phones (320px–375px)
============================================================ */

/* Navbar logo scales down on small screens */
@media (max-width: 768px) {
  .nav-logo-img { height: 38px; padding: 3px 8px; }
}
@media (max-width: 375px) {
  .nav-logo-img { height: 34px; padding: 3px 7px; }
  .navbar-inner { padding: 0 14px; }
}

/* Hero slogan wraps cleanly on small screens */
@media (max-width: 1024px) {
  .hero-slogan { margin-left: auto; margin-right: auto; text-align: left; }
}
@media (max-width: 480px) {
  .hero-slogan { font-size: 13px; padding: 8px 14px; }
}

/* Map iframes shrink on small screens to avoid excess scroll */
@media (max-width: 768px) {
  .map-container iframe { height: 260px !important; }
  .contact-map iframe { height: 180px !important; }
}
@media (max-width: 480px) {
  .map-container iframe { height: 220px !important; }
}

/* Footer logo scales on mobile */
@media (max-width: 768px) {
  .footer-logo-img { height: 42px; }
}

/* Loader logo text shrinks on small screens */
@media (max-width: 480px) {
  .loader-logo { font-size: 22px; }
}

/* Extra-small phones (320px–375px) — tighten spacing across the board */
@media (max-width: 375px) {
  .container, .container-sm { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  h1, .hero-heading { font-size: 1.9rem; }
  h2, .section-title { font-size: 1.6rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 1.5rem; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 18px; }
  .testimonial-card { padding: 24px; }
  .value-card, .why-card, .service-card { padding: 20px 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline-content { padding: 16px; }
  .float-whatsapp { width: 48px; height: 48px; font-size: 20px; bottom: 76px; right: 16px; }
  .back-to-top { width: 42px; height: 42px; font-size: 16px; bottom: 16px; right: 16px; }
}

/* Ensure all images and iframes never overflow their container */
img, iframe, video {
  max-width: 100%;
}

/* Prevent horizontal scroll from any fixed-width element */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Tables (if any added later) stay responsive */
table { width: 100%; }

/* Touch-friendly tap targets on mobile */
@media (max-width: 768px) {
  .nav-link, .mobile-nav-link, .footer-link, .btn { min-height: 40px; }
}
