/* Contact Page Specific Styles */

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--dark-bg);
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 25px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 70px rgba(255, 193, 7, 0.25);
}

.info-icon-large {
  font-size: 56px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-info-card a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

.contact-info-card span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

/* Contact Form Container */
.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 15px;
  margin-top: 10px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 2px solid rgba(255, 193, 7, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group select option {
  background: #2b3147;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.submit-btn .btn-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 25px;
  padding: 35px;
}

.sidebar-card .card-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Office Hours */
.office-hours {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 193, 7, 0.15);
}

.hour-item .day {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hour-item .time {
  color: var(--primary-color);
  font-weight: 600;
}

/* Social Links Large */
.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
}

.social-btn.facebook {
  background: rgba(59, 89, 152, 0.15);
  border: 2px solid rgba(59, 89, 152, 0.4);
  color: #3b5998;
}

.social-btn.instagram {
  background: rgba(193, 53, 132, 0.15);
  border: 2px solid rgba(193, 53, 132, 0.4);
  color: #c13584;
}

.social-btn.youtube {
  background: rgba(255, 0, 0, 0.15);
  border: 2px solid rgba(255, 0, 0, 0.4);
  color: #ff0000;
}

.social-btn.linkedin {
  background: rgba(0, 119, 181, 0.15);
  border: 2px solid rgba(0, 119, 181, 0.4);
  color: #0077b5;
}

.social-btn:hover {
  transform: translateX(5px);
}

/* Quick Links List */
.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 12px;
}

.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-links-list a::before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
}

.quick-links-list a:hover {
  background: rgba(255, 193, 7, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.map-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.2);
}

.map-overlay-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.map-info-card {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 25px;
  min-width: 300px;
}

.map-info-card h4 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.map-info-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  font-size: 14px;
}

.directions-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  transform: translateX(3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 193, 7, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content-center {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-center h2 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content-center p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: -1;
  }
}

@media (max-width: 968px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-overlay-info {
    position: static;
    margin-top: 20px;
  }

  .map-info-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-header {
    height: 300px;
    margin-top: 70px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .contact-form-container {
    padding: 25px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .sidebar-card {
    padding: 25px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .cta-content-center h2 {
    font-size: 32px;
  }

  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
