:root {
  --primary-color: #d09c00;
  --background-color: #ffffff;
  --accent-color: #d09c0013;
  --text-color: #535154;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

.contact-section {
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #ebeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h1 {
  margin-top: -30px;
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

/* Contact Form */
.contact-form {
  flex: 1 1 55%;
  background: var(--background-color);
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.096);
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

input::placeholder {
  color: #ccc;
}

textarea::placeholder {
  color: #ccc;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}

input,
textarea {
  width: 98%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fffaf0;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b68a00;
}

/* Contact Info */
.contact-info {
  flex: 1 1 35%;
  background: var(--accent-color);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  padding: 25px;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .contact-section h1 {
    font-size: 1.6rem;
  }
}

/* Base Styles */
:root {
  --primary-purple: #6a0dad;
  --light-purple: #8a2be2;
  --dark-purple: #4b0082;
  --accent-purple: #9370db;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #333333;
  --text-gray: #6c757d;
}

.container_contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}


.contact-info {
  padding-right: 20px;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.method-info p {
  color: var(--text-gray);
  margin-bottom: 5px;
}

.method-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.method-link:hover {
  text-decoration: underline;
}

.social-section {
  margin-top: 40px;
}

.social-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.social-links {
  display: flex;
  gap: 15px;
}


.social-link:hover {
  background-color: white;
  color: white;
  transform: translateY(-5px);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.social-link i{
  color: var(--primary-color);
  font-size: 1.5rem;
}



/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .cta-buttons-centered {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 220px;
    text-align: center;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-form {
    padding: 25px;
  }
}
