/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #222;
}

/* HEADER */
.site-header {
  background-color: #0c2340;
  padding: 20px 0;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.site-nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
.site-nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-nav ul.nav-links li {
  margin: 0;
}

.site-nav ul.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: background-color 0.2s ease-in-out;
}

.site-nav ul.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.site-nav ul.nav-links a.cta-header {
  background-color: #ffc107;
  border-radius: 4px;
  color: #0c2340;
}

.site-nav .cta-header {
  background-color: #ffc107;
  padding: 8px 14px;
  border-radius: 4px;
  color: #0c2340;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 20px;
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  padding-right: 40px;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #0c2340;
  margin-bottom: 20px;
}

.hero-features li {
  margin-bottom: 8px;
  list-style: none;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffc107;
  color: #0c2340;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* HERO FORM */
.hero-form {
  flex: 1;
  min-width: 350px;
  background-color: #ffc107; /* gold background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  max-width: 500px;
}

.hero-form form {
  display: flex;
  flex-direction: column;
}

.hero-form label {
  margin-top: 12px;
  font-weight: bold;
}

.hero-form input,
.hero-form select {
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hero-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #0c2340;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  flex: 1;
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 280px;
}

/* WHO WE HELP */
.who-we-help {
  padding: 60px 40px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.help-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.help-text {
  flex: 1;
  min-width: 300px;
  padding-left: 20px;
}

.help-list ul {
  list-style: none;
  padding-left: 0;
}

.help-list li {
  padding: 6px 0;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* FOOTER */
footer {
  background-color: #0c2340;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    margin-top: 10px;
  }
  .testimonial-cards {
    flex-direction: column;
  }
  .help-columns {
    flex-direction: column;
  }
}
/* ABOUT PAGE REFINEMENT */
.about-hero {
  background-color: #0c2340;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ABOUT PAGE BODY */
.about-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  background: white;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-page h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0c2340;
}

.about-page h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #0c2340;
}

.about-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-page li {
  margin-bottom: 10px;
}

.about-page .cta-button {
  display: block;
  margin: 30px auto 0 auto;
  background-color: #ffc107;
  color: #0c2340;
  padding: 14px 26px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: fit-content;
}


.about-page .cta-button:hover {
  background-color: #e0aa06;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 20px 40px;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .about-page h1 {
    font-size: 1.8rem;
  }
  .about-page h2 {
    font-size: 1.3rem;
  }
}
.property-types {
  background-color: #0c2340;
  color: white;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.property-types h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.property-types p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f1f1f1;
}

.property-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.property-card {
  background: #ffffff;
  color: #0c2340;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.property-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0c2340;
}

.property-card p {
  font-size: 0.95rem;
  color: #333;
}
.any-condition {
  background-color: #0c2340;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.any-condition h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.any-condition p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f1f1f1;
}

.condition-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.condition-item {
  background: #ffffff;
  color: #0c2340;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.condition-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0c2340;
}

.condition-item p {
  font-size: 0.95rem;
  color: #333;
}
.cta-banner {
  background-color: #0c2340;
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.cta-banner-button {
  background-color: #ffc107;
  color: #0c2340;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1rem;
}
/* FAQ PAGE */
.faq-hero {
  background-color: #0c2340;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.faq-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.faq-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item h2 {
  color: #0c2340;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.faq-page .cta-button.center {
  display: block;
  margin: 60px auto 0 auto;
  text-align: center;
}
/* CONTACT HERO */
.contact-hero {
  background-color: #0c2340;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* CONTACT PAGE */
.contact-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin-bottom: 40px;
  text-align: center;
}

.contact-info a {
  color: #0c2340;
  font-weight: bold;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 14px;
  background-color: #0c2340;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #001f3f;
}

.accordion {
  background-color: #fff;
  color: #0c2340;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.accordion:hover {
  background-color: #f9f9f9;
}

.panel {
  padding: 0 20px;
  background-color: white;
  display: none;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.arrow {
  transition: transform 0.3s ease;
}

.accordion.active .arrow {
  transform: rotate(180deg);
}

.homepage-hero {
  position: relative;
background-image: url('Images/istockphoto-1163845304-612x612.jpg');  background-size: cover;
  background-position: center;
  height: 70vh; /* Reduced height from 100vh to 70vh */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.homepage-hero-overlay {
  background-color: rgba(12, 35, 64, 0.85);
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.homepage-hero h1 {
  font-size: 2.6rem; /* Slightly smaller */
  font-weight: 800;
  margin-bottom: 20px;
}

.homepage-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.homepage-hero .cta-button {
  background-color: #ffc107;
  color: #0c2340;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.homepage-hero .cta-button:hover {
  background-color: #e0aa06;
}
/* Hamburger Menu Styles */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ffc107;
}

/* Show hamburger and hide nav on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
.menu-toggle {
  display: block;
  font-size: 2rem;
  cursor: pointer;
  color: #ffc107;
  margin-left: auto;
}
  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.active {
    display: block;
  }

  .site-nav ul.nav-links {
    flex-direction: column;
    gap: 10px;
    background-color: #0c2340;
    padding: 20px;
  }

  .site-nav ul.nav-links li {
    text-align: center;
  }
}
/* Hide nav links by default on mobile */
@media screen and (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background-color: #002244; /* match your header color */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .site-nav.active {
    display: flex;
  }

 .menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ffc107;
  margin-left: auto; /* <-- Add this line */
}

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .cta-header {
    background: yellow;
    color: black;
    padding: 10px;
    border-radius: 4px;
  }
}

/* Thank You Page Styles */
body.thank-you-page {
  background-color: #f5f5f5;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.thank-you-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
  border-top: 6px solid #ffc107;
}

.thank-you-container h1 {
  font-size: 2.4rem;
  color: #0c2340;
  margin-bottom: 16px;
  font-weight: 800;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.6;
}

.thank-you-container strong {
  color: #000;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 1rem;
  color: #0c2340;
  border: 2px solid #0c2340;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-link:hover {
  background-color: #0c2340;
  color: #fff;
}