/* =========================================================
   GLOBAL
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

/* =========================================================
   HERO SECTION
========================================================= */

.contact-hero {
  background-image: url(../uploads/contact-us-bg.png) !important;
  background-position: center right;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 60px 0;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 35px;
}

/* =========================================================
   SMALL HEADING
========================================================= */

.small-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.small-heading span {
  width: 55px;
  height: 4px;
  display: block;
  background: var(--secondary);
}

.small-heading p {
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-content h1 strong {
  display: block;
  color: var(--secondary);
  font-weight: 800;
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
  max-width: 530px;
  margin-top: 25px;
  margin-bottom: 38px;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   FEATURES
========================================================= */

.contact-features {
  display: flex;
  gap: 38px;
}

.feature-item {
  min-width: 135px;
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 169, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: #aebbc9;
  font-size: 13px;
  line-height: 1.4;
}

/* Hover */

.feature-item:hover .feature-icon {
  background: var(--secondary);
  transform: translateY(-5px) rotate(5deg);
}

.feature-item:hover .feature-icon svg {
  stroke: var(--primary);
}

/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  position: relative;
  z-index: 3;
  padding: 30px 35px 35px;
  border: 1.5px solid rgba(255, 202, 129, 0.85);
  border-radius: 20px;
  background: linear-gradient(145deg,
      rgba(138, 42, 59, 0.72),
      rgba(84, 16, 28 0.84));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #8a2a3b, #711928);
}

/* =========================================================
   FORM HEADING
========================================================= */

.form-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.form-main-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary);
  border-radius: 50%;
}

.form-main-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-heading h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.form-heading p {
  margin: 0;
  color: #bfc9d5;
  font-size: 14px;
}

/* =========================================================
   FORM INPUTS
========================================================= */

.custom-input {
  min-height: 50px;
  padding: 12px 16px;
  color: #fff !important;
  background: rgba(84, 16, 28, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.custom-input::placeholder {
  color: #aeb9c8;
  opacity: 1;
}

.custom-input:focus {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(255, 169, 0, 0.1) !important;
}

.message-input {
  min-height: 125px;
  resize: vertical;
}

/* =========================================================
   SEND BUTTON
========================================================= */

.send-button {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffe0b0, #d9a05c);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.send-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.send-button:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 12px 25px rgba(255, 169, 0, 0.18);
}

/* =========================================================
   CONTACT DETAILS SECTION
========================================================= */

.contact-details-section {
  position: relative;
  padding: 65px 0 35px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 100%,
      rgba(255, 169, 0, 0.08),
      transparent 20%),
    #f5f7f8;
}

/* =========================================================
   WHITE CARDS
========================================================= */

.information-card,
.location-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 30px 35px;
  background: #fff;
  border: 1px solid rgba(0, 53, 55, 0.04);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 28, 42, 0.07);
}

/* =========================================================
   CARD HEADINGS
========================================================= */

.card-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.card-heading>span {
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.card-heading h2 {
  margin: 5px 0 8px;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
}

.heading-line {
  width: 48px;
  height: 4px;
  background: var(--secondary);
  border-radius: 20px;
}

/* =========================================================
   INFORMATION ITEMS
========================================================= */

.info-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  transition: var(--transition);
}

.info-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item h3 {
  margin: 1px 0 4px;
  color: var(--primary-light);
  font-size: 15px;
  font-weight: 800;
}

.info-item p {
  margin: 0;
  color: #4d5a6b;
  font-size: 13px;
  line-height: 1.55;
}

.info-item a {
  color: #4d5a6b;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--secondary);
}

.info-item:hover .info-icon {
  background: var(--secondary);
  transform: translateY(-3px);
}

.info-item:hover .info-icon svg {
  stroke: var(--primary);
}

/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.card-decoration {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 169, 0, 0.14);
}

.card-decoration::before,
.card-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 169, 0, 0.11);
}

.card-decoration::before {
  width: 190px;
  height: 190px;
  top: 28px;
  left: 28px;
}

.card-decoration::after {
  width: 130px;
  height: 130px;
  top: 58px;
  left: 58px;
}

/* =========================================================
   MAP
========================================================= */

.map-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 80%;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #000;
}

.map-wrapper iframe {
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}

/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.bottom-message {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  text-align: center;
}

.heart-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.heart-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
  stroke: var(--secondary);
}

.bottom-message p {
  margin: 0;
  color: #667281;
  font-size: 14px;
  line-height: 1.6;
}

.bottom-message strong {
  display: block;
  color: #20334c;
}

/* =========================================================
   HERO ANIMATION
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.7s ease both;
}

.contact-form-card {
  animation: fadeUp 0.9s ease both;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* -----------------------------------------------
   LARGE TABLET
------------------------------------------------ */

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .contact-features {
    gap: 22px;
  }

  .feature-item {
    min-width: 120px;
  }

  .contact-form-card {
    padding: 28px;
  }
}

/* -----------------------------------------------
   TABLET
------------------------------------------------ */

@media (max-width: 991px) {
  .contact-hero {
    padding: 100px 0 80px;
    background-position: center left;
  }

  .hero-content {
    padding-right: 0;

    text-align: center;
  }

  .small-heading {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-features {
    justify-content: center;
    gap: 35px;
  }

  .contact-form-card {
    max-width: 700px;
    margin: 0 auto;
  }

  .information-card,
  .location-card {
    min-height: auto;
  }

  .map-placeholder {
    min-height: 400px;
  }
}

/* -----------------------------------------------
   MOBILE
------------------------------------------------ */

@media (max-width: 767px) {
  .contact-hero {
    padding: 100px 0;
    background-position: center center;
  }

  .hero-content h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .contact-features {
    gap: 10px;
    justify-content: space-between;
  }

  .feature-item {
    min-width: 0;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .feature-icon svg {
    width: 27px;
    height: 27px;
  }

  .feature-item h3 {
    font-size: 12px;
  }

  .feature-item p {
    font-size: 10px;
  }

  .contact-form-card {
    padding: 24px 20px;
    border-radius: 15px;
  }

  .form-heading {
    align-items: flex-start;
    gap: 14px;
  }

  .form-main-icon {
    width: 52px;
    height: 52px;
  }

  .form-main-icon svg {
    width: 25px;
    height: 25px;
  }

  .form-heading h2 {
    font-size: 18px;
  }

  .form-heading p {
    font-size: 12px;
    line-height: 1.5;
  }

  .information-card,
  .location-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .card-heading h2 {
    font-size: 24px;
  }

  .info-item {
    gap: 13px;
  }
}