/* SECTION */
.contact-section {
  padding: 100px 20px;
  background: #FFFFFF;
}

html{
    scrollbar-gutter:stable;
}

body{
    margin:0;
    overflow-y:scroll;
}

body {
  padding-top: 90px;
  line-height: 1.6;
}

/* HERO SECTION */
.contact-hero {
  position: relative;
  min-height: 60vh;
  background: url("/images/contact-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* THEME OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(75, 35, 100, 0.82),
    rgba(160, 17, 26, 0.65)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  color: #FFFFFF;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

/* TITLE */
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* GRID */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

/* LEFT SIDE */
.contact-info {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #EA8534, #A0111A);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.contact-info h2 {
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info p {
  margin-bottom: 30px;
  color: rgba(255,255,255,0.8);
}

/* INFO ITEMS */
.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  font-size: 15px;
}

.info-box i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER */
.info-box:hover i {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}

/* SOCIAL */
.contact-socials {
  margin-top: 30px;
}

.contact-socials a {
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-socials a:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

/* FORM */
.contact-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.06),
    0 1px 2px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 28px;
  background: #FFFFFF;
}

/* INPUT + TEXTAREA */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  background: #FFFFFF;
  color: #111827;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #4B2364;
  box-shadow: 0 0 0 4px rgba(75,35,100,0.08);
}

/* TEXTAREA */
.input-group textarea {
  height: 30px;
  resize: none;
  padding-top: 22px;
}

/* LABEL */
.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  padding: 0 6px;
  color: #6B7280;
  font-size: 14px;
  z-index: 2;
  transition: 0.3s ease;
}

/* TEXTAREA LABEL */
.input-group textarea + label {
  top: 20px;
  transform: none;
}

/* FLOAT */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  color: #4B2364;
}

.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  color: #4B2364;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #EA8534, #A0111A);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(234,133,52,0.25);
}

/* HOVER */
.contact-form button:hover {
  background: linear-gradient(135deg, #A0111A, #EA8534);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160,17,26,0.30);
}

/* MAP */
.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}