/* ERC InfoSec - Static CSS Styles */

/* CSS Variables - Design System */
:root {
  /* Colors - HSL Format */
  --background: hsl(220, 25%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 25%, 8%);
  --card-foreground: hsl(210, 40%, 98%);
  --primary: hsl(220, 35%, 12%);
  --primary-foreground: hsl(210, 40%, 98%);
  --secondary: hsl(195, 100%, 50%);
  --secondary-foreground: hsl(220, 25%, 6%);
  --muted: hsl(220, 20%, 14%);
  --muted-foreground: hsl(215, 25%, 65%);
  --accent: hsl(195, 100%, 60%);
  --accent-foreground: hsl(220, 25%, 6%);
  --border: hsl(220, 20%, 18%);
  --success: hsl(142, 76%, 36%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(220, 35%, 12%), hsl(220, 40%, 18%));
  --gradient-secondary: linear-gradient(135deg, hsl(195, 100%, 50%), hsl(200, 100%, 60%));
  --gradient-hero: linear-gradient(135deg, hsl(220, 25%, 6%) 0%, hsl(220, 30%, 10%) 50%, hsl(195, 50%, 15%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(220, 25%, 8%), hsl(220, 20%, 12%));
  
  /* Shadows & Glows */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
  --shadow-glow-strong: 0 0 40px rgba(0, 255, 255, 0.4);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --container-max: 1200px;
  --container-padding: 1rem;
  
  /* Borders */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

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

body {
  font-family: var(--font-primary);
  background: var(--gradient-hero);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
}

.glow-text {
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--shadow-glow);
}

/* Buttons */
.btn-hero {
  background: var(--gradient-secondary);
  color: var(--accent-foreground);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 1rem;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 1rem;
}

.btn-ghost:hover {
  background: var(--secondary);
  color: var(--accent-foreground);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-fixed.scrolled {
  background: rgba(16, 24, 39, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

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

.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.shield-icon {
  width: 100%;
  height: 100%;
  color: var(--secondary);
  animation: glow 2s ease-in-out infinite alternate;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
}

.company-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
}

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

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  background: rgba(16, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem var(--container-padding);
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--secondary);
}

.mobile-cta {
  margin-top: 1rem;
  align-self: flex-start;
}

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

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.service-icon {
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

.service-svg {
  width: 4rem;
  height: 4rem;
  color: var(--secondary);
  animation: float 6s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--foreground), var(--secondary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideUp 0.8s ease-out;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease-out;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.slide-indicators {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary);
  box-shadow: var(--shadow-glow);
}

.indicator:hover:not(.active) {
  background: rgba(0, 255, 255, 0.5);
}

.hero-stats {
  display: none;
}

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

.stat-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.75rem;
  border-radius: 50%;
  background: rgba(16, 24, 39, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-left {
  left: 1.5rem;
}

.arrow-right {
  right: 1.5rem;
}

.slider-arrow:hover {
  color: var(--secondary);
  background: rgba(16, 24, 39, 0.4);
}

.slider-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Section Styles */
.about-section, .services-section, .contact-section {
  padding: 5rem 0;
}

.about-section {
  background: linear-gradient(to bottom, var(--background), rgba(16, 24, 39, 0.1));
}

.services-section {
  background: linear-gradient(to bottom, rgba(16, 24, 39, 0.1), var(--background));
}

.contact-section {
  background: linear-gradient(to bottom, var(--background), rgba(16, 24, 39, 0.1));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  color: var(--secondary);
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon svg {
  animation: float 6s ease-in-out infinite;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Mission Card */
.mission-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.mission-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.mission-stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.mission-stat-label {
  color: var(--muted-foreground);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: var(--secondary);
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  animation: float 6s ease-in-out infinite;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.service-features {
  margin-bottom: 1.5rem;
}

.features-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.features-list li:before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-benefits {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--secondary);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--accent);
}

.learn-more-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
  transform: translateX(0.25rem);
}

/* Services CTA */
.services-cta {
  text-align: center;
}

.cta-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-info-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  color: var(--secondary);
}

.contact-method-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-method-value {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

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

/* Business Hours */
.business-hours {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.hours-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hours-day {
  color: var(--muted-foreground);
}

.hours-time {
  color: var(--foreground);
}

/* Contact Form */
.contact-form-container {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

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

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

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}

.form-textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 900;
  font-size: 0.875rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-contact-item {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.footer-legal-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--secondary);
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.toast-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success);
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
  to { box-shadow: 0 0 40px rgba(0, 255, 255, 0.4); }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Media Queries */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-stats {
    display: block;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav.open {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .slider-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 100svh;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .mission-card,
  .cta-card,
  .contact-form-container,
  .business-hours {
    padding: 1.5rem;
  }
  
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
}