.contact-section {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vh, 100px) 0;
}

/* Decorative squares - Top right */
.contact-decor-right {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 15px;
  padding: 20px;
}

.contact-decor-right .decor-square {
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-right: -500px;
}



/* Decorative squares - Bottom left */
.contact-decor-left {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 20px;
}

.contact-decor-left .decor-square {
  width: 100%;
  height: auto;
  grid-column: 1;
  grid-row: 2;
}



/* Main container */
.contact-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(40px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 35px);
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Title */
.contact-title {
  font-family: 'Headline', sans-serif;
  font-size: clamp(1.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  flex-direction: column;
}

.contact-title-red {
  color: #F40000;
}

.contact-title-white {
  color: white;
}

/* Subtitle */
.contact-subtitle {
  font-family: 'Basic text 2', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: white;
  line-height: 1.6;
  margin: 0;
}

.text-red {
  color: #F40000;
  font-weight: 700;
}

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

.contact-line {
  font-family: 'Basic text 2', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: white;
  margin: 0;
}

.contact-line strong {
  font-family: 'Basic text', sans-serif;
  font-weight: 700;
}

/* Contact button */
.contact-btn {
  background-color: #F40000;
  color: white;
  font-family: 'Basic text', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn:hover {
  background-color: black;
  transform: scale(1.05);
}

/* Location */
.contact-location {
  font-family: 'Basic text 2', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: white;
  margin: 0;
  margin-top: 10px;
}

/* Modal */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.contact-modal.active {
  display: flex;
}

.contact-modal-content {
  background-color: white;
  padding: clamp(30px, 5vw, 50px);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #F40000;
}

.modal-title {
  font-family: 'Headline', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: black;
  margin: 0 0 10px 0;
}

.modal-email {
  font-family: 'Basic text 2', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 25px 0;
}

.modal-email strong {
  color: #F40000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Basic text', sans-serif;
  font-size: 0.9rem;
  color: black;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  font-family: 'Basic text 2', sans-serif;
  font-size: 1rem;
  padding: 12px 15px;
  border: 2px solid #ddd;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #F40000;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background-color: #F40000;
  color: white;
  font-family: 'Basic text', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background-color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-decor-left,
  .contact-decor-right,
  .contact-vertical-text {
    display: none;
  }

  .contact-container {
    padding: 0 clamp(20px, 5vw, 40px);
  }

  .contact-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}
