/* ============================================
   Krishna Services - Complete Static CSS
   ============================================ */

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

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --primary: hsl(215, 80%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(215, 70%, 35%);
  --primary-dark: hsl(215, 85%, 18%);
  --accent: hsl(45, 95%, 50%);
  --accent-foreground: hsl(215, 25%, 15%);
  --accent-light: hsl(45, 90%, 60%);
  --accent-dark: hsl(45, 100%, 40%);
  --secondary: hsl(215, 20%, 96%);
  --muted: hsl(215, 15%, 95%);
  --muted-foreground: hsl(215, 15%, 45%);
  --border: hsl(215, 20%, 90%);
  --destructive: hsl(0, 84%, 60%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(215, 80%, 25%), hsl(215, 85%, 18%));
  --gradient-hero: linear-gradient(135deg, hsla(215, 80%, 25%, 0.95), hsla(215, 85%, 18%, 0.85));
  --shadow-sm: 0 2px 8px hsla(215, 25%, 15%, 0.06);
  --shadow-md: 0 4px 20px hsla(215, 25%, 15%, 0.08);
  --shadow-lg: 0 8px 40px hsla(215, 25%, 15%, 0.12);
  --shadow-accent: 0 4px 20px hsla(45, 95%, 50%, 0.3);
  --shadow-primary: 0 4px 20px hsla(215, 80%, 25%, 0.25);
  --whatsapp: hsl(142, 70%, 45%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

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

ul {
  list-style: none;
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: hsla(215, 80%, 25%, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsla(215, 80%, 25%, 0.5); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen { min-height: 100vh; }

/* ---- Grid System ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* ---- Flexbox ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.shrink-0 { flex-shrink: 0; }

/* ---- Text ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.625; }
.break-all { word-break: break-all; }

/* ---- Colors ---- */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-primary-foreground-80 { color: hsla(0, 0%, 100%, 0.8); }
.text-primary-foreground-90 { color: hsla(0, 0%, 100%, 0.9); }
.text-primary-foreground-70 { color: hsla(0, 0%, 100%, 0.7); }
.text-primary-foreground-60 { color: hsla(0, 0%, 100%, 0.6); }

.bg-background { background-color: var(--background); }
.bg-muted-50 { background-color: hsla(215, 15%, 95%, 0.5); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-muted { background-color: var(--muted); }
.bg-gradient-primary { background: var(--gradient-primary); }

/* ---- Spacing ---- */
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

/* ---- Borders & Radius ---- */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border { border: 1px solid var(--border); }
.border-border-50 { border: 1px solid hsla(215, 20%, 90%, 0.5); }
.border-t { border-top: 1px solid var(--border); }

/* ---- Shadows ---- */
.shadow-card { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ---- Sizing ---- */
.w-full { width: 100%; }
.h-auto { height: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }

/* =======================================
   COMPONENT STYLES
   ======================================= */

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--background);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.header-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  border-radius: 9999px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.desktop-nav a,
.desktop-nav .nav-dropdown-trigger {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a:hover,
.desktop-nav .nav-dropdown-trigger:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu-inner {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 160px;
}

.nav-dropdown-menu-inner a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu-inner a:hover {
  background: var(--muted);
  color: var(--primary);
}

.header-cta-desktop {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: var(--muted);
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.mobile-menu nav a {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  width: 100%;
}

.mobile-menu nav a:hover {
  background: var(--muted);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  gap: 0.5rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-cta {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-cta-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.5);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(45, 95%, 50%, 0.4); }
  50% { box-shadow: 0 0 40px hsla(45, 95%, 50%, 0.6); }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 1rem;
  text-align: center;
  width: 100%;
}

.hero-content-inner {
  max-width: 56rem;
  margin: 0 auto;
  animation: fadeUp 0.6s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(45, 95%, 50%, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(45, 95%, 50%, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge span:last-child {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: hsla(0, 0%, 100%, 0.5);
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* ---- Services Cards ---- */
.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsla(215, 20%, 90%, 0.5);
  transition: all 0.3s;
}

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

.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

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

.service-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* ---- Why Us Feature Cards ---- */
.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid hsla(215, 20%, 90%, 0.5);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: hsla(45, 95%, 50%, 0.3);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(45, 95%, 50%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.feature-card h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ---- About Section ---- */
.about-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid hsla(215, 20%, 90%, 0.5);
}

.about-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-icon.primary {
  background: hsla(215, 80%, 25%, 0.1);
}

.about-icon.primary svg {
  color: var(--primary);
}

.about-icon.accent {
  background: hsla(45, 95%, 50%, 0.1);
}

.about-icon.accent svg {
  color: var(--accent);
}

.leadership-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsla(215, 20%, 90%, 0.5);
}

.leader-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsla(215, 15%, 95%, 0.5);
  transition: background 0.2s;
}

.leader-item:hover {
  background: var(--muted);
}

.leader-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid hsla(215, 80%, 25%, 0.2);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.125rem;
}

.leader-role {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.leader-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.cert-bar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
}

.cert-item-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.cert-item-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.cert-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: hsla(45, 95%, 50%, 0.3);
}

.testimonial-quote-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsla(45, 95%, 50%, 0.5);
  margin-bottom: 1rem;
}

.testimonial-content {
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-avatar {
  width: 3rem;
  height: 3rem;
  background: hsla(45, 95%, 50%, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author-avatar span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--primary-foreground);
}

.testimonial-author-role {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
}

/* ---- Contact Section ---- */
.contact-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsla(215, 20%, 90%, 0.5);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-icon.primary {
  background: hsla(215, 80%, 25%, 0.1);
}

.contact-info-icon.primary svg {
  color: var(--primary);
}

.contact-info-icon.accent {
  background: hsla(45, 95%, 50%, 0.1);
}

.contact-info-icon.accent svg {
  color: var(--accent);
}

.contact-info-item h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 16rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Form ---- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(215, 80%, 25%, 0.1);
}

.form-input { height: 3rem; }

.form-textarea {
  resize: none;
  min-height: 6rem;
}

.form-select {
  height: 3rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-error {
  color: var(--destructive);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item span,
.footer-contact-item a {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-logo img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 9999px;
  padding: 0.25rem;
}

.footer-description {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ---- WhatsApp Button ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--whatsapp);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: hsl(142, 70%, 40%);
  transform: scale(1.1);
  box-shadow: 0 8px 25px hsla(142, 70%, 45%, 0.4);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ---- Gallery ---- */
.gallery-filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  background: var(--muted);
  color: var(--muted-foreground);
  border: none;
  cursor: pointer;
}

.gallery-filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-primary);
}

.gallery-filter-btn:hover:not(.active) {
  background: hsla(215, 15%, 95%, 0.8);
}

.masonry {
  column-count: 1;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.masonry-item-inner {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}

.masonry-item-inner:hover {
  box-shadow: var(--shadow-lg);
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: hsla(215, 80%, 25%, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-item:hover .masonry-item-overlay {
  background: hsla(215, 80%, 25%, 0.4);
}

.masonry-item-overlay span {
  color: var(--primary-foreground);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.masonry-item:hover .masonry-item-overlay span {
  opacity: 1;
}

.masonry-item-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsla(215, 25%, 15%, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: hsla(0, 0%, 100%, 0.3);
}

.lightbox-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
}

/* ---- Page Hero (Sub Pages) ---- */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--gradient-primary);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.page-hero p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.page-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-hero-icon > div {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(45, 95%, 50%, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

/* ---- Service Detail Cards ---- */
.detail-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsla(215, 20%, 90%, 0.5);
  transition: box-shadow 0.3s;
}

.detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.detail-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.detail-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.detail-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.detail-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.detail-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.detail-card li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.detail-card li span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---- Benefit Cards ---- */
.benefit-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(215, 20%, 90%, 0.5);
}

.benefit-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.benefit-card h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---- Industry / Venue Tags ---- */
.tag-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(215, 20%, 90%, 0.5);
}

.tag-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ---- CTA Sections ---- */
.cta-section {
  padding: 5rem 0;
  background: var(--primary);
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* ---- Check List Item ---- */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.check-item h4 {
  font-weight: 600;
  color: var(--foreground);
}

.check-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---- Service Image ---- */
.service-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-image.object-top {
  object-position: top;
}

.service-image.object-center {
  object-position: center;
}

/* ---- Background Pattern ---- */
.bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, var(--primary) 1px, transparent 0);
  background-size: 32px 32px;
}

.bg-pattern-light {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, var(--primary-foreground) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ---- Toast / Success Message ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: row; }
  .cta-section .hero-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-md-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-md-4 { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 3rem; }
  .hero-stat-value { font-size: 2.25rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .section-title { font-size: 2.25rem; }
  .page-hero h1 { font-size: 3rem; }
  .cta-section h2 { font-size: 2.25rem; }
  .masonry { column-count: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .header-cta-desktop { display: flex; }
  .mobile-menu-toggle { display: none; }
  .grid-lg-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-lg-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-lg-4 { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 3.75rem; }
  .py-lg-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .section-title { font-size: 3rem; }
  .page-hero h1 { font-size: 3.75rem; }
  .cta-section h2 { font-size: 2.25rem; }
  .masonry { column-count: 3; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .lg-gap-16 { gap: 4rem; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }

  .header-inner {
    justify-content: flex-start;
    gap: 2rem;
  }
}

/* ---- Utility for order swap on mobile ---- */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* ---- Relative + Z-index ---- */
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ---- Spinner ---- */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-top-color: white;
  border-radius: 9999px;
  animation: spin 0.6s linear infinite;
}
