/* Base Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #1C1C1C;
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #1C1C1C;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Nav Bar */
.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.navbar .logo {
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    color: #1C1C1C;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.3rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 200;
    color: #1C1C1C;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #CDB252;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../images/lsm_hero_img_org.png') center/cover no-repeat;
    color: white;
    min-height: 70vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: white;
}

.seo-keyword {
    display: block;
}

/* Local SEO Section */
.local-seo-section {
    background-color: #CDB252; /* LSM Yellow */
    padding: 4rem 2rem;
}


.local-seo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
}

.local-seo-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1C1C;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}



/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn.cta {
    font-family: 'Montserrat', sans-serif;
    padding: 14px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

/* Primary CTA - brand yellow */
.btn-cta-1 {
    background-color: #CDB252;
    color: #1C1C1C;
}

.btn-cta-1:hover {
    background-color: #b99e46;
}

/* Secondary CTA - white with black text */
.btn-cta-2 {
    background-color: #fff;
    color: #1C1C1C;
}

.btn-cta-2:hover {
    background-color: #f1f1f1;
}


/* Hire us CTA - brand black */
.btn-cta-hire-us {
    background-color: #1C1C1C;
    color: #F9F9F9;
}
/* Service Highlights */
.services {
    background-color: #FFFFFF;
    text-align: center;
    padding: 4rem 2rem;
}

.services h2 {
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: #F9F9F9;
    padding: 1.5rem;
    border: 1px solid #8C8C8C;
    border-radius: 4px;
    font-weight: 600;
}

/* Who we are section */
.who-we-are {
    background-color: #1C1C1C;
    padding: 4rem 2rem;
}

.who-we-are-inner {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
}


.who-we-are h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1C1C1C;
    text-align: center;
}

.who-we-are-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.who-we-are-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}


/* Services */

.service {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
}

.service-inner {
    background-color: #CDB252;
    padding: 2rem;
    border-radius: 8px;
}

.service-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}



/* Testimonials */
.testimonials {
    background-color: #F9F9F9;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial {
    max-width: 700px;
    margin: 1.5rem auto;
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 0.5rem;
    color: #8C8C8C;
}

/* why-choose-us Section */
.why-choose-us {
    background-color: #FFFFFF;
    text-align: center;
    padding: 4rem 2rem;
}

/* Footer */
footer {
    background-color: #1C1C1C;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem;
}

footer nav a {
    color: #CDB252;
    margin: 0 0.75rem;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #1C1C1C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger "X" animation */
.nav-toggle.active .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .middle-bar {
    opacity: 0;
}

.nav-toggle.active .bottom-bar {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* FORM Styling*/
/* ================================
   Free Quote Form Styling
   ================================ */

.join-form {
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 650px;
  margin: 2rem auto;
}

.join-form h3.form-title {
  font-size: 1.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.join-form p.form-sub {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.join-form .row {
  margin-bottom: 1.25rem;
}

.join-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="tel"],
.join-form select,
.join-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.join-form input:focus,
.join-form textarea:focus,
.join-form select:focus {
  border-color: #f5c518; /* Lemon yellow accent */
  background: #fff;
  outline: none;
}

.join-form .btn.cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #f5c518; /* Lemon Squeeze yellow */
  color: #000;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.join-form .btn.cta:hover {
  background-color: #ffda44;
  transform: translateY(-2px);
}

.field-error {
  color: #d9534f;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}


/* Mobile Nav */
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 70px;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        width: 80%;
        max-height: 0;
        overflow:scroll;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 0 1rem;
        z-index: 999;
    }

    .nav-links.open {
        max-height: 500px;
        padding: 1rem 2rem;
    }

    .nav-links li {
        width: 100%;
        margin: 1rem 0;
        text-align: left;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 0.2rem 0;
        font-size: 1.1rem;
        color: #1C1C1C;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: relative;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Who We Are */
    .who-we-are-inner {
        padding: 1.5rem;
    }

    .who-we-are-image-container {
        max-width: 100%;
        padding: 0;
    }

    .who-we-are-image {
        width: 100%;
        height: auto;
        display: block;
    }
}

