/*==========ENTIRE PAGE==========*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
}

/*========== HEADER SECTION========== */
.main-header {
  background-color: #f9f7f2;
  padding: 15px 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
  top: 0;
  z-index: 1000;
  margin-top: 0;
  position: absolute;
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo h1 {
  font-size: 1.2rem;
  color: #2d4a3e;
  letter-spacing: 1px;
}

/* NAVIGATION BAR LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f6920f;
}

/* The "List Property" Button */
.btn-list {
  background-color: #cc825a;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.btn-list:hover {
  background-color: #b56e48;
}

/*==========HERO/HOME SECTION==========  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../Assets/Background.jpeg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 45, 28, 0.72) 0%,
    rgba(44, 74, 46, 0.45) 60%,
    rgba(92, 61, 46, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2rem 2rem 2rem 6%;
}

.hero-label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  color: #e8c49a;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-amber);
  animation: scrollDrop 2s ease infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/*  TICKER BANNER  */
.mission-banner {
  background: var(--deep-green);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 2rem;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker span {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(179, 181, 178);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*  BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--deep-green);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--deep-green);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-family: var(--clr-amber);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/*========== MOBILE NAVIGATION FIX ==========*/
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    white-space: normal;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .btn-list {
    padding: 8px 16px;
  }
}

/*==========ABOUT US==========*/
.about-us {
  background-color: #fdf8f4;
  padding: 80px 0;
  font-family: "Arial", sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.image-grid {
  position: relative;
  width: 600px;
  flex: 1;
  height: 500px;
}

.image-wrapper img {
  border-radius: 20px;
  display: block;
  width: 320px;
  height: 350px;
  object-fit: cover;
}

.main-image {
  position: absolute;
  width: 280px;
  top: 0;
  left: 0;
  z-index: 1;
}

.sub-image {
  position: absolute;
  width: 280px;
  top: 180px;
  left: 200px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.support-badge {
  position: absolute;
  background-color: #d1926d;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 120px;
  top: 230px;
  left: 150px;
  transform: translate(-10%, -80%);
  z-index: 3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-badge p:first-child {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}


.badge-text {
  font-size: 12px;
  margin: 5px 0 0 0;
}

.text-content {
  flex: 1;
}

.subtitle {
  color: #5c6358;
  letter-spacing: 2px;
  font-size: 14px;
}

.title {
  color: #2d4635;
  font-size: 42px;
  margin: 10px 0 20px 0;
}


.text-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-block;
  background-color: #2d4635;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-cta:hover {
  background-color: #3e5f48;
}

/*==========WHAT WE DO========== */
:root {
  --deep-green: #2b4934;
  --rust-orange: #cb8860;
  --soft-bg: #fcf9f6;
  --text-gray: #555;
  --ff-ui: var(--ff-ui, sans-serif);
  --ff-display: var(--ff-display, serif);
  --clr-amber: #e8c49a;
  --transition: 0.3s ease;
}

.pillars-section {
  background-color: var(--soft-bg);
  padding: 80px 20px;
  font-family: "Playfair Display", serif;
}

.section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.main-title {
  color: var(--deep-green);
  font-size: 2.8rem;
  margin: 10px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.pillar-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
  background-color: #f1f4f2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--deep-green);
  font-size: 1.5rem;
}

.pillar-card h3 {
  color: var(--deep-green);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.pillar-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-family: "Arial", sans-serif;
}

.pillar-cta {
  color: var(--rust-orange);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

/*==========BROWSE LISTINGS==========*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Assets/Background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nav-container {
  background-color: #e4b313;
  padding: 10px 5%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
}

.navig {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.navig a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: 0.3s;
}

.navig a:hover {
  color: #00796B;
}

#Filter {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.hero-section1 {
  text-align: center;
  padding: 80px 20px;
  color: orange;
}

.section-title {
  color: white;
  margin: 40px 5% 20px;
  border-left: 5px solid #ffcc00;
  padding-left: 15px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.property-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-box {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .image-box img {
  transform: scale(1.1);
}

.price-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #00796B;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

.content-container {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #222;
}

.property-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.amenity-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 5px;
}

.amenities-list {
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.amenities-list li::before {
  content: "✔";
  color: #00796B;
}

.book-btn {
  display: block;
  text-align: center;
  background: #e4b313;
  color: #000;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  margin-top: auto;
}

.book-btn:hover {
  background: #00796B;
  color: #fff;
}

@media (max-width: 1024px) {
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .listings-grid {
    grid-template-columns: 1fr;
  }
  .navig {
    gap: 10px;
  }
}

/*==========CONTACT US==========*/
body {
  background-attachment: #ffffffff;
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  margin: 0;
  padding: 0px;
  padding-top: 80px;
  margin-bottom: 0;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  background-color: #fdfaf5;
  border-radius: 40px;
  overflow: hidden;
  align-items: stretch;
  margin-bottom: 50px;
}

.contact-form {
  flex: 1.2;
  padding: 60px;
}

.contact-form h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #0f1310;
  margin-bottom: 20px;
}

.contact-form h1 span {
  font-style: italic;
  font-weight: 700;
  color: orange;
}

.contact-form p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

form input,
form select,
form textarea {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  color: #333;
}

form button {
  width: 100%;
  padding: 15px;
  background-color: #2d4731;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #3e5f43;
}

.contact-sidebar {
  flex: 0.8;
  background-color: #2d472c;
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 40px 0 0 40px;
}

.info-group {
  margin-bottom: 35px;
}

.info-group h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-group h2 span {
  color: #d17a43;
}

.info-group p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.5;
}

.phone-link,
.email-link {
  color: #d17a43;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

.map-placeholder img {
  width: 100%;
  border-radius: 15px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-sidebar {
    border-radius: 0;
  }
}

/*==========LIST PROPERTY========== */
:root {
  --brand-green: #2b4934;
  --border-color: #e0e0e0;
  --text-main: #333;
}

.listing-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.header-icon {
  background-color: #cc825a;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.2rem;
}

.form-header h2 {
  font-size: 2rem;
  color: #1a2b23;
  margin-bottom: 5px;
}

.form-header p {
  color: #666;
  font-size: 0.95rem;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  margin-bottom: 20px;
}

.label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

input,
select,
textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-green);
  outline: none;
  background-color: #fff;
}
/* add image upload styling */

