/* ------------------------------
   GLOBAL RESET & BASE
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #F9F8F6;
  color: #111111;
  font-weight: 400;
  line-height: 1.6;
}


img {
  max-width: 100%;
  height: auto; /* Force correct aspect-ratio scaling */
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------
   NAVBAR
------------------------------ */
.navbar {
  width: 100%;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111111;
  color: #fff;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600; 
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px; 
  position: relative;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.call-btn {
  background: #D4AF37;
  color: #111111;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600; 
  letter-spacing: 0.2px;

}

/* Hide hamburger menu by default on desktops */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}


/* ------------------------------
   HERO SECTION
------------------------------ */
header {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.35)
    ),
    url("banner.jpg") center/cover no-repeat;
  color: #fff;
  padding: 60px 5% 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem; /* Slightly larger scale */
  font-weight: 800; /* CHANGED from default to look punchy and confident */
  letter-spacing: -1px; /* ADDED to tighten the large headline */
  margin-bottom: 15px;
  max-width: 550px;
}

.hero-content p {
  font-size: 1rem;
  color: #e3e7f5;
  margin-bottom: 25px;
  max-width: 550px;
  font-weight: 400;

}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
    
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-secondary:hover {
  border-color: #D4AF37;
  color: #D4AF37;       
}

.btn-primary {
  background: #D4AF37;
  color: #111111;
  font-weight: 600; 
  letter-spacing: 0.2px;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600; 
  letter-spacing: 0.2px;

}

.hero-image img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ------------------------------
   TRUSTED PARTNER SECTION
------------------------------ */
.trusted-partner {
  padding: 70px 5%;
  text-align: center;
}

.trusted-partner h2 {
font-weight: 700; 
letter-spacing: -0.5px;

}

.trusted-partner p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #666;
  font-weight: 400;

}

.values {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.value-item {
  background: #FFFFFF;
  border: 1px solid #EAE6DF;
  color: #111111;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  font-weight: 600;
}


/* ------------------------------
   MOBILE RESPONSIVE MEDIA QUERY
------------------------------ */
@media (max-width: 768px) {
  /* Show hamburger button */
  .menu-toggle {
    display: flex;
  }

  /* Animate Hamburger into an 'X' when active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Transform nav-links into a mobile dropdown menu */
  .nav-links {
    position: absolute;
    top: 100%; /* Sits directly below the navbar */
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    gap: 0;
    max-height: 0; /* Keeps it hidden safely */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 9;
  }

  /* Open the mobile menu when active class is applied by JS */
  .nav-links.active {
    max-height: 300px; /* Adjust height based on your links count */
  }

  /* Style mobile links to look clean stacked */
  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Stack hero layout into a single column on small screens */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-content h1, 
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    color: #f4f4f4;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* ------------------------------
   SELLING PROCESS SECTION
------------------------------ */
.selling-process {
  padding: 70px 5%;
  text-align: center;
  background: #fff;
}

.selling-process h2 {
  font-weight: 700; 
  letter-spacing: -0.5px;

}

/* Aligns the 3 steps horizontally */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  background: #FFFFFF;
  border-top: 4px solid #D4AF37; 
  padding: 30px 20px;
  border-radius: 8px;
}

.step h3 {
  font-size: 1.25rem;
  color: #111111;
  font-weight: 700; /* Ensures the step title stands out immediately */
  margin-bottom: 12px;
}

.step p {
  color: #555;
  font-size: 0.95rem;
}

/* Bottom elements for selling section */
.selling-process .btn-primary {
  display: inline-block;
  margin-bottom: 30px;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #D4AF37;
}

.benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* ------------------------------
   WHAT WE CAN HELP WITH (PHOTO GRID)
------------------------------ */
.help-section {
  padding: 70px 5%;
  text-align: center;
  background: #f5f7fb;
}

.help-section h2 {
  font-weight: 700; 
  letter-spacing: -0.5px;

}

/* Creates a uniform responsive layout for your 5 image items */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.help-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.help-item:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
}

.help-item img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* Keeps images from stretching or squeezing */
}

.help-item p {
  padding: 15px;
  font-weight: 600;
  font-size: 1rem;
  color: #111111;
}


/* ------------------------------
   SERVICE AREA SECTION
------------------------------ */
.service-area {
  padding: 60px 5%;
  text-align: center;
  background: #f5f7fb;
  color: #111111;
}

.service-area h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}


/* ------------------------------
   LOCAL PARTNER SECTION
------------------------------ */
.local-partner {
  padding: 70px 5%;
  background: #fff;
}

.partner-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-text h2 {
  font-weight: 700; 
  letter-spacing: -0.5px;

}

.partner-text p {
  color: #555;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: #F1ECE1;
  color: #BFA030;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.partner-image img {
  border-radius: 12px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}


/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: #111111;
  color: #fff;
  padding: 40px 5%;
  text-align: center;
  font-size: 0.9rem;
}


/* ------------------------------
   MOBILE UPDATES FOR NEW SECTIONS
------------------------------ */
@media (max-width: 768px) {
  .partner-content {
    grid-template-columns: 1fr; /* Stacks layout on phones */
    text-align: center;
    gap: 30px;
  }
  
  .partner-image {
    order: -1; /* Puts profile image above text on mobile */
  }
  
  .benefits {
    flex-direction: column;
    gap: 15px;
  }
}

.gold-text {
  color: #D4AF37; /* Draws immediate eye attention to the word "Fast" */
}


