/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #2b6273 0%, #01435b 100%);
  padding: 150px 0 30px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 0 9px -3px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 30px -5px rgb(0 0 0 / 0.15);
}

.contact-form-section .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #065775, #0fa8e1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-form-section .contact-icon i {
  font-size: 2rem;
  color: white;
}

.contact-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: #065775;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #065775;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.form-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select {
  background-position: left 0.75rem center;
}

.form-control:focus,
.form-select:focus {
  border-color: #065775;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, #065775, #0fa8e1);

  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
}

/* Map Section */
.map-section {
  padding: 4rem 0;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Working Hours */
.working-hours-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hours-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.hours-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.05rem;
}

.time {
  color: #6b7280;
  font-size: 1.05rem;
}

.time.open {
  color: #01435b;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: white;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
}

.accordion-button {
  background: white;
  color: #1f2937;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  display: flex;
  justify-content: space-between;
}
.accordion-button::after {
  margin-left: 0;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #065775, #0b688a, #065775);
  color: white;
}

.accordion-button:not(.collapsed) {
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 1.5rem;
  color: #6b7280;
  line-height: 1.8;
}

/* Social Media */
.social-section {
  padding: 3rem 0;
  background: #f9fafb;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.social-link.facebook {
  color: #1877f2;
}

.social-link.instagram {
  color: #e4405f;
}

.social-link.whatsapp {
  color: #25d366;
}

.social-link.twitter {
  color: #1da1f2;
}

.social-link i {
  font-size: 1.5rem;
}

.contact-card.beauty .contact-form-section .contact-icon {
  background: linear-gradient(135deg, #ffc8dd, #ffafcc) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
