/* ==========================
   CONTACT SECTION STYLES
========================== */

.contact-section {
  padding: 80px 40px;
  font-family: var(--font-sans);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 20px;
  padding: 40px 20px;
  position: relative;
}

.contact-header-badge-wrapper {
  margin-bottom: 15px;
}

.contact-header-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-header-badge i {
  margin-right: 8px;
}

.contact-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
  font-family: var(--font-serif);
}

.contact-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Content Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 250px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.info-box {
  text-align: center;
  padding: 35px 25px;
  background: #1a1a1a;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.info-box i {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.info-box:hover i {
  filter: grayscale(0);
}

.info-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  font-family: var(--font-serif);
}

.info-box p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.info-box p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-box p a:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Form */
/* Contact Form with same style as your first form */
.contact-form {
    flex: 2;
    min-width: 300px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 32px; /* same as your first form */
}

.contact-form .form-row {
    display: flex;
    gap: 16px; /* same as name-grid */
}

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

.contact-form label {
    font-size: 14px;
    font-weight: 300;
    color: #fff; /* label color for dark background */
}

.contact-form .required {
    color: #666;
}

.contact-form .helper-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #999;
}

.contact-form textarea {
    border-radius: 24px;
    resize: none;
    min-height: 150px;
    padding: 16px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Checkbox */
.contact-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #999;
}

.contact-form .checkbox-group label {
    font-size: 14px;
    color: #999;
    cursor: pointer;
    margin: 0;
}

/* Submit Button */
.contact-form .btn-send {
    padding: 12px 32px;
    background-color: #444;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-send:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
    .contact-form form {
        gap: 24px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

/* ==========================
   MAP SECTION STYLES
========================== */

.map-section {
  padding: 60px 20px;
  background: #000000;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.map-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid transparent;
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) border-box;
}

.map-wrapper iframe {
  border: 0;
  display: block;
  filter: grayscale(0.2) brightness(0.95);
}

.map-directions {
  margin-top: 30px;
  text-align: center;
}

.directions-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.directions-btn i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 640px) {
    .contact-form form {
        gap: 24px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 14px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }
}
