:root {
  --ivory: #FAF7F2;
  --dark: #2B2B2B;
  --pink: #EC669A;
  --yellow: #FFD400;
}

body {
  background: var(--ivory);
  color: var(--dark);
}

.contact-hero {
  height: 75vh;
  min-height: 520px;
  background-image: url("images/contact us hero .jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.contact-info-strip {
  background: #F4C430;
  padding: 90px 6% 100px;
  text-align: center;
}


.contact-info-strip > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-title {
   font-family: "Playfair Display SC", serif;
  font-size: 52px;
  margin-bottom: 6px;
}

.contact-motto {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-bottom: 70px;
  color: #000;
  opacity: 0.85;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  align-items: stretch;
}


.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* decorative  */
.info-box {
  position: relative;       
  padding-bottom: 42px;    
}

.info-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 140px;
  height: 18px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24'%3E%3Cpath d='M0 12h60' stroke='%232B2B2B' stroke-width='1.4'/%3E%3Cpath d='M200 12h-60' stroke='%232B2B2B' stroke-width='1.4'/%3E%3Cpath d='M92 12c0-6 16-6 16 0s-16 6-16 0z' fill='none' stroke='%232B2B2B' stroke-width='1.4'/%3E%3Cpath d='M100 4c-2 4-6 6-8 8 2 2 6 4 8 8 2-4 6-6 8-8-2-2-6-4-8-8z' fill='none' stroke='%232B2B2B' stroke-width='1.2'/%3E%3C/svg%3E");

  opacity: 0.85;
}

.info-box h3 {
  font-family: 'Etna Sans Serif', serif;
  font-size: 1.4rem;
  margin-bottom: 22px;
  min-height: 32px;
}

/* TEXT */
.info-box p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 260px;
  min-height: 110px;
  opacity: 0.9;
  color: black;
}


.info-bottom {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.info-bottom a {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2B2B2B;
  text-decoration: none;
}

.info-bottom a:hover {
  text-decoration: underline;
}


.whatsapp-icon {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon i {
  font-size: 2rem;
  color: #fff;
}


.contact-form-section {
  padding: 90px 20px;
  background: #ec5f95; 
}


.contact-card {
  max-width: 1100px;
  margin: auto;
  background: #ec5f95;
  border-radius: 28px;
  padding: 55px 50px;
}


/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Raleway', sans-serif;
}

/* CONTACT PAGE HEADING */

.contact-title{
  font-family: "Playfair Display SC", serif;
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-tagline{
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 36px;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 0;
}



.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 18px 26px;
  color: #000;
  font-weight: 600;
  background: #fffdf6;
  font-family: 'Raleway', sans-serif;
}


.contact-form textarea {
  border-radius: 22px;
  resize: none;
  margin-bottom: 24px;
}


/* PRIVACY */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  text-align: left;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #fff;
}
.privacy-check a {
  color: #fff;
  text-decoration: underline;
}



.contact-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 42px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
   align-self: center;
}

.contact-btn:hover {
  background: #000;
  transform: translateY(-3px);
}



@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px){
  .contact-title{
    font-size: 36px;
  }

  .contact-tagline{
    font-size: 18px;
    margin-bottom: 28px;
  }
}


@media(max-width:768px){
  .contact-card {
    padding: 40px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 576px) {
  .contact-info-strip .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info-strip {
    padding: 60px 18px 70px;
  }
  .info-box p {
    min-height: auto;      
    margin-bottom: 10px;  
  }

  .info-bottom {
    margin-top: 4px;      
  }

   .info-box::after {
    width: 100px;
  }

}
