/* ================= ABOUT HERO SECTION ================= */
.about-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ===== Overlay Effect ===== */
.about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* ===== Text Content ===== */
.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #f3c553; /* soft gold tone */
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 992px) {
  .about-hero {
    height: 40vh;
  }
  .about-hero-content h1 {
    font-size: 3rem;
  }
  .about-hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 60vh;
    background-position: center;
  }
  .about-hero-content h1 {
    font-size: 2.3rem;
  }
  .about-hero-content p {
    font-size: 1rem;
  }
}



/* ********************************************************************************************************************** */

/* ================= CONTACT INFO SECTION ================= */
.contact-info {
  background-color: #111; /* deep black background */
  color: #fff;
  padding: 80px 0;
}

.contact-info .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.info-item {
  color: #fff;
  line-height: 1.6;
}

.info-item i {
  font-size: 2rem;
  color: #f3c553; /* gold accent */
  margin-bottom: 15px;
  display: inline-block;
}

.info-item h3 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.info-item p {
  color: #ddd;
  margin-bottom: 10px;
}

.info-item a {
  color: #f3c553;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.info-item a:hover {
  color: #fff;
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 60px 0;
  }

  .info-item i {
    font-size: 1.8rem;
  }
}



/* ********************************************************************************************************************** */


/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
  background-color: #f7f7f7;
  padding: 100px 0;
}

.contact-form-section .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #000;
}

.form-header p {
  color: #555;
  font-size: 1rem;
  margin-top: 8px;
}

/* ===== Form Structure ===== */
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.full-width {
  grid-column: span 2;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s;
  font-family: 'Segoe UI', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d1a84a;
  outline: none;
  box-shadow: 0 0 5px rgba(209, 168, 74, 0.4);
}

/* ===== Submit Button ===== */
.submit-btn {
  background-color: #d1a84a;
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #b8903e;
}

/* ================= RESPONSIVENESS ================= */
/* ================= RESPONSIVENESS ================= */
@media (max-width: 768px) {
  /* Stack form fields vertically on mobile */
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-group {
    grid-column: span 1 !important;
    margin-bottom: 20px;
  }

  /* Adjust padding and container width */
  .contact-form-section {
    padding: 70px 20px;
  }

  .form-header h2 {
    font-size: 1.9rem;
    line-height: 1.4;
  }

  .form-header p {
    font-size: 1rem;
    color: #666;
  }

  /* Inputs and textareas */
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
    transition: 0.3s ease;
  }

  /* Submit button styling */
  .submit-btn {
    width: 100%;
    padding: 14px 0;
    background-color: #d1a84a;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
  }

  .submit-btn:hover {
    background-color: #b8903e;
  }
}




/* ********************************************************************************************************************** */

