/* Contact Page Specific Styles with Modern Minimalism */

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="8" fill="%23dc2626" opacity="0.05">01010101</text></svg>')
    repeat;
  animation: matrix-fall 25s linear infinite;
}

@keyframes matrix-fall {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.contact-hero .highlight {
  color: #dc2626;
  font-weight: 600;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #a1a1aa;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Contact Methods Section */
.contact-methods {
  padding: 120px 0;
  background: #0f0f0f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  background: rgba(220, 38, 38, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(220, 38, 38, 0.05);
}

.contact-method:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 16px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-method h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-method p {
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-details a {
  display: block;
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.contact-details a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.contact-details a:hover::after {
  width: 100%;
}

.contact-details a:hover {
  color: #ef4444;
}

.availability {
  font-size: 0.85rem;
  color: #71717a;
  font-weight: 300;
}

.emergency-note {
  color: #dc2626;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form-section {
  padding: 120px 0;
  background: #141414;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.form-header p {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form-advanced {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  background: rgba(220, 38, 38, 0.02);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #a1a1aa;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  left: 15px;
  font-size: 0.85rem;
  color: #dc2626;
  background: #141414;
  padding: 0 5px;
}

.checkbox-label {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #e5e5e5;
}

.checkbox-item:hover {
  background: rgba(220, 38, 38, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #a1a1aa;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #dc2626;
  border-color: #dc2626;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.btn-submit {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Additional Contact Form Styles */
.link {
  color: #dc2626;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.link:hover {
  color: #ef4444;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.btn-large i {
  font-size: 1rem;
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-group .checkbox-item {
  background: transparent;
  border: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Contact Stats */
.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.15);
  background: rgba(220, 38, 38, 0.02);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Advanced Contact Form */
.contact-form-section {
  padding: 120px 0;
  background: #141414;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.form-header p {
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form-advanced {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.02);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.1);
}

.form-group label {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  color: #71717a;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 300;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #dc2626;
  background: linear-gradient(to right, #141414 20%, #141414 80%);
  padding: 0 0.5rem;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #dc2626;
  border-color: #dc2626;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 11px;
}

.checkbox-item span {
  color: #e5e5e5;
  font-weight: 300;
  font-size: 0.95rem;
}

.checkbox-label {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Contact Stats */
.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.15);
  background: rgba(220, 38, 38, 0.02);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Advanced Contact Form */
.contact-form-section {
  padding: 120px 0;
  background: #141414;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.form-header p {
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form-advanced {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.02);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.1);
}

.form-group label {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  color: #71717a;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 300;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #dc2626;
  background: linear-gradient(to right, #141414 20%, #141414 80%);
  padding: 0 0.5rem;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #dc2626;
  border-color: #dc2626;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 11px;
}

.checkbox-item span {
  color: #e5e5e5;
  font-weight: 300;
  font-size: 0.95rem;
}

.checkbox-label {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Office Locations */
.office-locations {
  padding: 120px 0;
  background: #0a0a0a;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  background: rgba(220, 38, 38, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(220, 38, 38, 0.05);
}

.location-card:hover::before {
  transform: scaleX(1);
}


.btn-primary {
  background: #fff;
  color: #b91c1c;
  border: none;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.18);
  font-weight: 600;
}

.btn-secondary {
  background: #fff;
  color: #b91c1c;
  border: none;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.10);
  font-weight: 600;
}
.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 16px;
  margin: 0 auto 2rem auto; /* <-- centers horizontally */
  transition: all 0.4s ease;
}

.location-card:hover .location-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.location-icon i {
  font-size: 1.5rem;
  color: white;
}

.location-card h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.location-details {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.location-details p {
  color: #e5e5e5;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.location-details p strong {
  color: #ffffff;
  font-weight: 600;
}

.location-details i {
  color: #dc2626;
  margin-right: 8px;
  width: 16px;
}

.location-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-hours h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.location-hours p {
  color: #a1a1aa;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.emergency-note {
  color: #dc2626 !important;
  font-weight: 500;
  margin-top: 1rem;
  font-size: 0.85rem !important;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: #141414;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
}

.faq-item {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(220, 38, 38, 0.1);
  background: rgba(220, 38, 38, 0.01);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  flex: 1;
  letter-spacing: -0.01em;
}

.faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}


.faq-answer p {
  padding: 1rem 2rem 1.5rem;
  color: #b0b0b5;
  line-height: 1.6;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  background: rgba(255, 255, 255, 0.05); /* soft white background */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}



/* .faq-answer p {
  padding: 0 2rem 2rem;
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
} */

/* Contact CTA */
.contact-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.contact-cta h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-grid,
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .form-container {
    padding: 3rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 80px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-methods,
  .contact-form-section,
  .office-locations,
  .faq-section,
  .contact-cta {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method {
    padding: 2rem 1.5rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-card {
    padding: 2rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        overflow: hidden;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
        pointer-events: none;
        animation: gradientShift 8s ease-in-out infinite;
    }

    @keyframes gradientShift {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 1; }
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2rem 0;
        opacity: 0;
        transform: translateY(30px);
        animation: none;
    }

    .nav-menu.active li {
        animation: slideInFromTop 0.6s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    @keyframes slideInFromTop {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu .nav-link {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 2px;
        color: #ffffff;
        text-transform: uppercase;
        padding: 1rem 2rem;
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        border-radius: 8px;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), transparent);
        border-radius: 8px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu .nav-link:hover::before {
        opacity: 1;
    }

    .nav-menu .nav-link:hover {
        color: #dc2626;
        border-color: rgba(220, 38, 38, 0.3);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #dc2626;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 2px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: #ffffff;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: #ffffff;
    }

  /* Hero Section */
  .contact-hero {
    padding: 120px 0 80px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .contact-hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Contact Methods */
  .contact-methods {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .contact-method {
    padding: 2.5rem 1.5rem;
  }

  /* Contact Stats */
  .contact-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat {
    padding: 1.5rem;
    text-align: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Contact Form */
  .contact-form-section {
    padding: 80px 0;
  }

  .form-container {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Office Locations */
  .office-locations {
    padding: 80px 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero adjustments */
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }

  /* Contact methods */
  .contact-methods {
    padding: 60px 0;
  }

  .contact-method {
    padding: 2rem 1rem;
    border-radius: 16px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

  .contact-icon i {
    font-size: 1.2rem;
  }

  .contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .contact-method p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Contact details */
  .contact-details a {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .availability {
    font-size: 0.8rem;
  }

  /* Form adjustments */
  .contact-form-section {
    padding: 60px 0;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }

  .contact-form-advanced {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .checkbox-item {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  /* Button adjustments */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
  }

  /* Stats adjustments */
  .stat {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Modern Minimalism Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-method,
.location-card,
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
}

.contact-method:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-method:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-method:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-method:nth-child(4) {
  animation-delay: 0.4s;
}

.location-card:nth-child(1) {
  animation-delay: 0.1s;
}
.location-card:nth-child(2) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.form-container {
  animation: slideInLeft 0.8s ease forwards;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-red);
}

.footer-section ul li i {
  color: var(--primary-red);
  margin-right: 0.5rem;
  width: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Service Detail Sections */
.service-detail {
  padding: 100px 0;
  position: relative;
}

.service-detail:nth-child(even) {
  background: var(--bg-secondary);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: white;
}

.service-detail h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-tagline {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 600;
}

.service-description {
  margin-top: 2rem;
}

.service-description > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.feature-item i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.feature-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.5;
}

