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

body {
    line-height: 1.6;
    color: #000;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.45rem 0;
    z-index: 1000;
}

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

.logo a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #6a7775;
}

.nav-cta {
    background-color: #6a7775;
    color: white !important;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    color: #333;
    line-height: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        color: #000;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        padding: 0;
        width: 100%;
    }

    .nav-links.active {
        max-height: 500px;
        margin-top: 1rem;
    }

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

section {
    padding: 2rem 0;
}

/* Adjust hero section to account for navigation */
.hero {
    padding-top: 5rem;
    min-height: 65vh;
}

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

h1,
h2,
h3 {
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.btn-call {
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-call:hover {
    background-color: #b8601a;
}

.call-button-wrapper {
    margin-top: 1rem;
}

/* Section Styles */
.hero {
    background-color: #fff;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.17;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: 3%;
    padding-top: 2.5rem;
    transform: translateY(-15%);
    max-width: 60%;
}

.urgent-banner {
    background-color: #f99672;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    max-width: 95%;
}

.about {
    background-color: #e7dfd8;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.about .container {
    position: relative;
    padding-right: 0;
    max-width: none;
    width: 100%;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    min-height: 500px;
    padding-right: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding-right: 2rem;
    min-width: 300px;
    z-index: 2;
    max-width: 60%;
    padding-left: 2rem;
}

.about-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.about-image img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    width: auto;
    object-fit: cover;
    object-position: right bottom;
}

.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    margin-bottom: 1rem;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-text h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.services-cta {
    margin-top: 3rem;
    text-align: center;
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.services-cta .btn {
    margin-top: 0;
    background-color: #6a7775;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.services-cta .btn:hover {
    background-color: #555;
}

.benefits {
    background-color: #6a7775;
    color: #fff;
}

.benefits h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.benefits-text {
    flex: 0 0 65%;
    padding-right: 3rem;
}

.benefits-image {
    flex: 0 0 35%;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.benefits ul {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.benefits li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.how-it-works {
    background-color: #e7dfd8;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-content {
    display: flex;
    flex-wrap: wrap;
}

.how-it-works-image {
    flex: 0 0 40%;
    padding-right: 3rem;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.process-steps {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: #6a7775;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact {
    background-color: #fff;
    padding-bottom: 6rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-image {
    flex: 0 0 40%;
    padding-right: 3rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 0 0 60%;
    padding-left: 4rem;
}

.contact-info p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer Section */
.footer {
    position: relative;
    background-color: transparent;
    text-align: center;
    padding: 8rem 0;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
    /* filter: brightness(1.2) contrast(0.9); */
}

.footer-content {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hero-content {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
        text-align: center;
        transform: translateY(0);
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.3;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 1rem auto;
        white-space: nowrap;
    }

    .about-content,
    .service-item,
    .contact-content,
    .how-it-works-content,
    .benefits-content {
        flex-direction: column;
    }

    .about-text,
    .service-text,
    .contact-info,
    .how-it-works-image,
    .benefits-text,
    .contact-image {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .about-image {
        display: none;
    }

    .about-image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps {
        flex: 0 0 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
} 