/*==========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;
}


.hero-scroll-hint {
  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;
}

/* Hamburger Menu Default (Hidden) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

body:has(.dark-mode-checkbox:checked) .hamburger .bar {
  background-color: #fff;
}

/* Hamburger active animation */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*========== RESPONSIVE DESIGN ==========*/

/* Tablet & Smaller Desktop */
@media (max-width: 992px) {

  /* About Us */
  .container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }



  /* Contact Us */
  .contact-container {
    flex-direction: column;
    margin: 20px;
  }

  .contact-sidebar {
    border-radius: 0 0 40px 40px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 30px;
  }

  .logo-group {
    justify-content: center;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {

  /* Header & Navigation */
  .header-container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: #f9f7f2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 30px;
  }

  body:has(.dark-mode-checkbox:checked) .nav-links {
    background-color: #1e1e1e;
  }

  .nav-links.nav-active {
    right: 0;
  }

  /* Hero Section */
  .hero-content {
    padding: 5rem 2rem 2rem 5%;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Pillars Section */
  .pillars-section {
    padding: 50px 20px;
  }

  /* List Property Form */
  .form-container {
    padding: 20px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  /* Browse Listings Nav */
  .navig {
    gap: 15px;
  }

  /* Contact Form */
  .contact-form {
    padding: 30px 20px;
  }

  .contact-sidebar {
    padding: 40px 20px;
  }
}

/*==========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;
}

/* About Us Responsive */
@media (max-width: 992px) {
  .about-us .container {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  
  .image-grid {
    width: 100%;
    max-width: 400px;
    height: 380px;
    margin: 0 auto 40px auto;
  }

  .image-wrapper img {
    width: 100%;
    height: 250px;
  }

  .main-image {
    width: 65%;
    top: 0;
    left: 0;
  }

  .sub-image {
    width: 65%;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
  }

  .support-badge {
    padding: 12px;
    width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .support-badge p:first-child {
    font-size: 18px;
  }
}

/*==========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;
  display: flex;
  flex-direction: column;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.contact-us-form textarea {
  flex: 1 1 auto;
  resize: none;
  min-height: 120px;
  margin-bottom: 20px !important;
}

.contact-us-form button[type="submit"] {
  margin-top: auto;
}

.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;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 15px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

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;
}

/* Map wrapper: needed for pin overlay positioning */
.map-wrapper {
  position: relative;
  margin-top: 15px;
  border-radius: 15px;
  overflow: hidden;
}

/* Pin overlay: sits on top of the iframe */
.map-pin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  z-index: 10;
  animation: pin-bounce 1.4s ease-in-out infinite alternate;
}

@keyframes pin-bounce {
  from {
    transform: translate(-50%, -100%);
  }

  to {
    transform: translate(-50%, -114%);
  }
}

/* Classic Google Maps red teardrop */
.map-pin-teardrop {
  width: 30px;
  height: 44px;
  background: #ea4335;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  position: relative;
}

.map-pin-inner {
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* White callout bubble label */
.map-pin-callout {
  background: #fff;
  color: #222;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  max-width: 130px;
  white-space: normal;
  text-align: left;
  margin-bottom: 6px;
}

@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;
}

/* DARK MODE STYLES */
body:has(.dark-mode-checkbox:checked) {
  background-color: #121212;
  color: #e0e0e0;
}

body:has(.dark-mode-checkbox:checked) .main-header,
body:has(.dark-mode-checkbox:checked) .about-us,
body:has(.dark-mode-checkbox:checked) .pillars-section,
body:has(.dark-mode-checkbox:checked) .contact-container,
body:has(.dark-mode-checkbox:checked) .form-container,
body:has(.dark-mode-checkbox:checked) .pillar-card,
body:has(.dark-mode-checkbox:checked) .property-card,
body:has(.dark-mode-checkbox:checked) form input,
body:has(.dark-mode-checkbox:checked) form select,
body:has(.dark-mode-checkbox:checked) form textarea,
body:has(.dark-mode-checkbox:checked) .contact-sidebar {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border-color: #333;
}

body:has(.dark-mode-checkbox:checked) .main-header {
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

body:has(.dark-mode-checkbox:checked) .nav-links a,
body:has(.dark-mode-checkbox:checked) .navig a {
  color: #e0e0e0;
}

body:has(.dark-mode-checkbox:checked) .logo h1,
body:has(.dark-mode-checkbox:checked) .title,
body:has(.dark-mode-checkbox:checked) .main-title,
body:has(.dark-mode-checkbox:checked) .pillar-card h3,
body:has(.dark-mode-checkbox:checked) .property-title,
body:has(.dark-mode-checkbox:checked) .contact-form h1,
body:has(.dark-mode-checkbox:checked) .form-header h2 {
  color: #fff;
}

body:has(.dark-mode-checkbox:checked) .text-content p,
body:has(.dark-mode-checkbox:checked) .pillar-card p,
body:has(.dark-mode-checkbox:checked) .property-description,
body:has(.dark-mode-checkbox:checked) .contact-form p,
body:has(.dark-mode-checkbox:checked) .form-header p {
  color: #b0b0b0;
}

body:has(.dark-mode-checkbox:checked) .mission-banner {
  background: #112211;
}

body:has(.dark-mode-checkbox:checked) .icon-wrapper {
  background-color: #2c2c2c;
  color: #8fba98;
}

body:has(.dark-mode-checkbox:checked) .support-badge {
  background-color: #8c5d41;
}

/* Dark Mode Toggle Button Setup */
.dark-mode-checkbox {
  display: none;
}

.dark-mode-label {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #1a2b23;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.dark-mode-label:hover {
  transform: scale(1.1);
}

.dark-mode-label svg {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: all 0.4s ease;
  fill: #f6920f;
}

.dark-mode-label .sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.dark-mode-label .moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.dark-mode-checkbox:checked~.dark-mode-label {
  background: #fff;
  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;
}

/* DARK MODE STYLES */
body:has(.dark-mode-checkbox:checked) {
  background-color: #121212;
  color: #e0e0e0;
}

body:has(.dark-mode-checkbox:checked) .main-header,
body:has(.dark-mode-checkbox:checked) .about-us,
body:has(.dark-mode-checkbox:checked) .pillars-section,
body:has(.dark-mode-checkbox:checked) .contact-container,
body:has(.dark-mode-checkbox:checked) .form-container,
body:has(.dark-mode-checkbox:checked) .pillar-card,
body:has(.dark-mode-checkbox:checked) .property-card,
body:has(.dark-mode-checkbox:checked) form input,
body:has(.dark-mode-checkbox:checked) form select,
body:has(.dark-mode-checkbox:checked) form textarea,
body:has(.dark-mode-checkbox:checked) .contact-sidebar {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border-color: #333;
}

body:has(.dark-mode-checkbox:checked) .main-header {
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

body:has(.dark-mode-checkbox:checked) .nav-links a,
body:has(.dark-mode-checkbox:checked) .navig a {
  color: #e0e0e0;
}

body:has(.dark-mode-checkbox:checked) .logo h1,
body:has(.dark-mode-checkbox:checked) .title,
body:has(.dark-mode-checkbox:checked) .main-title,
body:has(.dark-mode-checkbox:checked) .pillar-card h3,
body:has(.dark-mode-checkbox:checked) .property-title,
body:has(.dark-mode-checkbox:checked) .contact-form h1,
body:has(.dark-mode-checkbox:checked) .form-header h2 {
  color: #fff;
}

body:has(.dark-mode-checkbox:checked) .text-content p,
body:has(.dark-mode-checkbox:checked) .pillar-card p,
body:has(.dark-mode-checkbox:checked) .property-description,
body:has(.dark-mode-checkbox:checked) .contact-form p,
body:has(.dark-mode-checkbox:checked) .form-header p {
  color: #b0b0b0;
}

body:has(.dark-mode-checkbox:checked) .mission-banner {
  background: #112211;
}

body:has(.dark-mode-checkbox:checked) .icon-wrapper {
  background-color: #2c2c2c;
  color: #8fba98;
}

body:has(.dark-mode-checkbox:checked) .support-badge {
  background-color: #8c5d41;
}

/* Dark Mode Toggle Button Setup */
.dark-mode-checkbox {
  display: none;
}

.dark-mode-label {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #1a2b23;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.dark-mode-label:hover {
  transform: scale(1.1);
}

.dark-mode-label svg {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: all 0.4s ease;
  fill: #f6920f;
}

.dark-mode-label .sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.dark-mode-label .moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.dark-mode-checkbox:checked~.dark-mode-label {
  background: #fff;
}

.dark-mode-checkbox:checked~.dark-mode-label .sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.dark-mode-checkbox:checked~.dark-mode-label .moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

/*========== NEW FOOTER STYLES ==========*/
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col.contact-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col.contact-info ul li i {
  color: #d48e5e;
  margin-top: 4px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  margin-top: 15px;
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  min-width: 150px;
  padding: 0 15px;
  border-radius: 30px 0 0 30px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  box-sizing: border-box;
  height: 45px;
}

.newsletter-form button {
  padding: 0 25px;
  border-radius: 0 30px 30px 0;
  border: none;
  background: #d48e5e;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.1rem;
  box-sizing: border-box;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: #b56e48;
}

.bottom-socials {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-socials a {
  margin: 0 10px;
  color: #666;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.bottom-socials a:hover {
  color: #d48e5e;
  transform: translateY(-3px);
}

/* Fix mobile alignment */
@media (max-width: 992px) {
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 30px !important;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .logo-group {
    justify-content: flex-start;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}