/* ========================================
   Contact Us Page - Bootstrap Custom Styles
   Premium Edition with Bootstrap Integration
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Brand Colors */
  --color-primary: #0055A4;
  --color-primary-light: #1a6bb8;
  --color-primary-dark: #003d7a;
  --color-white: #FFFFFF;
  --color-background: #F8FAFC;
  
  /* Premium Color Palette */
  --color-text: #1a202c;
  --color-text-light: #64748b;
  --color-text-lighter: #94a3b8;
  --color-border: #e2e8f0;
  --color-error: #ef4444;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-accent: #8b5cf6;
  --color-accent-light: #a78bfa;
  
  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #0055A4 0%, #1a6bb8 50%, #3b82f6 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 85, 164, 0.95) 0%, rgba(26, 107, 184, 0.9) 50%, rgba(59, 130, 246, 0.85) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
  --gradient-mesh: 
    radial-gradient(at 40% 20%, hsla(228,100%,74%,0.1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(189,100%,56%,0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(355,100%,93%,0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, hsla(340,100%,76%,0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(22,100%,77%,0.1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(242,100%,70%,0.1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(343,100%,76%,0.1) 0px, transparent 50%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px rgba(0, 85, 164, 0.15), 0 2px 16px rgba(0, 85, 164, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 85, 164, 0.3), 0 0 40px rgba(0, 85, 164, 0.1);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Premium Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-spring: 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-tooltip: 1070;
}

/* Bootstrap Variable Overrides */
:root {
  --bs-primary: #0055A4;
  --bs-primary-rgb: 0, 85, 164;
  --bs-body-font-family: var(--font-primary);
  --bs-border-radius: 0.75rem;
  --bs-border-radius-lg: 1rem;
  --bs-border-radius-xl: 1.5rem;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
}

/* Custom Navigation */
.custom-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-base);
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-spring);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  opacity: 0.1;
  transform: scale(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  height: 70vh;
  min-height: 500px;
  background: var(--gradient-hero),
              url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
}

.hero__overlay {
  background: var(--gradient-hero);
  backdrop-filter: blur(1px);
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  letter-spacing: -0.025em;
  animation: slideUp 1s var(--transition-spring);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 1s var(--transition-spring) 0.2s both;
}

.hero__cta {
  animation: slideUp 1s var(--transition-spring) 0.4s both;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.hero__button:hover {
  background: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
  color: var(--color-primary-dark);
}

/* Particles Animation */
.hero__particles {
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
  animation-duration: 15s;
}

.particle:nth-child(4) {
  top: 50%;
  right: 15%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 8s;
  animation-duration: 14s;
}

/* Contact Section */
.contact {
  background: 
    linear-gradient(135deg, transparent 0%, rgba(0, 85, 164, 0.02) 50%, transparent 100%),
    var(--color-background);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 85, 164, 0.1) 0%, transparent 100%);
  transform: skewY(-1deg);
  transform-origin: top left;
}

/* Floating Shapes */
.contact__background-elements {
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: morphGradient 20s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--gradient-accent);
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  animation-delay: 5s;
}

.shape-3 {
  bottom: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  animation-delay: 10s;
}

/* Section Badge */
.section-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(0, 85, 164, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 85, 164, 0.2);
}

.contact__heading {
  color: var(--color-text);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
}

/* Feature Cards */
.feature-card {
  border: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .card-body h3,
.feature-card:hover .card-body p {
  color: var(--color-white);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-card .card-body > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 85, 164, 0.1);
  color: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-bounce);
}

/* Form Styles */
.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact__form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 1.5rem 1.5rem 0 0;
}

.contact__form-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 85, 164, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.form__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  animation: pulse 3s ease-in-out infinite;
}

.contact__form-title {
  color: var(--color-text);
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.form-control,
.form-select {
  padding: 1.25rem 1rem;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  font-weight: 500;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-inner);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    var(--shadow-inner),
    0 0 0 4px rgba(0, 85, 164, 0.1),
    var(--shadow-glow);
  transform: translateY(-2px);
}

.form-control:hover,
.form-select:hover {
  border-color: var(--color-primary-light);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--color-error);
  background: rgba(239, 68, 68, 0.05);
  animation: shake 0.5s ease-in-out;
}

.form__submit {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 1.5rem;
}

.form__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.form__submit:hover::before {
  transform: translateX(100%);
}

.form__submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
  background: linear-gradient(135deg, #1a6bb8 0%, #3b82f6 50%, #2563eb 100%);
}

.button__glow {
  background: var(--gradient-primary);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  filter: blur(10px);
}

.form__submit:hover .button__glow {
  opacity: 0.7;
}

.invalid-feedback {
  color: var(--color-error);
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.invalid-feedback::before {
  content: '⚠';
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.invalid-feedback:not(:empty)::before {
  opacity: 1;
}

/* Map Styles */
.contact__map {
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.contact__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glass);
  pointer-events: none;
  z-index: 1;
  border-radius: 1.5rem;
}

.map__header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 85, 164, 0.1);
}

.map__control {
  transition: all var(--transition-base);
  border-radius: 0.75rem;
}

.map__control:hover {
  transform: scale(1.05);
}

.map__fallback {
  background: 
    linear-gradient(135deg, rgba(0, 85, 164, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%),
    var(--color-white);
  backdrop-filter: blur(10px);
}

/* Contact Details */
.contact__details {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact__details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 1.5rem 1.5rem 0 0;
}

.details__icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.contact__details-title {
  color: var(--color-text);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__detail {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.contact__detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform var(--transition-bounce);
}

.contact__detail:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.contact__detail:hover::before {
  transform: scaleY(1);
}

.detail__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  font-size: 1.125rem;
  color: var(--color-white);
}

.contact__detail:hover .detail__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

/* Bootstrap Modal Customization */
.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.modal-header {
  background: var(--gradient-glass);
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 1.5rem 1.5rem 0 0;
}

.modal-title {
  color: var(--color-text);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-close {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: all var(--transition-base);
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

.btn-close:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: rotate(90deg) scale(1.1);
}

.modal__icon {
  animation: pulse 2s ease-in-out infinite;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.modal-body {
  background: rgba(255, 255, 255, 0.6);
}

.modal-footer {
  background: var(--gradient-glass);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation Keyframes */
@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(-60px) rotate(240deg);
  }
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}

@keyframes morphGradient {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .floating-shape {
    opacity: 0.05;
  }
  
  .shape-1 {
    width: 150px;
    height: 150px;
  }
  
  .shape-2 {
    width: 120px;
    height: 120px;
  }
  
  .shape-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__button {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
  
  .form__icon {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .details__icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .detail__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 350px;
  }
  
  .hero__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero__button {
    padding: 0.5rem 1.25rem;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  
  .section-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .form__icon {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
  
  .contact__form-title {
    font-size: 1.125rem;
  }
  
  .form-label {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  
  .form-control,
  .form-select {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  
  .form__submit {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
  
  .details__icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .detail__icon {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
  
  .modal__icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .particle,
  .floating-shape,
  .hero__particles {
    animation: none !important;
  }
  
  .feature-card:hover,
  .hero__button:hover,
  .form__submit:hover {
    transform: none !important;
  }
  
  .form__submit::before,
  .button__glow {
    display: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .feature-card,
  .contact__form-wrapper,
  .contact__details {
    border: 2px solid var(--color-primary);
  }
  
  .form-control:focus,
  .form-select:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .modal,
  .contact__map {
    display: none;
  }
  
  .hero {
    height: auto;
    padding: 2rem 0;
    background: none;
    color: var(--color-text);
  }
  
  * {
    box-shadow: none !important;
  }
}