/* Contact Page Styles */

/* Hero Section */
.contact-hero {
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.contact-hero p {
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
padding-top: 40px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-column {
  flex: 1;
  min-width: 500px;
}

.info-column {
  flex: 0 0 350px;
}

/* Contact Form */
.contact-form-container {

}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-container .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form-container .form-group {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.contact-form-container .form-group.full-width {
  width: 100%;
}

.contact-form-container .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  color: var(--accent-color);
}

.contact-form-container .form-group input,
.contact-form-container .form-group textarea,
.contact-form-container .form-group select {
  width: 100%;
  padding: 28px 15px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1.3rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: white;
}

.contact-form-container .form-group input:focus,
.contact-form-container .form-group textarea:focus,
.contact-form-container .form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0,0,255,0.1);
}

.contact-form-container .select-wrapper {
  position: relative;
}

.contact-form-container .select-wrapper::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.contact-form-container .form-group select {
  appearance: none;
  padding-right: 30px;
}


.contact-form-container textarea{
  min-height:200px;
}


.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-wrapper label {
  margin-bottom: 0;
  cursor: pointer;
}

.checkbox-wrapper a {
  color: var(--accent-color);
  text-decoration: underline;
}


.project-type-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 38px;
}

.project-type__option {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.project-type__checkbox {
  position: absolute;
  left: -9999px;
}

.project-type__label {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 400;
  min-width: 44px;
  min-height: 44px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  user-select: none;
}

.contact-form-container .form-group .project-type__option{
  margin-bottom: 0;
}

.project-type__checkbox:focus + .project-type__label,
.project-type__option:focus-within .project-type__label {
  outline: var(--focus-outline);
  outline-offset: 2px;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px var(--accent-color);
}

.project-type__checkbox:checked + .project-type__label, .project-type__option:active .project-type__label {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.project-type__option:hover .project-type__label {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: #e5e5ff;
}

#project-type-title{
  margin-bottom: 16px;
  font-weight: 500;
  font-size:1.5rem;
  span{
  font-size:1rem;
    color:#666;
    font-weight: 400;
  }
}

@media (max-width: 768px) {
  .project-type-checkboxes {
    gap: 10px;
  }
  .project-type__label {
    font-size: 1rem;
    padding: 8px 18px;
  }
}









/* Form error states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #FF3B30;
}

.error-message {
  color: #FF3B30;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 18px;
}

/* Form actions */
.form-actions {
  margin-top: 30px;
}

.btn-submit {
  position: relative;
  padding-right: 55px;
  overflow: hidden;
}

.btn-loading {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-submit.loading .btn-text {
  opacity: 0.5;
}

.btn-submit.loading .btn-loading {
  opacity: 1;
}

/* Form status messages */
.form-status {
  margin-top: 20px;
}

.status-message {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.status-message.hidden {
  display: none;
}

.status-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.status-message.success {
  background-color: rgba(52, 199, 89, 0.1);
  color: #34C759;
}

.status-message.error {
  background-color: rgba(255, 59, 48, 0.1);
  color: #FF3B30;
}

/* Contact Information */
.contact-info {
  padding: 40px;
  background-color: #111111;
  color: white;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: white;
}

.info-section {
  margin-bottom: 40px;
}

.info-section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: white;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.info-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-list a,
.info-list address {
  color: #fff;
  font-style: normal;
  text-decoration: none;
}

.info-list a:hover,
.info-list a:focus {
  font-weight:600;
  color:#fff;
}

.response-time {
  font-size:1rem;
}

/* Social Links Large */
.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link-large {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.social-link-large:hover,
.social-link-large:focus {
  font-weight:600;
  color:#fff;
}



/* Alternative Contact Methods */
.alt-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}



/* FAQ Section */
.faq-section {
  padding: 120px 40px;
  background-color: var(--accent-color);
  margin-top: 120px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color:#fff;
}

.faq-grid {
  display: grid;
  gap: 20px;
}

.faq-item {
  background-color: white;
}

.faq-question {
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-size: 1.4rem;
  font-weight: 600;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width:20px;
  height:20px;
}

.faq-icon .minus {
  display: none;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.faq-answer p {
  padding-bottom: 30px;
  opacity: 0.8;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon .plus {
  display: none;
}

.faq-item.active .faq-icon .minus {
  display: block;
}

.faq-item:focus {
  outline: var(--focus-outline);
  outline-offset: 2px;
}


.contact-form-container label{
  font-size: 1.5rem;
}



/* Responsive Design */
/* Large Desktop: 1200px+ (default styles) */

/* Tablet and small desktop */
@media (max-width: 1024px) {
  .contact-hero {
    padding: 140px 40px 70px;
  }

  .contact-hero h1 {
    font-size: 3.8rem;
  }

  .contact-hero p {
    font-size: 1.4rem;
  }

  .contact-main {
    padding: 70px 40px;
  }

  .form-column {
    min-width: 100%;
  }

  .info-column {
    min-width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .faq-section h2 {
    font-size: 2.3rem;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .contact-form-container label {
    font-size: 1.3rem;
}
  #project-type-title {
    font-size: 1.3rem;
}
  .contact-hero {
    padding: 120px 20px 60px;
  }

  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-main {
    padding: 0px 0px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  .contact-form-container .form-group input, .contact-form-container .form-group textarea, .contact-form-container .form-group select {
    padding: 20px 15px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 20px 50px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-main {
    padding: 0px 20px;
  }

  .contact-form-container {
    padding: 25px 0px;
  }

  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .btn-submit {
    width: 100%;
    max-width: none;
  }
}

/* Very small mobile screens */
@media (max-width: 375px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }
}

