/* SINKHRON - Contacts Page Styles */
/* ================================ */

/* Base colors from brand palette */
:root {
  --color-brightly-orange: #f43a09;
  --color-grandpa-orange: #ffb766;
  --color-grey-blue-green: #c2edda;
  --text-primary: #2c3e50;
}

/* Contacts Hero Section */
.contacts-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.05) 0%, rgba(255, 183, 102, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.contacts-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(244, 58, 9, 0.1), transparent 70%);
  pointer-events: none;
}

.contacts-hero h1 {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 5.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.contacts-hero .text-primary {
  color: var(--color-brightly-orange) !important;
}

.contacts-hero .lead {
  font-size: 1.3rem;
  color: rgba(44, 62, 80, 0.8);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(244, 58, 9, 0.05);
  border: 1px solid rgba(244, 58, 9, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.1);
}

.contact-form h3 {
  font-family: 'Gilroy-Semibold', sans-serif;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: 'Gilroy-Medium', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brightly-orange);
  box-shadow: 0 0 0 3px rgba(244, 58, 9, 0.1);
  background: white;
}

.form-control.textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.05) 0%, rgba(255, 183, 102, 0.05) 100%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(244, 58, 9, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 58, 9, 0.15);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: 'Gilroy-Semibold', sans-serif;
}

.contact-info-content p {
  color: rgba(244, 61, 47, 0.8);
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

.contact-info-content a {
  color: var(--color-brightly-orange);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-info-content a:hover {
  color: var(--color-grandpa-orange);
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.02) 0%, rgba(255, 183, 102, 0.02) 100%);
}

.map-section h2 {
  font-family: 'Gilroy-Extrabold', sans-serif;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.1);
  height: 500px;
  margin-top: 40px;
  border: 1px solid rgba(244, 58, 9, 0.08);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-grey-blue-green), rgba(194, 237, 218, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-family: 'Gilroy-Medium', sans-serif;
}

/* Transport Cards */
.transport-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(244, 58, 9, 0.05);
  border: 1px solid rgba(244, 58, 9, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.15);
}

.transport-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.transport-content h5 {
  font-family: 'Gilroy-Semibold', sans-serif;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.transport-content p {
  color: rgba(44, 62, 80, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Office Hours */
.office-hours {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: 0 5px 25px rgba(244, 58, 9, 0.05);
  border: 1px solid rgba(244, 58, 9, 0.08);
}

.office-hours h4 {
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  /* font-family: 'Gilroy-Semibold', sans-serif; */
  font-size: 2.5rem;
  font-weight:600
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(244, 58, 9, 0.1);
  margin-bottom: 0;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  color: var(--text-primary);
  font-family: 'Gilroy-Medium', sans-serif;
  font-weight: 500;
}

.time {
  color: rgba(44, 62, 80, 0.7);
  font-family: 'Gilroy-Medium', sans-serif;
}

/* Emergency Contact Alert */
.emergency-contact .alert {
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.1), rgba(255, 183, 102, 0.1));
  border: 1px solid rgba(244, 58, 9, 0.2);
  border-radius: 15px;
  padding: 20px;
  color: var(--text-primary);
}

.emergency-contact .alert strong {
  color: var(--color-brightly-orange);
}

/* Contacts CTA Section */
.contacts-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  position: relative;
  overflow: hidden;
}

.contacts-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.contacts-cta .container {
  position: relative;
  z-index: 1;
}

.contacts-cta h2,
.contacts-cta .lead {
  color: white;
}

.contacts-cta .text-primary {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-buttons {
  margin-bottom: 0;
}

.contacts-cta .btn-primary {
  background: white !important;
  border: 2px solid white !important;
  color: var(--color-brightly-orange) !important;
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.contacts-cta .btn-primary:hover,
.contacts-cta .btn-primary:focus,
.contacts-cta .btn-primary:active {
  background: transparent !important;
  border-color: white !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contacts-cta .btn-outline-primary {
  background: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.contacts-cta .btn-outline-primary:hover,
.contacts-cta .btn-outline-primary:focus,
.contacts-cta .btn-outline-primary:active {
  background: white !important;
  border-color: white !important;
  color: var(--color-brightly-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--color-brightly-orange), var(--color-grandpa-orange));
  border: 2px solid transparent;
  color: white;
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--color-grandpa-orange), var(--color-brightly-orange));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 58, 9, 0.3);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-brightly-orange);
  color: var(--color-brightly-orange);
  font-family: 'Gilroy-Semibold', sans-serif;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: var(--color-brightly-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 58, 9, 0.3);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .contacts-hero h1 {
    font-size: 3rem;
  }

  .map-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .contacts-hero {
    padding: 80px 0 60px;
  }

  .contacts-hero h1 {
    font-size: 2.5rem;
  }

  .contact-info-section,
  .map-section,
  .contacts-cta {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    order: -1;
  }

  .map-container {
    height: 400px;
  }

  .transport-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .contacts-hero {
    padding: 60px 0 40px;
  }

  .contacts-hero h1 {
    font-size: 2rem;
  }

  .contact-info-section,
  .map-section,
  .contacts-cta {
    padding: 60px 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-info-card {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  .office-hours {
    padding: 30px 20px;
  }

  .transport-card {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .transport-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  .map-container {
    height: 300px;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .hours-list li {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .emergency-contact .alert {
    padding: 15px;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .contacts-hero h1 {
    font-size: 1.8rem;
  }

  .form-control {
    padding: 12px 15px;
  }

  .contact-info-card {
    padding: 20px 15px;
  }

  .transport-card {
    padding: 20px 15px;
  }

  .office-hours {
    padding: 25px 15px;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}