/* Container styling */
.upload-box {
  max-width: 400px;
  margin: 20px auto;
  font-family: sans-serif;
}

/* Hide the default file input */
input[type="file"] {
  display: none;
}

/* Create the custom "Button" area */
.custom-file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #007bff;
  border-radius: 8px;
  padding: 40px;
  cursor: pointer;
  background-color: #f8fbff;
  transition: background 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #eef5ff;
}

.upload-content {
  text-align: center;
}

.icon {
  font-size: 32px;
  display: block;
}

.text {
  display: block;
  font-weight: bold;
  color: #007bff;
  margin-top: 10px;
}

.subtext {
  font-size: 12px;
  color: #666;
}

/* Submit button styling */
.submit-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #218838;
}
/*======= final submit button =======*/
.submit-btn {
  background-color: #cc825a;
  width: 100%;
  padding: 15px;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

/*==========FOOTER SECTION==========*/
.footer {
  background-color: #121212;
  color: #ffffff;
  padding: 80px 0 30px;
  width: 100%;
  clear: both;
  position: relative;
  bottom: 0;
  margin-bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 2;
  min-width: 250px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.6rem;
  color: #d48e5e;
  font-weight: bold;
  letter-spacing: 1px;
}

.brand-name span {
  color: #4c7c54;
}

.brand-tagline {
  color: #a0a0a0;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 350px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #a0a0a0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #d48e5e;
}

.footer-col p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  width: 100%;
}

.bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.85rem;
}

.bottom-socials a {
  margin-left: 20px;
  color: #666;
  text-decoration: none;
}

.bottom-socials a:hover {
  color: #fff;
}
