/* Sonu Jan Sewa Kendra - CSS Stylesheet */

/* --- 1. CSS Custom Properties / Design Tokens --- */
:root {
  /* Light Theme Color Tokens */
  --primary-hue: 24;
  --secondary-hue: 122;
  --brand-hue: 232;
  
  --primary: hsl(var(--primary-hue), 100%, 50%);         /* Saffron Orange */
  --primary-hover: hsl(var(--primary-hue), 100%, 43%);
  --secondary: hsl(var(--secondary-hue), 61%, 37%);      /* Emerald Green */
  --secondary-hover: hsl(var(--secondary-hue), 61%, 30%);
  --brand: hsl(var(--brand-hue), 60%, 15%);              /* Deep Royal Navy */
  --brand-light: hsl(var(--brand-hue), 30%, 96%);
  
  --text-main: hsl(var(--brand-hue), 40%, 12%);
  --text-muted: hsl(var(--brand-hue), 20%, 45%);
  --bg-main: hsl(0, 0%, 100%);
  --bg-section: hsl(var(--brand-hue), 30%, 97%);
  --card-bg: hsl(0, 0%, 100%);
  --border: hsl(var(--brand-hue), 15%, 88%);
  
  /* Shadows and Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(26, 35, 126, 0.08), 0 8px 10px -6px rgba(26, 35, 126, 0.06);
  --shadow-lg: 0 20px 40px -10px rgba(26, 35, 126, 0.15);
  --shadow-glow: 0 0 20px hsla(var(--primary-hue), 100%, 50%, 0.35);
  --shadow-whatsapp: 0 10px 20px rgba(37, 211, 102, 0.3);
  --shadow-phone: 0 10px 20px rgba(0, 176, 255, 0.3);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

/* --- Dark Theme Variables Override --- */
[data-theme="dark"] {
  --text-main: hsl(var(--brand-hue), 20%, 90%);
  --text-muted: hsl(var(--brand-hue), 15%, 70%);
  --bg-main: hsl(var(--brand-hue), 25%, 8%);
  --bg-section: hsl(var(--brand-hue), 25%, 11%);
  --card-bg: hsl(var(--brand-hue), 22%, 14%);
  --border: hsl(var(--brand-hue), 15%, 22%);
  --brand-light: hsl(var(--brand-hue), 22%, 14%);
  
  --glass-bg: rgba(26, 35, 126, 0.2);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- 2. Base & Typography Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

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

button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- 3. Animation Framework (Glows, Scrolls, Marquees) --- */

/* Animation 1: Ticker Marquee text scroll */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Animation 2: Hero title fade-in slide-up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation 3: Floating actions shake and float */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  }
}

@keyframes pulsePhoneGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 176, 255, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 176, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 176, 255, 0.3);
  }
}

/* Animation 4: Glowing ambient lights in backgrounds */
@keyframes glowMovement {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

.animate-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}

.hero-title.animate-up { animation-delay: 0.1s; }
.hero-desc.animate-up { animation-delay: 0.2s; }
.hero-ctas.animate-up { animation-delay: 0.3s; }

/* Scroll-based card animations */
.animate-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- 4. Component Layouts --- */

/* Announcement Header Bar (Animation 1) */
.ticker-wrap {
  width: 100%;
  background-color: var(--brand);
  color: #ffffff;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 2px solid var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.ticker-title {
  background: var(--primary);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-weight: 800;
  z-index: 2;
  position: relative;
  box-shadow: 4px 0 10px rgba(0,0,0,0.2);
}

.ticker {
  display: flex;
  width: 100%;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 2.5rem;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 42px;
  height: 42px;
  transition: transform var(--transition-normal);
}

.nav-logo:hover .logo-img {
  transform: rotate(360deg);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .logo-text {
  color: #ffffff;
}

.accent-orange {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border);
}

.theme-btn:hover {
  transform: scale(1.05);
  background-color: var(--border);
}

.theme-btn svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

[data-theme="dark"] .theme-btn svg {
  color: #ffffff;
}

.hidden {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff7300);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px hsla(var(--primary-hue), 100%, 50%, 0.5);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px hsla(var(--secondary-hue), 61%, 37%, 0.4);
}

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

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

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
}

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

.btn-block {
  width: 100%;
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
}

