﻿/* SECTION */
/* GLOBAL */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.contact-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 100px; /* 👈 adjust based on header height */
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
}

/* OVERLAY (STRONG LEFT FOCUS) */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(5,10,20,0.70) 35%,
    rgba(5,10,20,0.4) 55%,
    rgba(5,10,20,0.1) 80%
  );
}

/* CONTENT */

.contact-hero .container {
  position: relative;
  z-index: 2;
  padding-left: 0px; /* 👈 match header spacing */
}


.hero-content {
  max-width: 600px;
  margin-left: 60px; /* 👈 important for premium spacing */
}

/* TAG */
.tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tag-line span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
}

.tag-line .line {
  width: 50px;
  height: 1px;
  background: #c9a15d;
}

/* TITLE */
.hero-content h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #c9a15d;
}

/* DESC */
.hero-desc {
  margin-top: 20px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  max-width: 520px;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;
  padding: 14px 28px;

  border: 1px solid #c9a15d;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;

  transition: 0.3s;
}

.hero-btn:hover {
  background: #c9a15d;
  color: #000;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .hero-content {
    margin-left: 30px;
  }

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

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

    .contact-hero {
    padding-top: 90px;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }

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

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  /* vertical overlay */
  .contact-hero::before {
    background: linear-gradient(
      180deg,
      rgba(5,10,20,0.2) 0%,
      rgba(5,10,20,0.85) 70%,
      rgba(5,10,20,0.95) 100%
    );
  }
}


/* SECTION */
.contact-info-strip {
  background: #f5f3ef;
  padding: 50px 0;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  border-top: 1px solid #e6dcc8;
  border-bottom: 1px solid #e6dcc8;
}

/* ITEM */
.info-item {
  padding: 25px 15px;
  border-right: 1px solid #e6dcc8;
}

.info-item:last-child {
  border-right: none;
}

/* ICON */
.icon-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;

  border: 1px solid #c9a15d;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #c9a15d;
}

/* TITLE */
.info-item h4 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.info-item p {
  font-size: 12px;
  color: #000;
  line-height: 1.6;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border: none;
  }

  .info-item {
    border: 1px solid #e6dcc8;
    border-radius: 6px;
  }

}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

  .info-grid {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 columns */
    gap: 15px;
    border: none;
  }

  .info-item {
  border: 1px solid #e6dcc8;
  border-radius: 8px;
  padding: 20px 12px;

  background: #fff; /* 👈 important for clean border */
  box-sizing: border-box; /* 👈 prevents cut borders */
  }

  /* 👇 Center the last item */
  .info-item:last-child {
    grid-column: span 2;       /* full width */
    max-width: 260px;          /* control width */
    margin: 0 auto;            /* center it */
  }

}


/* SECTION */
.contact-main {
  background: linear-gradient(90deg, #05080f, #0b1322);
  padding: 80px 0;
  color: #fff;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* TAG */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
  margin-bottom: 10px;
}

/* TITLE */
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

/* INPUT ROW */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
}

textarea {
  height: 120px;
  margin-bottom: 20px;
}

/* BUTTON */
.form-btn {
  background: #c9a15d;
  color: #000;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 13px;
}

/* PRIVACY */
.privacy {
  margin-top: 15px;
  font-size: 12px;
  color: #aaa;
}

/* MAP */
.contact-map .map-box {
  position: relative;
  height: 100%;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* MAP CARD */
.map-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  background: rgba(0,0,0,0.7);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-btn {
  border: 1px solid #c9a15d;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

}

/* SECTION */
.help-section {
 background: #f5f3ef;
  padding: 80px 0;

  color: #222; /* 👈 MAIN FIX */
}

/* GRID */
.help-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.help-image img {
  width: 100%;
  border-radius: 10px;
}

/* TAG */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
  margin-bottom: 10px;
}

/* TITLE */
.help-content h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #222;

}

.help-content h2 span {
  color: #c9a15d;
}

/* DESC */
.help-content .desc {
  margin-top: 15px;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

/* FEATURES */
.help-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature .icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: #c9a15d;
}

.feature h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 12px;
  color: #777;
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 768px) {

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-features {
    grid-template-columns: 1fr;
  }

}


/* SECTION BACKGROUND */
/* SECTION */
/* SECTION WITH IMAGE */
.cta-strip {
  position: relative;
  padding: 120px 0;

  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
}

/* DARK OVERLAY (IMPORTANT FOR TEXT VISIBILITY) */
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(5,10,20,0.7),
    rgba(5,10,20,0.9)
  );
}

/* BOX */
.cta-box {
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2; /* 👈 IMPORTANT */
  padding: 50px 40px;

  background: linear-gradient(180deg, #0b1322, #070b14);
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.06); 
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(201,161,93,0.08), transparent 70%);
  z-index: -1;
}

/* GOLD LINE (VERY SUBTLE) */
.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 70px;
  height: 2px;
  background: #c9a15d;
}

/* ICON */
.cta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;

  border-radius: 50%;
  border: 1px solid #c9a15d;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #c9a15d;
  font-size: 18px;
}

/* TEXT */
.cta-content p {
  font-size: 14px;
  color: #b0b7c3;
  margin-bottom: 10px;
}

.cta-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}

.cta-content h3 a {
  color: #fff;
  text-decoration: none;
}

/* BUTTON (MINIMAL PREMIUM) */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;

  border: 1px solid #c9a15d;
  color: #fff;
  text-decoration: none;

  font-size: 13px;
  letter-spacing: 1px;

  transition: all 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
  background: #c9a15d;
  color: #000;
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

  .cta-box {
    padding: 35px 20px;
  }

  .cta-btn {
    width: 100%;
  }

}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 768px) {

  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 25px;
  }

  .cta-left {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

}