* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6, .btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

body, p, li {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #3A3A3A;
}
a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: inherit;
}
:root {
  /* =========================
     PRIMARY COLORS
  ========================== */
  --color-deep-forest-green: #0B5039;  /* Headers, buttons, key accents */
  --color-fresh-lime-green: #C2E16D;   /* Highlights, section dividers */

  /* =========================
     SECONDARY COLORS
  ========================== */
  --color-soft-sage-green: #A4C6A2;    /* Backgrounds, secondary buttons, hover */
  --color-teal-blue: #2D5D6B;          /* Accents, link hover states */

  /* =========================
     NEUTRAL BASE
  ========================== */
  --color-white: #FFFFFF;              /* Main background */
  --color-cool-gray: #F5F7F6;          /* Light section backgrounds */
  --color-charcoal-gray: #3A3A3A;      /* Body text */

  /* =========================
     TYPOGRAPHY (optional setup)
  ========================== */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* =========================
     SHADOWS & RADIUS (optional enhancements)
  ========================== */
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius-rounded: 8px;
}

body {
  background-color: var(--color-white);
  line-height: 1.6;
}

.logo{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 150px;
  height: auto;
  z-index: 1005; 
}
.logo img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.btn-primary{
  display: flex !important;
  align-items: center;
  background-color: var(--color-fresh-lime-green);
  color: var(--color-teal-blue);
  padding: 10px 20px;
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-primary:hover{
  background-color: var(--color-teal-blue);
  color: var(--color-white);
}
.btn-primary svg{
  margin: auto 0;
  margin-right: 8px;
}
.hero{
  display: flex;
  flex-direction: column;
}
.absolute-wrapper{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background: rgba(255, 255, 255, 0.3); /* White overlay with opacity */
  backdrop-filter: blur(5px); 
}
.hero-text{
  position: absolute;
  left: 10%;
  top: 20%;
  text-align: center;
  color: var(--color-deep-forest-green);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-text h1{
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
  line-height: clamp(2.7rem, 5.2vw, 4.2rem);
}
.hero-text h2{
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-deep-forest-green);
}
.hero-text p{
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 10px auto;
  font-weight: 500;
}
.hero-text .btn-primary{
  margin-top: 20px;
  align-self: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 12px 30px;
}
.hero-image{
  width: 100%;
  height: auto;
  min-height: 400px;
  display: flex;
  object-fit: cover;
  filter: brightness(0.9);
}
.hero-image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.navbar{
  display: flex;
  background-color: var(--color-cool-gray);
  width: 100vw;
  padding: 20px 5%;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.nav-links{
  display: flex;
  list-style: none;
  text-transform: uppercase;
}
.nav-links li a{
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-deep-forest-green);
  transition: all 0.3s ease;
  padding: 8px 12px;
}
.nav-links li a:hover,
.nav-links li a:focus{
  color: var(--color-white);
  background-color: var(--color-teal-blue);
}
.services-section{
  padding: 50px 5%;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.services-section h2{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-deep-forest-green);
  text-transform: uppercase;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
  width: 100%;
}
.service-card {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-rounded);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover{
  transform: translateY(-5px);
}
.service-card h3{
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-deep-forest-green);
  margin-top: 10px;
  margin-bottom: 15px;
}
.service-icon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 72px;               /* adjust as needed */
  height: 72px;
  stroke: var(--color-deep-forest-green);
  fill: none;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin: 0 auto 12px;
}

.why-section{
  padding: 50px 5%;
  background-color: var(--color-cool-gray);
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  color: var(--color-deep-forest-green);
}
.why-section h2{
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
}
.why-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 45ch;
}
.why-container li{
  font-size: clamp(1rem, 2vw, 1.2rem);
  list-style: disc;
}
.payment-section{
  padding: 50px 5%;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-deep-forest-green);
}
.contact-wrapper a{
  font-weight: 500;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
}
.icon {
  width: 24px;
  height: 24px;
  color: var(--color-deep-forest-green);
}
.social-icon svg {
  color: var(--color-fresh-lime-green);
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
}

.payment-section{
  background-color: var(--color-cool-gray);
}
.payment-section h2{
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  color: var(--color-deep-forest-green);
  text-transform: uppercase;
}
.payment-section a{
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  max-width: 600px;
  margin: 10px auto;
  font-weight: 500;
}
.links{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 5%;
  gap: 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--color-white);
}

/* .vl {
  border-left: 2px solid var(--color-deep-forest-green);
  height: 80px;
} */
.social-icon svg:hover {
  color: var(--color-deep-forest-green);
}
.link{
  color: var(--color-deep-forest-green);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: var(--radius-rounded);
}
.link:hover{
  background-color: var(--color-teal-blue);
  color: var(--color-white);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-deep-forest-green);
  background-color: var(--color-white);
  padding: 1rem 0;
}
@media screen and (max-width: 1024px) {
  .hero{
    flex-direction: column;
  }
  .hero-text{
    text-align: center;
    padding: 20px 5%;
    top: 15%;
    left: 20%;
  }
  .hero-image{
    min-height: 300px;
  }
  .why-section{
    flex-direction: column;
    align-items: start;
    text-align: start;
  }
  .why-container{
    text-align: start;
  }
  .vl {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-text{
    top: 10%;
    left: 10%;
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .logo{
    width: 20%;
    top: 0.5rem;
    left: 0.5rem;
  }
  .hero-text{
    justify-content: center;
    top: auto;
    left: auto;
  }
  .hero-text p{
    display: none;
    margin: auto auto;
  }
  .navbar .btn-primary{
    padding: 8px 16px;
    font-size: 0.8rem;
    margin: 0 auto;
  }
  .hero-text{
    margin: 0 auto ;
    width: 100%;
    height: 100%;
  }
  .hero-text h1{
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: clamp(2.2rem, 6.2vw, 3.2rem);
  }
  .hero-text h2{
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
  .hero-text p{
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .hero-text .btn-primary{
    font-size: clamp(0.9rem, 3vw, 1rem);
    padding: 10px 20px;
  }
  .hero-image{
    min-height: 200px;
  }
  .links{
    align-items: center;
    justify-content: center;
  }
  .contact-wrapper a{
    padding: 4px 8px;
  }
}