/* Hero Section */
.hero-section {
  background: white;
  padding: 4rem 0;
  text-align: center;
  color: #0f0f4d;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  color: #1a1a6e;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
  padding: 2rem;
}

.info-header {
  margin-bottom: 3rem;
}

.info-header h2 {
  font-size: 2rem;
  color: #1a1a6e;
  margin-bottom: 0.5rem;
}

.info-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-card h3 {
  color: #1a1a6e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.info-card a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #e67e22;
}

/* Business Hours */
.business-hours {
  background: linear-gradient(135deg, #1a1a6e 0%, #0f0f4d 100%);
  color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
}

.business-hours h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
}

.time {
  color: #f39c12;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header h2 {
  font-size: 2.5rem;
  color: #1a1a6e;
  margin-bottom: 1rem;
}

.map-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #87ceeb 0%, #98d8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #1a1a6e;
}

.map-placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Quick Contact Bar */
.quick-contact {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  padding: 2rem 0;
  color: white;
}

.quick-contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quick-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.quick-contact-text {
  color: white;
}

.quick-contact-text strong {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}

.quick-contact-text span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  
  .hero-section h1 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-contact-content {
    flex-direction: column;
    text-align: center;
  }

  .quick-contact-item {
    justify-content: center;
  }

  .map-wrapper {
    height: 350px;
  }
}
