* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #fffafa;
  color: #171717;
  overflow-x: hidden;
}

/* HERO */

.contact-hero {
  position: relative;
  min-height: 620px;
  padding: 115px 6% 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(220, 95, 136, 0.11), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(220, 95, 136, 0.12), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff4f7 55%, #ffe0eb 100%);
}

.kicker {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-left h1 em {
  color: #dc5f88;
  font-style: italic;
}

.contact-text {
  max-width: 520px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.quick-contact {
  display: grid;
  gap: 20px;
}

.quick-contact div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: center;
}

.quick-contact i {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff0f5;
  color: #dc5f88;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.quick-contact span {
  font-size: 13px;
  color: #666;
}

.quick-contact a {
  color: #171717;
  text-decoration: none;
  font-size: 14px;
}

/* FORM */

.contact-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 95, 136, 0.13);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.form-heading {
  text-align: center;
  margin-bottom: 28px;
}

.form-heading p {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-heading div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #dc5f88;
}

.form-heading span {
  width: 44px;
  height: 1px;
  background: rgba(220, 95, 136, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  padding: 15px 17px;
  margin-bottom: 14px;
  outline: none;
  font-size: 14px;
  background: #fff;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #dc5f88;
  box-shadow: 0 0 0 4px rgba(220, 95, 136, 0.08);
}

.contact-form textarea {
  min-height: 135px;
  resize: none;
}

.contact-form button {
  height: 50px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #e56f96, #c93f70);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #171717;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  margin-top: 16px;
  color: #dc5f88;
  font-weight: 700;
  font-size: 14px;
}

.form-success.active {
  display: block;
}

/* SPARKLES */

.sparkle {
  position: absolute;
  color: rgba(220, 95, 136, 0.55);
  animation: sparkleFloat 4s ease-in-out infinite;
  pointer-events: none;
}

.s1 { top: 22%; left: 5%; font-size: 20px; }
.s2 { top: 30%; left: 35%; font-size: 14px; animation-delay: .5s; }
.s3 { top: 66%; left: 9%; font-size: 16px; animation-delay: 1s; }
.s4 { top: 20%; right: 12%; font-size: 24px; animation-delay: 1.5s; }
.s5 { bottom: 20%; right: 8%; font-size: 15px; animation-delay: 2s; }
.s6 { bottom: 36%; right: 42%; font-size: 18px; animation-delay: 2.5s; }

@keyframes sparkleFloat {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-14px) scale(1.25);
  }
}

/* INFO CARDS */

.contact-info-section {
  padding: 70px 6%;
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
}

.contact-cards {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(220, 95, 136, 0.13);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.045);
}

.contact-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff0f5;
  color: #dc5f88;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 22px;
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* MAP */

.map-section {
  padding: 30px 6% 90px;
  background: #fff;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .contact-hero {
    padding: 95px 20px 60px;
  }

  .contact-left h1 {
    font-size: 52px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    height: 330px;
  }
}

#submitBtn{
    position:relative;
    overflow:hidden;
}

#submitBtn .btn-loader{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    opacity:0;
    pointer-events:none;

    transition:.35s;
}

#submitBtn.loading .btn-loader{
    opacity:1;
}

#submitBtn.loading .btn-text{
    opacity:0;
}

#submitBtn.loading{
    pointer-events:none;
}

.loader-heart{
    width:36px;
    height:36px;

    border-radius:50%;
    background:rgba(255,255,255,.18);

    display:flex;
    align-items:center;
    justify-content:center;

    animation:pulseHeart 1s infinite;
}

.loader-heart i{
    color:white;
    font-size:15px;
}

.loader-text{
    color:white;
    font-weight:600;
    letter-spacing:.8px;
}

@keyframes pulseHeart{

0%{
transform:scale(.85);
opacity:.7;
}

50%{
transform:scale(1.2);
opacity:1;
}

100%{
transform:scale(.85);
opacity:.7;
}

}

.loading-overlay{

    position:fixed;
    inset:0;

    background:rgba(255,255,255,.82);
    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.4s;

}

.loading-overlay.active{

    opacity:1;
    visibility:visible;

}

.loading-card{

    width:360px;
    max-width:90%;

    background:white;

    border-radius:30px;

    padding:50px;

    text-align:center;

    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.loading-card h3{

    margin-top:30px;
    font-size:30px;
    font-family:"Cormorant Garamond",serif;

}

.loading-card p{

    margin-top:12px;
    color:#777;
    line-height:1.7;

}

.hairvine-loader{

    width:100px;
    height:100px;

    margin:auto;

    position:relative;

}

.ring{

    position:absolute;
    inset:0;

    border:2px solid #f4bfd2;

    border-radius:50%;

}

.ring1{

    animation:spin 2s linear infinite;

}

.ring2{

    transform:scale(.75);
    border-color:#ff4f8a;

    animation:spinReverse 1.6s linear infinite;

}

.heart{

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#ff4f8a;

    animation:pulse 1s infinite;

}

@keyframes spin{

from{transform:rotate(0deg);}
to{transform:rotate(360deg);}

}

@keyframes spinReverse{

from{transform:scale(.75) rotate(360deg);}
to{transform:scale(.75) rotate(0deg);}

}

@keyframes pulse{

0%,100%{
transform:scale(1);
}

50%{
transform:scale(1.25);
}

}