body {
  background: #f7f5f2;
}

/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
  padding: 90px 0;
}

.contact-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1.05;
  margin: 20px 0;
}

.contact-hero-text p {
  max-width: 500px;
  color: #555;
  line-height: 1.8;
}

.contact-hero-image img {
  width: 100%;
  display: block;
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;

  background: rgb(0, 0, 0);
  padding: 70px;
}

.contact-form-card h2,
.contact-info-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  margin-bottom: 20px;
}

/* =====================================================
   FORM
===================================================== */

.contact-form {
  margin-top: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid #e8e8e8;
  background: #fafafa;

  border-radius: 12px;

  padding: 16px 18px;

  font-size: 15px;
  font-family: inherit;

  outline: none;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8e6cff;
}

/* =====================================================
   BUTTON
===================================================== */

.submit-btn {
  width: 100%;
  height: 58px;

  border: none;
  border-radius: 12px;

  cursor: pointer;

  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info-card {
  padding-top: 5px;
}

.contact-info-item {
  display: flex;
  gap: 24px;

  padding: 28px 0;

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: #faf7f5;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
}

.contact-icon svg {
  width: 28px;
  height: 28px;

  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-info-item p {
  margin-bottom: 6px;
  color: #ffffff;
}

.contact-info-item span {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .contact-hero-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    padding: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero-text h1 {
    font-size: 54px;
  }

}

/* =====================================================
   SHARED ELEMENTS
===================================================== */

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}

.gradient-line {
  width: 72px;
  height: 3px;

  border-radius: 999px;

  margin: 32px 0;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}

/* =====================================================
   WHITE TEXT
===================================================== */

.contact-form-card h2,
.contact-info-card h2,
.form-group label,
.contact-info-item h4 {
  color: white;
}

/* =====================================================
   MAP + FAQ
===================================================== */

.map-faq-section {
  padding-bottom: 100px;
}

.map-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.map-card,
.faq-card {
  background: white;

  border-radius: 24px;

  padding: 45px;
}

.map-card h2,
.faq-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
}

.map-image {
  margin-top: 35px;

  border-radius: 18px;
  overflow: hidden;

  height: 320px;
}

.map-image iframe {
  width: 100%;
  height: 100%;
}

.map-image img {
  width: 100%;
  display: block;
}

.map-text {
  margin-top: 24px;
}

.map-text h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.map-text p {
  color: #777;
}

/* =====================================================
   FAQ ITEMS
===================================================== */

.faq-item {
  height: 72px;

  background: #faf7f5;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 24px;

  margin-top: 14px;

  cursor: pointer;
}

.faq-item span {
  font-weight: 500;
}

.faq-item strong {
  font-size: 28px;
  font-weight: 400;
}

.faq-contact {
  margin-top: 35px;

  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-contact svg {
  width: 30px;
  height: 30px;

  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.8;
}

.faq-contact p {
  color: #666;
}

.faq-contact a {
  color: #8e6cff;
  text-decoration: none;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .map-faq-grid {
    grid-template-columns: 1fr;
  }

}

/* =====================================================
   FOOTER CONTACT ICON FIX
===================================================== */

.footer-contact .contact-icon {
  width: 18px !important;
  height: 18px !important;

  flex-shrink: 0;
}

.footer-contact svg {
  width: 18px !important;
  height: 18px !important;
}

/* SOCIALS FIX */
.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  display: inline-flex !important;
}

.footer-socials img {
  width: 22px !important;
  height: 22px !important;

  object-fit: contain !important;

  display: block;
}