/* --- 5. Sections Styles --- */

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 5rem 0;
  display: flex;
  align-items: center;
  background-color: var(--brand);
  color: #ffffff;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(13, 17, 54, 0.9) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background-color: rgba(255, 153, 51, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 153, 51, 0.3);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 20%, #ffd700 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Stats Dashboard (Animation 2 - glowing cards) */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-5px) translateY(-2px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 153, 51, 0.4);
}

.stat-icon {
  font-size: 2.5rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about-section {
  padding: 7rem 0;
  background-color: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  background: linear-gradient(135deg, var(--brand-light), var(--border));
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.about-main-img {
  max-width: 280px;
  filter: drop-shadow(0 15px 30px rgba(26, 35, 126, 0.15));
}

.sub-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .section-title {
  color: #ffffff;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: hsla(var(--secondary-hue), 61%, 37%, 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.highlight-text {
  font-weight: 600;
  font-size: 1rem;
}

/* Services Section */
.services-section {
  padding: 7rem 0;
  background-color: var(--bg-section);
}

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

.section-desc {
  max-width: 700px;
  margin: 0.5rem auto 3rem auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.service-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

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

/* Services Grid and Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-blue { background-color: rgba(33, 150, 243, 0.12); color: #2196f3; }
.badge-green { background-color: rgba(76, 175, 80, 0.12); color: #4caf50; }
.badge-orange { background-color: rgba(255, 152, 0, 0.12); color: #ff9800; }
.badge-teal { background-color: rgba(0, 150, 136, 0.12); color: #009688; }
.badge-purple { background-color: rgba(156, 39, 176, 0.12); color: #9c27b0; }

.service-card-title {
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .service-card-title {
  color: #ffffff;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}

.service-link:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

/* Urgent CTA Banner (Animation 3 - Glowing tricolor gradient) */
.cta-banner {
  background: linear-gradient(135deg, hsl(232, 60%, 15%) 0%, hsl(24, 100%, 45%) 50%, hsl(122, 61%, 30%) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

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

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.cta-text-wrap {
  max-width: 700px;
}

.cta-heading {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-btn-wrap {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
  padding: 7rem 0;
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-card {
  padding-right: 2rem;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: var(--brand-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text {
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-text strong {
  color: var(--text-main);
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}

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

/* Contact Form with validations */
.contact-form-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.75rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .form-title {
  color: #ffffff;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.required {
  color: #ff3333;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  background-color: var(--bg-main);
  transition: all var(--transition-fast);
  color: var(--text-main);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px hsla(var(--primary-hue), 100%, 50%, 0.12);
}

/* Validations and error statuses */
.form-group.error input, .form-group.error select {
  border-color: #ff3333;
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #ff3333;
  margin-top: 0.35rem;
  font-weight: 600;
}

.form-group.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background-color: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #c8e6c9;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* Map Section */
.map-section {
  padding: 7rem 0;
  background-color: var(--bg-section);
  border-top: 1px solid var(--border);
}

.map-container {
  margin-top: 3.5rem;
  border-radius: 28px;
  overflow: hidden;
  height: 450px;
  border: 4px solid var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.google-map-fallback {
  background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.85)), url('assets/images/hero-banner.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card-glow {
  background-color: var(--card-bg);
  color: var(--text-main);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 450px;
  text-align: center;
  border: 1px solid var(--border);
}

.map-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.map-card-glow h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.map-card-glow p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Footer Section */
.footer {
  background-color: var(--brand);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 2px solid var(--primary);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-about-text {
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-info p {
  margin-bottom: 1rem;
}

.footer-phone {
  color: #ffffff;
  font-weight: 700;
}

.footer-phone:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.875rem;
}

/* Floating Actions Bar (Animation 4 - bouncing contact controls) */
.floating-action-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.whatsapp-btn {
  background-color: #25d366;
  animation: pulseGlow 2s infinite ease-in-out;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

.phone-btn {
  background-color: #00b0ff;
  animation: pulsePhoneGlow 2s infinite ease-in-out;
  animation-delay: 1s;
}

.phone-btn:hover {
  background-color: #0091ea;
  transform: scale(1.1);
}

.float-icon-svg {
  width: 28px;
  height: 28px;
}

/* --- 6. Responsive Styles & Adaptations --- */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat-card {
    flex: 1 1 250px;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-main);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
  
  .nav-actions {
    margin-right: 3rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .floating-action-bar {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .float-icon-svg {
    width: 22px;
    height: 22px;
  }
}
