
:root {
  --primary: #16A34A;
  --secondary: #22C55E;
  --accent: #4ADE80;

  --background: #F0FDF4;
  --surface: #FFFFFF;

  --text-primary: #052E16;
  --text-secondary: #166534;

  --border: #BBF7D0;
}

/* SECTION */
.about-section {
    padding: 80px 0;
    background: var(--background);
}

/* TEXT */
.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

/* BUTTON */
.call-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.call-btn:hover {
    background: var(--secondary);
    color: #fff;
}

/* IMAGE */
.about-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    object-fit: cover;
    border: 1px solid var(--border);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-content h2 {
        font-size: 2rem;
    }
}




:root {
    --primary: #16A34A;
    --secondary: #22C55E;
    --accent: #4ADE80;
    --background: #F0FDF4;
    --surface: #FFFFFF;
    --text-primary: #052E16;
    --text-secondary: #166534;
    --border: #BBF7D0;
    --dark: #052E16;
    --gray: #166534;
    --light: #F0FDF4;
    --white: #FFFFFF;
}

/* SECTION */
.services-section {
    padding: 80px 0;
    background: var(--background);
}

/* HEADING */
.services-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.services-subtitle {
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.7;
}

/* CARD */
.service-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(22,163,74,0.15);
}

/* IMAGE */
.service-img {
    height: 210px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* BODY */
.service-body {
    padding: 22px;
    text-align: center;
}

.service-body h4 {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* PROFESSIONAL SMALL WHATSAPP BUTTON */
.whatsapp-center {
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(37,211,102,0.2);
}

.whatsapp-btn i {
    font-size: 14px;
}



/* RESPONSIVE */
@media(max-width: 768px){
    .services-title {
        font-size: 2rem;
    }
    .whatsapp-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
    .whatsapp-btn i {
        font-size: 13px;
    }
}

@media(max-width: 480px){
    .whatsapp-btn {
        padding: 6px 16px;
        font-size: 11px;
    }
    .whatsapp-btn i {
        font-size: 12px;
    }
}

:root {
  --primary: #16A34A;
  --secondary: #22C55E;
  --accent: #4ADE80;
  --background: #F0FDF4;
  --surface: #FFFFFF;
  --text-primary: #052E16;
  --text-secondary: #166534;
  --border: #BBF7D0;
}

/* SECTION */
.section {
    padding: 80px 0;
    background: var(--background);
}

/* ALT BACKGROUND */
.section.alt {
    background: var(--surface);
}

/* FIXED BACKGROUND SECTION */
.fixed-bg-section {
    background-image: url('images/fixed-bg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 100px 0;
}

.fixed-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 46, 22, 0.75);
    z-index: 1;
}

.fixed-bg-section .container {
    position: relative;
    z-index: 2;
}

.fixed-bg-section h2,
.fixed-bg-section p {
    color: white;
}

/* TEXT */
.section h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* IMAGE */
.section img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

/* WHY CHOOSE - SIMPLE STYLE */
.why-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.why-box h5 {
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.why-box p {
    font-size: 14px;
    margin-bottom: 0;
}

.why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* BUTTON */
.call-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.call-btn:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

/* RESPONSIVE */
@media(max-width:768px){
    .section h2 { font-size: 1.8rem; }
    .fixed-bg-section {
        background-attachment: scroll;
        padding: 60px 0;
    }
}


:root {
  --primary: #16A34A;
  --background: #F0FDF4;
  --surface: #FFFFFF;
  --text-primary: #052E16;
  --text-secondary: #166534;
  --border: #BBF7D0;
}

/* SECTION */
.faq-section {
    padding: 80px 20px;
    background: var(--background);
}

/* LAYOUT */
.faq-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* HEADING */
.faq-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* FAQ ITEM */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

/* ICON */
.faq-icon {
    font-size: 18px;
    color: var(--primary);
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon::before {
    content: "\f068"; /* minus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.faq-icon::before {
    content: "\2b"; /* plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* IMAGE */
.faq-image img {
    width: 100%;
    border-radius: 16px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .faq-container {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 1.8rem;
        text-align: center;
    }
}




:root {
  --primary: #16A34A;
  --background: #F0FDF4;
  --surface: #FFFFFF;
  --text-primary: #052E16;
  --text-secondary: #166534;
  --border: #BBF7D0;
}

/* SECTION */
.faq-section {
    padding: 80px 20px;
    background: var(--background);
}

/* CONTAINER */
.faq-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT */
.faq-left {
    flex: 1;
}

/* RIGHT IMAGE */
.faq-image {
    flex: 1;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* HEADING */
.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
}

/* FAQ ITEM */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    padding: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ICON */
.faq-icon i {
    color: var(--primary);
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 120px;
    padding: 10px 15px 15px;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

/* RESPONSIVE */
@media(max-width:768px){
    .faq-container {
        flex-direction: column;
    }

    .faq-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .faq-image {
        height: 250px;
    }
}
