/* CSS Custom Properties (Variables) */
:root {
    --dark-peach: #DC6820;
    --light-peach: #F1874F;
    --dark-green: #053225;
    --light-green: #84A88E;
    --background-cream: #F5D6B9;
    --section-bg: #FDF7E8;
    --white: #fff;
    --black: #000;
    --button-shadow: rgba(0, 0, 0, 0.5);
    --header-shadow: rgba(0, 0, 0, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-green);
    overflow-x: hidden;
    background-color: var(--background-cream);
}

/* Set default color for all text and icons */
* {
    color: var(--dark-green);
}

/* Ensure all text elements use the dark green color */
body, p, h1, h2, h3, h4, h5, h6, span, div, a, li, label, input, textarea, button {
    color: var(--dark-green);
    
}


/* Keep hero section with its original styling */
/* .hero h1, .hero p, .hero i, .hero .hero-line-1, .hero .hero-line-2 {
    color: var(--dark-peach) !important;
} */

.hero h1, .hero p, .hero i, .hero .hero-line-1, .hero .hero-line-2 {
    color: var(--dark-peach) !important;
}

.hero .cta-button {
    color: var(--white) !important;
    border-radius: 15px;
    text-align: center;
    line-height: 1.2;
}

.cta-button .call-text {
    color: var(--white) !important;
    font-size: 1.3em;
    font-weight: 700;
}

.container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-container {
    max-width: 768px;
    margin: 0 auto;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15), 8px 0 25px rgba(0, 0, 0, 0.15);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    max-width: 768px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--header-shadow);
    
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-green);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: var(--light-green);
}

/* Custom logo styling */
.nav-logo .logo-img {
    height: 70px;
    margin-right: 0.5rem;
}

/* Ensure fruit icon displays properly */
.nav-logo .fa-apple-whole {
    font-size: 1.8rem;
    color: #84a88e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {

    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2)), url('bg.jpg');
    background-size: cover;
    background-position: top;
    overflow: hidden;
    max-width: 768px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--dark-peach);
    text-align: center;
    width: 100%;
}

.hero h1 {
    position: relative;
    top: -50px;
    left: -250px;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    margin-bottom: 0;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    text-align: right;
    width: 100%;
}

.hero-line-1 {
    display: block;
    margin-bottom: 0.2rem;
}

.hero-line-2 {
    display: block;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--dark-peach);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px var(--button-shadow);
    position: relative;
    top: -50px;
    left: -250px;
    text-align: right;
    float: right;
    margin-top: 25px;
}

.cta-button:hover {
    background: var(--light-peach);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--button-shadow);
}

.cta-button .cta-phone-number {
    color: var(--white) !important;
    font-size: 1.5em;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
}

/* About Us Section */
.about {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.about h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.about-content {
    margin-top: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.services h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--light-peach);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.step-card p {
    color: var(--black);
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-peach);
    flex-shrink: 0;
}

.step-arrow i {
    transition: all 0.3s ease;
}

/* Call For Quote Section */
.call-for-quote {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.quote-content {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    max-width: 500px;
    margin: 0 auto;
}

.quote-content h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: center;
    font-size: 1.5rem;
    /* margin-bottom: 1rem; */
    color: var(--dark-peach);
}

.phone-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-peach);
    margin: 0;
    font-family: 'Inter', sans-serif;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

/* What's Included Section */
.whats-included {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.whats-included h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.why-choose-us h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.why-choose-us .reasons-list {
    margin-top: 2rem;
}

/* Apply Palatino to all headers */
h1, h2, h3, h4, h5, h6 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}

/* Left align all h2 elements */
h2 {
    text-align: left;
}

.section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h3 i {
    color: var(--light-green);
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--black);
    line-height: 1.6;
}

.service-subtitle {
    font-weight: 600;
    color: var(--light-peach) !important;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-subtitle em {
    font-weight: 400;
    color: var(--light-green) !important;
    font-style: italic;
}

.service-card.featured {
    background: linear-gradient(135deg, #fff9f5 0%, var(--white) 100%);
}

.price-range {
    margin-top: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    border-left: 3px solid var(--light-green);
}

.savings {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.reason-number {
    width: 60px;
    height: 60px;
    background: var(--light-peach);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.reason-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.4;
}

.reason-content p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature {
    text-align: center;
    padding: 0.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature p {
    color: var(--black);
}

/* Testimonial Section */
.testimonial-section {
    padding: 2rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

/* Testimonial Styling */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--background-cream);
    position: relative;
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-peach);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-peach), var(--light-peach));
    border-radius: 20px 20px 0 0;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-green);
    margin: 0;
    position: relative;
    padding: 1.5rem 1rem 0 1rem;
    text-align: center;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-peach);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: "Georgia", serif;
    opacity: 0.7;
}

.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--light-peach);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: "Georgia", serif;
    opacity: 0.7;
}

.testimonial-author {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--background-cream);
}

.testimonial-author h4 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 0.5rem 0;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--light-green);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section (Footer) */
.contact.footer {
    padding: 4rem 0 2rem;
    background: var(--white);
    color: var(--black);
    border-radius: 0;
    border-top: 1px solid #e9ecef;
}

.contact h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px var(--button-shadow);
}

.submit-btn {
    width: 100%;
    background: var(--dark-peach);
    color: var(--white)!important;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--light-peach);
    transform: translateY(-2px);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--light-green);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.5;
}



.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    color: var(--black);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
        left: 0;
        text-align: center;
        width: 100%;
    }
    
    .call-for-quote h2 {
        font-size: 2rem;
    }
    
    .phone-number-large {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-button {
        display: block;
        margin: 0 auto;
        text-align: center;
        position: static;
        float: none;
        left: auto;
        top: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reasons-list {
        gap: 1.5rem;
    }

    .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .reason-number {
        margin-top: 0;
        align-self: center;
    }

    /* Process Steps Mobile Layout */
    .process-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-arrow i {
        transform: rotate(90deg);
    }

    .step-card {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 1rem;
    }

    .testimonial-item {
        padding: 2rem;
        margin: 0 1rem;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        padding: 1rem 0 0 0;
    }

    .testimonial-content p::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }

    .testimonial-content p::after {
        font-size: 3rem;
        bottom: -1.5rem;
        right: -0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .services h2,
    .why-choose-us h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Peach bullet list styling */
.peach-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.peach-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green) !important;
}

.peach-bullet-list li::before {
    content: "●";
    color: var(--dark-peach) !important;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.shout-outs {
    padding: 4rem 0;
    background: var(--section-bg);
}

.shout-outs h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}





 