/* Contact Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 24px;
}

.contact-card h3 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-card p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Form Section */
.contact-form-section {
  margin: 3rem 0;
  background: #f3f3fe;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
  color: var(--color-primary);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.contact-form-section p {
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Experience Section */
.experience-section {
  background: var(--color-background-light);
  padding: 3rem 0;
  margin-top: 3rem;
  background-image: url('../images/aerial-reno-sparks.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
}

.experience-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.experience-logo {
  flex-shrink: 0;
  width: 150px;
}

.experience-text {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 1099px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .contact-form-section {
    padding: 2.5rem;
  }
  
  .contact-form-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-form-section {
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .contact-form-section h2 {
    font-size: 1.75rem;
  }
  
  .experience-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .experience-logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.25rem;
  }
  
  .contact-card h3 {
    font-size: 1rem;
  }
  
  .contact-card p {
    font-size: 0.95rem;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .contact-form-section h2 {
    font-size: 1.5rem;
  }
  
  .contact-form-section p,
  .experience-text {
    font-size: 1rem;
  }
}