/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F3F1E7;
    color: #1E1E1E;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    background-color: #F3F1E7;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #8C6B2F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #3A2F2A;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D4A73A;
}

.nav-cta-btn {
    background-color: #D4A73A;
    color: #1E1E1E;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: #8C6B2F;
    color: #F3F1E7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #3A2F2A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E7DFC8 0%, #D4A73A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #3A2F2A;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 241, 231, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-label {
    display: inline-block;
    background-color: rgba(212, 167, 58, 0.2);
    color: #3A2F2A;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 20px;
    color: #3A2F2A;
    margin-bottom: 35px;
    font-weight: 400;
}

/* ===================================
   BUTTONS
   =================================== */

.cta-button {
    display: inline-block;
    background-color: #D4A73A;
    color: #1E1E1E;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 167, 58, 0.3);
}

.cta-button:hover {
    background-color: #8C6B2F;
    color: #F3F1E7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(140, 107, 47, 0.4);
}

/* ===================================
   INTRO / TRUST SECTION
   =================================== */

.intro-section {
    background-color: #E7DFC8;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.intro-paragraph {
    font-size: 18px;
    color: #3A2F2A;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.intro-supporting {
    font-size: 16px;
    color: #3A2F2A;
    margin: 10px 0;
}

/* ===================================
   WHAT MAKES US DIFFERENT
   =================================== */

.features-section {
    background-color: #F3F1E7;
    padding: 80px 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #3A2F2A;
    max-width: 700px;
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-placeholder {
    width: 70px;
    height: 70px;
    background-color: #D4A73A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1E1E1E;
    font-weight: 600;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #3A2F2A;
    line-height: 1.6;
}

/* ===================================
   OUR APPROACH
   =================================== */

.approach-section {
    background-color: #E7DFC8;
    padding: 80px 20px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background-color: #F3F1E7;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.approach-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.approach-text {
    font-size: 15px;
    color: #3A2F2A;
    line-height: 1.6;
}

/* ===================================
   PERSONAL / ABOUT PREVIEW
   =================================== */

.about-preview-section {
    background-color: #F3F1E7;
    padding: 80px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-paragraph {
    font-size: 17px;
    color: #3A2F2A;
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #D4A73A 0%, #8C6B2F 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3F1E7;
    font-weight: 600;
    font-size: 18px;
}

/* ===================================
   TRUST SIGNALS / STATS
   =================================== */

.trust-signals-section {
    background-color: #E7DFC8;
    padding: 60px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: #6E7F4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #F3F1E7;
    font-weight: 600;
}

.trust-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 8px;
}

.trust-text {
    font-size: 15px;
    color: #3A2F2A;
}

/* ===================================
   SERVICE AREA
   =================================== */

.service-area-section {
    background-color: #F3F1E7;
    padding: 80px 20px;
    text-align: center;
}

.service-area-text {
    font-size: 17px;
    color: #3A2F2A;
    max-width: 700px;
    margin: 0 auto 35px;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.city-item {
    background-color: #E7DFC8;
    color: #3A2F2A;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   FINAL CALL TO ACTION
   =================================== */

.final-cta-section {
    background-color: #8C6B2F;
    padding: 80px 20px;
    text-align: center;
}

.cta-headline {
    font-size: 44px;
    font-weight: 700;
    color: #F3F1E7;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 18px;
    color: #E7DFC8;
    margin-bottom: 35px;
}

.final-cta-section .cta-button {
    background-color: #D4A73A;
    color: #1E1E1E;
}

.final-cta-section .cta-button:hover {
    background-color: #F3F1E7;
    color: #1E1E1E;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #3A2F2A;
    color: #E7DFC8;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: #D4A73A;
    margin-bottom: 15px;
}

.footer-phone,
.footer-location {
    font-size: 15px;
    color: #E7DFC8;
    margin: 8px 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #D4A73A;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin: 10px 0;
}

.footer-list a {
    color: #E7DFC8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #D4A73A;
}

.footer-text {
    font-size: 15px;
    color: #E7DFC8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(231, 223, 200, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #E7DFC8;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #F3F1E7;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-headline {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    /* Sections */
    .section-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .cta-headline {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}
