/* ==========================================
   VARIABLES
========================================== */

@import url("variables.css");

/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body-font);

    color:var(--charcoal);

    background:var(--cream);

    line-height:1.7;

}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:var(--heading-font);
    color:var(--forest);
    line-height:1.2;

}

h1{

    font-size:4.5rem;

}

h2{

    font-size:3rem;

}

p{

    margin-bottom:1rem;

}
/* ==========================================
   LAYOUT
========================================== */

section{

    position:relative;

}

.container{

    max-width:1200px;

}
/* ==========================================
   BUTTONS
========================================== */
.btn{

    border-radius:999px;

    padding:14px 32px;

    font-weight:600;

    transition:.3s;

}

.btn-brand{

    background:var(--forest);

    color:white;

}

.btn-brand:hover{

    background:var(--copper);

}
/* ==========================================
   NAVIGATION
========================================== */

.navbar{
    background: var(--cream);

    padding:18px 0;

    border-bottom:1px solid rgba(42,93,67,.08);

    box-shadow:0 4px 18px rgba(0,0,0,.04);

}

.brand{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo{

    height: 80px;
}

.brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.brand-name{

    font-size:2rem;

    color:var(--forest);

}

.brand-subtitle{

    text-transform:uppercase;

    letter-spacing:4px;

    color:var(--copper);

    font-size:.85rem;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    position:relative;

    color:var(--forest);

    font-weight:600;

    padding:10px 16px !important;

    white-space: nowrap;

    transition:var(--transition);

}

.nav-link:hover{

    color:var(--copper);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    width:0;

    height:3px;

    background:var(--copper);

    transform:translateX(-50%);

    border-radius:10px;

    transition:var(--transition);

}

.nav-link:hover::after,

.nav-link.active::after{

    width:70%;

}

.nav-link.active{

    color:var(--copper);

}

.btn-brand{

    background:var(--forest);

    color:white;

    padding:14px 30px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

}

.btn-brand:hover{

    background:var(--copper);

    color:white;

    transform:translateY(-2px);

}
/* ==========================================
   HERO
========================================== */

.hero{

    min-height:85vh;

    display:flex;

    align-items:center;

    background:
        linear-gradient(
            rgba(248,245,239,.71),
            rgba(248,245,239,.71)
        ),
        url("../images/background.png");

    background-size:cover;

    background-position:left center;

}
.hero-content{

    max-width:650px;

    padding:100px 0;

}

.hero-badge{

    display:inline-block;

    background:rgba(31,92,71,.08);

    color:var(--forest);

    padding:10px 22px;

    border-radius:999px;

    font-weight:600;

    margin-bottom:30px;

}

.hero h1{

    font-size:4.5rem;

    line-height:1.08;

    margin-bottom:30px;

}

.hero p{

    font-size:1.25rem;

    max-width:620px;

    margin-bottom:40px;

    color:#555;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

    flex-wrap:wrap;

}

.btn-outline-brand{

    border:2px solid var(--forest);

    color:var(--forest);

    border-radius:999px;

    padding:14px 30px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline-brand:hover{

    background:var(--forest);

    color:white;

}

.hero-highlights{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

    color:var(--forest);

    font-weight:600;

}

/* ==========================================
   CUSTOM ICONS
========================================== */

.custom-icon{

    width:44px;

    height:44px;

    display:block;

    object-fit:contain;

    flex-shrink:0;

}

/* ==========================================
   PAGE HERO
========================================== */

.page-hero{

    padding:140px 0 100px;

    text-align:center;

    background:
        linear-gradient(rgba(248,245,239,.65),
        rgba(248,245,239,.65)),
        url("../images/forest-hero.jpg");

    background-size:cover;

    background-position:center;

}

.page-hero h1{

    max-width:800px;

    margin:20px auto;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    font-size:1.15rem;

}

/* ==========================================
   BUILT ON TRUST
========================================== */

.trust-section{

    padding:120px 0;

    background:white;

}

.trust-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.section-label{

    color:var(--copper);

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:600;

}

.trust-content h2{

    font-size:3rem;

    margin:20px 0 30px;

}

.trust-content p{

    font-size:1.1rem;

    margin-bottom:24px;

    color:#555;

}

.trust-cards{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.trust-card{

    background:var(--cream);

    padding:35px;

    border-radius:16px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.trust-card:hover{

    transform:translateY(-6px);

}

.trust-card .service-icon{

    width:auto;
    height:auto;

    border:none;
    background:none;

    margin:0 auto 20px;

}

.trust-card .service-icon img{

    width:40px;   /* Adjust this to taste */
    height:auto;

}

.feature-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.feature-icon img{

    width:68px;

    height:68px;

    display:block;

}

.card-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:18px;

}

.card-icon img{

    width:30px;

    height:30px;

    object-fit:contain;

}

.trust-card h3{

    margin-bottom:15px;

}

/* ==========================================
   SECTION DIVIDER
========================================== */

.section-divider{

    display:flex;

    justify-content:center;

    padding:70px 0;

    background:var(--white);

}

.section-divider img{

    width:320px;

    opacity:.95;

}
/* ==========================================
   SERVICES PREVIEW
========================================== */

.services-preview{

    padding:120px 0;

    background:var(--cream);

}

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-heading h2{

    margin:20px 0;

    font-size:3rem;

}

.section-heading p{

    font-size:1.15rem;

    color:#555;

}

.service-card{

    background:white;

    border-radius:18px;

    padding:45px;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    flex-direction:column;

    text-align:center;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.featured{

    border-top:5px solid var(--copper);

}

/* ==========================================
   SERVICE PREVIEW ICONS
========================================== */

.service-preview-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:24px;

}

.service-preview-icon img{

    width:52px;

    height:52px;

    display:block;

}

.service-card h3{

    margin-bottom:15px;

}

.service-subtitle{

    color:#666;

    margin-bottom:25px;

}

.service-card ul{

    padding-left:20px;

    margin-bottom:35px;

    text-align:left;

    flex-grow:1;

}

.service-card li{

    margin-bottom:12px;

}

.service-link{

    color:var(--forest);

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.service-link:hover{

    color:var(--copper);

    padding-left:8px;

}

/* ==========================================
   SERVICES SECTION
========================================== */

.services-section{

    padding:120px 0;

    background:var(--cream);

}

.services-section .section-heading{

    margin-bottom:70px;

}

.service-card{

    background:white;

    padding:20px 40px 40px;

    border-radius:40px;

    box-shadow:var(--shadow);

    height:100%;

    transition:all .3s ease;

    text-align:left;

    display:inline-block;

    margin:20px auto 0;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-icon{

    width:70px;
    height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    border:1.5px solid rgba(186,119,44,.30);

    border-radius:50%;

    background:#F9F6F1;

}

.service-icon img{

    width:36px;
    height:36px;

    object-fit:contain;

}

.value-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:18px;

}

.value-icon img{

    width:42px;
    height:42px;

    display:block;
    object-fit:contain;

}

.service-card h3{

    color:var(--forest);

    margin-bottom:12px;

}

.service-card ul{

    text-align:left;

    display:inline-block;

    margin:20px auto 0;

}

.service-card:hover .service-icon{

    transform:translateY(-4px);

    border-color:var(--copper);

    transition:.3s ease;

}

.service-icon{

    transition:.3s ease;

}

.service-card li{

    margin-bottom:10px;

    color:var(--text);

}

.btn-outline{

    color: var(--copper);

    border: 2px solid var(--copper);

    background: transparent;

}

.btn-outline:hover{

    background: var(--copper);

    color: white;

}

.service-value-card{

    background: var(--cream);

    border-radius: 24px;

    box-shadow: var(--shadow);

    padding: 40px;

}

/* ==========================================
   HOW WE WORK TOGETHER
========================================== */

.how-it-works{

    background: var(--cream);

    padding:120px 0;

}

/* ==========================================
   MEET THE BOOKKEEPER ICONS
========================================== */

.credential-icon{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.credential-icon img{

    width:40px;

    height:40px;

    object-fit:contain;

    display:block;

}

/* ==========================================
   WHAT'S INCLUDED
========================================== */

.included-section{

    padding:120px 0;

    background:white;

}

/* ==========================================
   PRICING HERO
========================================== */

.pricing-hero{

    padding:120px 0 70px;

    background:var(--cream);

}

.pricing-hero .section-heading{

    max-width:760px;

}

/* ==========================================
   PRICING PACKAGES
========================================== */

.pricing-packages{

    padding:110px 0;

    background:var(--cream);

}

.pricing-card{

    background:white;

    border-radius:36px;

    padding:45px;

    height:100%;

    box-shadow:var(--shadow);

    display:flex;

    flex-direction:column;

    position:relative;

    transition:.35s;

}

.pricing-card:hover{

    transform:translateY(-8px);

}

.featured-plan{

    border:3px solid var(--copper);

}

.plan-badge{

    position:absolute;

    top:-16px;

    left:40px;

    background:var(--copper);

    color:white;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.08em;

    padding:8px 16px;

    border-radius:999px;

}

.price{

    font-size:3rem;

    font-weight:700;

    color:var(--forest);

    margin:20px 0 10px;

}

.price span{

    font-size:1rem;

    color:#666;

    font-weight:500;

}

.package-description{

    margin-bottom:30px;

    color:#555;

}

.pricing-card ul{

    flex-grow:1;

    padding-left:20px;

}

.pricing-card li{

    margin-bottom:12px;

}

.pricing-card .btn{

    margin-top:30px;

}
/* ==========================================
   ADDITIONAL SERVICES
========================================== */

.additional-services{

    padding:110px 0;

    background:white;

}

.service-option{

    background:var(--cream);

    padding:40px;

    border-radius:32px;

    height:100%;

    transition:.3s;

}

.service-option:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}

.service-option h3{

    color:var(--forest);

    margin-bottom:15px;

}

.service-price{

    font-size:1.5rem;

    font-weight:700;

    color:var(--copper);

    margin-bottom:25px;

}

.service-price span{

    font-size:.95rem;

    color:#666;

    font-weight:500;

    margin-left:6px;

}

.service-option ul{

    padding-left:20px;

}

.service-option li{

    margin-bottom:12px;

}
/* ==========================================
   PAYROLL SERVICES
========================================== */

.payroll-section{

    padding:110px 0;

    background:var(--cream);

}

.payroll-card{

    background:white;

    padding:45px;

    border-radius:32px;

    box-shadow:var(--shadow);

    height:100%;

    transition:.3s;

}

.payroll-card:hover{

    transform:translateY(-6px);

}

.payroll-card h3{

    color:var(--forest);

    margin-bottom:30px;

}

.payroll-price{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.payroll-price strong{

    color:var(--copper);

}

.payroll-card ul{

    margin:30px 0;

    padding-left:20px;

}

.payroll-card li{

    margin-bottom:12px;

}

.payroll-note{

    background:rgba(186,119,44,.08);

    border-left:4px solid var(--copper);

    padding:20px;

    border-radius:12px;

    font-size:.95rem;

    color:#555;

}
/* ==========================================
   FAQ
========================================== */

.faq-section{

    padding:120px 0;

    background:white;

}

.faq-section .accordion{

    max-width:900px;

    margin:0 auto;

}

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow);

}

.accordion-button{

    font-weight:600;

    padding:24px 30px;

    color:var(--forest);

    background:white;

}

.accordion-button:not(.collapsed){

    background:var(--cream);

    color:var(--forest);

    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

    border:none;

}

.accordion-body{

    padding:25px 30px;

    line-height:1.8;

}
.final-cta .hero-buttons{

    justify-content:center;

    margin-top:40px;

}

/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero{

    padding:120px 0;

    background:var(--cream);

}

.contact-hero h1{

    margin:20px 0 30px;

}

.hero-description{

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:45px;

}
.final-cta .hero-buttons{

    justify-content:center;

    margin-top:40px;

}
.contact-item{

    margin-bottom:35px;

}

.contact-item h5{

    color:var(--forest);

    margin-bottom:8px;

}

.contact-form-card{

    background:white;

    padding:50px;

    border-radius:40px;

    box-shadow:var(--shadow);

}

.form-control,

.form-select{

    border-radius:12px;

    padding:14px 18px;

    border:1px solid #ddd;

}

.form-control:focus,

.form-select:focus{

    border-color:var(--copper);

    box-shadow:none;

}

textarea{

    resize:vertical;

}
/* ==========================================
   CONTACT REASSURANCE
========================================== */

.contact-reassurance{

    padding:100px 0;

    background:white;

}

.reassurance-card{

    max-width:850px;

    margin:0 auto;

    background:var(--cream);

    padding:60px;

    border-radius:40px;

    box-shadow:var(--shadow);

}

.reassurance-card h2{

    color:var(--forest);

    margin:25px 0;

}

.reassurance-card p{

    font-size:1.1rem;

    line-height:1.8;

    color:#555;

    margin-bottom:20px;

}

.reassurance-card h3{

    color:var(--copper);

    margin-top:35px;

    font-size:1.4rem;

}

/* ==========================================
   HOW WE WORK TOGETHER
========================================== */

.services-process-section{

    padding:120px 0;

    background:var(--cream);

}

.process-section .section-heading{

    margin-bottom:70px;

}

.process-card{

    background:white;

    border-radius:40px;

    padding:40px;

    text-align:center;

    height:100%;

    box-shadow:var(--shadow);

    transition:all .3s ease;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--forest);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.75rem;

    font-weight:700;

}

.process-card h3{

    color:var(--forest);

    margin-bottom:20px;

}

/* ==========================================
   OUR PROCESS
========================================== */

.about-process-section{

    padding:120px 0;

    background:white;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.process-step{

    text-align:center;

    padding:35px 25px;

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--forest);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.5rem;

    font-weight:700;

}

.process-step h3{

    margin-bottom:15px;

}

.process-step p{

    color:#666;

}
/* ==========================================
   ABOUT PREVIEW
========================================== */

.about-preview{

    padding:120px 0;

    background:var(--cream);

}

.about-photo{

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    border:4px solid white;

}

.about-photo img{

    width:100%;

    display:block;

}

.about-name{

    color:var(--forest);

    margin:15px 0 30px;

    font-size:1.8rem;

}

.about-preview p{

    color:#555;

    margin-bottom:22px;

}

.credentials{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.credential{

    background:white;

    padding:16px 20px;

    border-radius:12px;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

/* ==========================================
   ABOUT STORY
========================================== */

.about-story{
    padding:120px 0;
    background:white;
}

/* ==========================================
   BRAND STORY
========================================== */

.brand-story{

    padding:120px 0;

    background:var(--cream);

}

.brand-intro{

    max-width:800px;

    margin:0 auto 40px;

    text-align:center;

    color:#555;

}


/* ==========================================
   OUR VALUES
========================================== */

.values-section{
    padding:120px 0;
}

.values-section .section-heading{
    margin-bottom:70px;
}

.value-card{

    background: white;

    padding: 50px 40px;

    border-radius: 30px;

    box-shadow: var(--shadow);

    height: 100%;

    text-align: center;

    transition: var(--transition);

}

.value-card:hover{

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,.08);

}

.value-icon{
    color:var(--forest);
    font-size:2.5rem;
    margin-bottom:20px;
}

.value-card h3{

    color:var(--forest);

    margin-bottom:5px;

}

.value-card h5{

    color:var(--copper);

    margin-bottom:20px;

    font-weight:600;

}

/* ==========================================
   CREDENTIALS
========================================== */

.credentials-section{

    padding:120px 0;

    background:white;

}

.credentials-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{

    padding:120px 0;

    background:white;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:var(--cream);

    padding:40px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.testimonial-text{

    font-style:italic;

    margin-bottom:25px;

}
/* ==========================================
   FAQ
========================================== */

.faq-section{

padding:120px 0;

background:var(--cream);

}

.accordion{

max-width:900px;

margin:auto;

}

.accordion-item{

margin-bottom:20px;

border:none;

border-radius:15px;

overflow:hidden;

box-shadow:var(--shadow);

}

.accordion-button:not(.collapsed) {
    background-color: #edf5ef;   /* Light sage */
    color: var(--forest);
    box-shadow: none;
}
.accordion-button:hover {
    background-color: #f4f8f4;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(42, 93, 67, 0.15);
    border-color: transparent;
}
/* ==========================================
   FINAL CTA
========================================== */

.final-cta{

padding:140px 0;

background:

linear-gradient(

rgba(31,92,71,.82),

rgba(31,92,71,.82)

),

url("../images/background.png");

background-size:cover;

background-position:center;

color:white;

text-align:center;

}

.final-cta h2{

color:white;

font-size:3.2rem;

margin-bottom:25px;

}

.final-cta p{

max-width:700px;

margin:0 auto 40px;

font-size:1.2rem;

color:rgba(255,255,255,.9);

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

.site-footer{

    background:var(--forest-dark);

    color:rgba(255,255,255,.85);

    padding:80px 0 30px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-description{

    max-width:320px;

    color:rgba(255,255,255,.75);

}

.site-footer h5{

    color:var(--white);

    margin-bottom:20px;

}

.footer-links{

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:rgba(255,255,255,.8);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--copper-light);

}

.footer-divider{

    border-color:rgba(255,255,255,.15);

    margin:50px 0 25px;

}

.footer-bottom{

    text-align:center;

    font-size:.95rem;

    color:rgba(255,255,255,.6);

}