@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
    font-family: "Inter", sans-serif;
    Primary Green: #2D5A27
    Dark Green:    #1A2E1A
    Light Green:   #5A7A56
    BG Green:      #2D5A2714
    Accent Green:  #4CAF72
*/

/* ==================== BASE ==================== */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #FFFFFF;
    color: #1A2E1A;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ==================== TITLE COMPONENT ==================== */
.my_title_div {
    text-align: center;
}
.my_title_div h6 {
    background: #2D5A2714;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #2D5A27;
    padding: 5px 12px 5px 25px;
    border-radius: 20px;
    position: relative;
    max-width: max-content;
    margin: auto;
}
.my_title_div h6::before {
    content: "";
    background: #2D5A27;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 11px;
}
.my_title_div h5 {
    background: #2D5A2714;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #2D5A27;
    padding: 5px 12px 5px 25px;
    border-radius: 20px;
    position: relative;
    max-width: max-content;
}
.my_title_div h5::before {
    content: "";
    background: #2D5A27;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 11px;
}
.my_title_div h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.5px;
    color: #1A2E1A;
    margin-bottom: 0;
    margin-top: 12px;
}
.my_title_div p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #5A7A56;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ==================== REUSABLE ==================== */
.section_heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.4px;
    color: #1A2E1A;
    margin-top: 12px;
    margin-bottom: 16px;
}
.section_subtext {
    text-align: start !important;
}
.text_green {
    color: #2D5A27;
}
.text_underline {
    border-bottom: 2px solid #2D5A27;
}

/* ==================== GREEN BUTTON ==================== */
.btn_dark_green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2D5A27;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn_dark_green:hover {
    background: #1A2E1A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==================== BACK TO TOP ==================== */
#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: #2D5A27;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
@keyframes floatUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    animation: floatUpDown 1.6s ease-in-out infinite;
}
#backToTop:hover {
    animation-play-state: paused;
    background: #4CAF72;
}

/* ==================== TOAST ==================== */
.toast_box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #1A2E1A;
    border: 1px solid #4CAF72;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9998;
    transform: translateX(130%);
    transition: transform 0.4s ease;
}
.toast_box i {
    color: #4CAF72;
    font-size: 18px;
}
.toast_box.show {
    transform: translateX(0);
}

/* ==================== HEADER ==================== */
.header_section {
    background: #FFFFFFF2;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    transition: all 0.5s ease;
    padding: 4px 0;
    border-bottom: 1px solid #2D5A2726;
    backdrop-filter: blur(10px);
}
.header_section.scrolled {
    position: fixed;
    top: 0;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
}
.header_section .navbar {
    padding: 0;
}
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    filter: brightness(0);
}
.header_section .navbar ul li a {
    font-weight: 400;
    font-size: 15px;
    color: #1A2E1AB2 !important;
    letter-spacing: 0.2px;
}
.header_section .navbar .nav-link {
    position: relative;
    padding: 3px 0 6px 0;
}
.header_section .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #2D5A27;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.header_section .navbar .nav-link:hover {
    color: #2D5A27 !important;
}
.header_section .navbar .nav-link:hover::after,
.header_section .navbar .nav-link.active::after {
    transform: scaleX(1);
}
.nav_btns a button {
    background: #2D5A27;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    padding: 10px 22px;
    border: none;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}
.nav_btns a button:hover {
    background: #1A2E1A;
    transform: translateY(-1px);
}
.navbar-brand img {
    height: 60px;
    width: auto;
}

/* ==================== HERO SECTION ==================== */
.hero_section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background-image: url(../../assets/imgs/hero3.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.hero_section.service_hero{
    background-image: url(../../assets/imgs/section.svg);
}
/* .hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,46,26,0.82) 0%, rgba(45,90,39,0.60) 100%);
    z-index: 1;
} */
.hero_container {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    width: 100%;
    max-width: 900px;
}
.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.hero_badge_dot {
    width: 7px;
    height: 7px;
    background: #4CAF72;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse_dot 2s ease-in-out infinite;
}
@keyframes pulse_dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero_title {
    font-weight: 500;
    font-size: 56px;
    line-height: 68px;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 18px;
}
.hero_title_green {
    color: #4CAF72;
}
.hero_desc {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255,255,255,0.80);
    margin-bottom: 36px;
}
.hero_btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #1A2E1A;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.hero_btn_primary:hover {
    background: #f0f0f0;
    color: #1A2E1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.hero_btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.hero_btn_secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==================== SECTION ONE — Trust Cards ==================== */
.home_section_one {
    padding: 70px 0;
    background: #FFFFFF;
}
.trust_card {
    background: #F5FAF4;
    border: 1px solid #E2EFE0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45,90,39,0.10);
}
.trust_card_icon {
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #2D5A27;
    box-shadow: 0 2px 10px rgba(45,90,39,0.10);
}
.trust_card h5 {
    font-weight: 600;
    font-size: 16px;
    color: #1A2E1A;
    margin-bottom: 6px;
}
.trust_card p {
    font-size: 14px;
    color: #5A7A56;
    margin: 0;
}

/* ==================== SECTION TWO — Why Virgo Clean ==================== */
.home_section_two {
    padding: 80px 0;
    background: #FFFFFF;
}
.why_img_wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.why_trusted_badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #2D5A27;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0px 4px 6px -4px #0000001A;
}
.why_main_img {
    width: 100%;
    max-width: 520px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.why_small_img_wrap {
    position: absolute;
    bottom: -20px;
    right: -10px;
    z-index: 2;
}
.why_small_img {
    width: 170px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.why_small_img:hover {
    transform: scale(1.05);
}
.why_list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #1A2E1ACC;
    font-weight: 400;
}
.why_list li i {
    color: #2D5A27;
    font-size: 15px;
    flex-shrink: 0;
}
.why_list li span{
    background: #2D5A271A;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ==================== SECTION THREE — Difference ==================== */
.home_section_three {
    padding: 80px 0;
    background: #EEF5EC;
}
.diff_img_wrap {
    position: relative;
}
.diff_main_img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.diff_review_badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 180px;
    animation: float_badge 3s ease-in-out infinite;
}
@keyframes float_badge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.diff_review_badge .diff_review_stars i {
    color: #F5C843;
    font-size: 13px;
}
.diff_review_badge p {
    font-size: 14px;
    font-weight: 600;
    color: #1A2E1A;
    margin: 6px 0 2px;
}
.diff_review_badge span {
    font-size: 12px;
    color: #5A7A56;
}
.diff_profile_card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px 20px;
    margin: 24px 0 28px;
    box-shadow: 0 2px 16px rgba(45,90,39,0.08);
    border: 1px solid #E2EFE0;
}
.diff_profile_logo{
    border-right: 1px solid #2D5A2726;
    padding-right: 12px;
}
.diff_profile_logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.diff_profile_info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.diff_profile_info strong {
    font-size: 15px;
    font-weight: 400;
    color: #1A2E1A;
}
.diff_profile_info span {
    font-size: 13px;
    color: #5A7A56;
}
.diff_stars{
    display: flex;
    gap: 5px;
    align-items: center;
}
.diff_stars i {
    color: #F5C843;
    font-size: 13px;
}

/* ==================== SECTION FOUR — Services ==================== */
.home_section_four {
    padding: 80px 0;
    background: #FFFFFF;
}
.service_card {
    background: #FFFFFF;
    border: 1.5px solid #E2EFE0;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service_card::before{
    content: "";
    background: linear-gradient(90deg, rgba(0, 184, 219, 0.1) 0%, rgba(0, 187, 167, 0.05) 100%);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 6px;
    width: 100%;
}
.service_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45,90,39,0.12);
    border-color: #2D5A27;
}
.service_card_icon {
    width: 52px;
    height: 52px;
    background: #F5FAF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2D5A27;
    margin-bottom: 18px;
}
.service_card h5 {
    font-weight: 600;
    font-size: 16px;
    color: #1A2E1A;
    margin-bottom: 8px;
}
.service_card p {
    font-size: 14px;
    line-height: 22px;
    color: #5A7A56;
    margin-bottom: 18px;
}
.service_checklist_btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #2D5A27;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.service_checklist_btn:hover {
    gap: 10px;
}
.service_checklist_btn i {
    transition: transform 0.3s ease;
}
.service_checklist_btn.open i {
    transform: rotate(180deg);
}
.service_checklist {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.service_checklist.open {
    max-height: 200px;
    margin-top: 14px;
}
.service_checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service_checklist ul li {
    font-size: 13px;
    color: #1A2E1A;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service_checklist ul li::before {
    content: "✓";
    background: #2D5A27;
    color: #FFFFFF;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==================== SECTION FIVE — Reviews ==================== */
.home_section_five {
    padding: 80px 0;
    background: #1A2E1A;
}
.home_section_five .my_title_div h6 {
    background: #FFFFFF14;
    color: #FFFFFFB2;
    padding: 6px 15px 6px 15px;
    border-top: 1.19px solid #FFFFFF1A;
}
.home_section_five .my_title_div h6::before{
    content: unset;
}
.testimonial_swiper {
    margin-top: 40px;
    max-width: 640px;
    background: #FFFFFF0D;
    border: 1.19px solid #5EA500;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 25px 40px 50px 20px;
}
.testimonial_card_main {
    text-align: center;
    margin: 0 auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.testimonial_quote_icon {
    font-size: 42px;
    color: #4CAF72;
    opacity: 0.5;
    display: block;
    margin-bottom: 20px;
}
.testimonial_text {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 0px;
}
.testimonial_author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.testimonial_avatar {
    width: 44px;
    height: 44px;
    background: #4CAF72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}
.testimonial_author strong {
    display: block;
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 600;
}
.testimonial_stars i {
    color: #F5C843;
    font-size: 13px;
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.35) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: #4CAF72 !important;
    width: 22px !important;
    border-radius: 4px !important;
}
.mini_review_card {
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF1A;
    border-radius: 14px;
    padding: 18px 16px;
    transition: background 0.3s;
}
.mini_review_card:hover {
    background: rgba(255,255,255,0.10);
}
.mini_review_stars{
    display: flex;
    gap: 3px;
    align-items: center;
}
.mini_review_stars i {
    color: #F5C843;
    font-size: 12px;
}
.mini_review_card p {
    font-size: 13px;
    color: rgba(255,255,255,0.80);
    margin: 8px 0 4px;
    line-height: 20px;
}
.mini_review_card span {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
}
.reviews_google_link {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.reviews_google_link:hover {
    color: #4CAF72;
}

/* ==================== SECTION SIX — Promise ==================== */
.home_section_six {
    padding: 80px 0;
    background: #FFFFFF;
}
.promise_card {
    background: #F5FAF4;
    border: 1px solid #E2EFE0;
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promise_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45,90,39,0.10);
}
.promise_card_icon {
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2D5A27;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(45,90,39,0.08);
}
.promise_card h5 {
    font-weight: 600;
    font-size: 15px;
    color: #1A2E1A;
    margin-bottom: 6px;
}
.promise_card p {
    font-size: 13px;
    line-height: 20px;
    color: #5A7A56;
    margin: 0;
}

/* ==================== SECTION SEVEN — Meet Lindsey ==================== */
.home_section_seven {
    padding: 80px 0;
    background: #EEF5EC;
}
.home_sec7_right_text_main{
    width: 100%;
    max-width: 570px;
}
.meet_img_wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.meet_main_img {
    width: 100%;
    max-width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.meet_badge {
    position: absolute;
    bottom: -30px;
    left: 40px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.meet_badge_icon {
    width: 38px;
    height: 38px;
    background: #EEF5EC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2D5A27;
}
.meet_badge strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1A2E1A;
}
.meet_badge span {
    font-size: 12px;
    color: #5A7A56;
}
.meet_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.meet_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1A2E1A;
}
.meet_list li i {
    color: #2D5A27;
    font-size: 16px;
    flex-shrink: 0;
}

/* ==================== SECTION EIGHT — Gallery ==================== */
.home_section_eight {
    padding: 80px 0;
    background: #FFFFFF;
}
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 15px;
}
.gallery_item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}
.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery_item:hover img {
    transform: scale(1.08);
}
.gallery_overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,46,26,0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 26px;
    color: #FFFFFF;
}
.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

/* Lightbox */
.gallery_lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.gallery_lightbox.open {
    opacity: 1;
    visibility: visible;
}
.gallery_lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}
.lightbox_close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #FFFFFF;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.2s;
}
.lightbox_close:hover {
    color: #4CAF72;
}

/* ==================== SECTION NINE — Contact ==================== */
.home_section_nine {
    padding: 80px 0;
    background: #EEF5EC;
}
.quote_why_card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(45,90,39,0.08);
    border: 1px solid #E2EFE0;
}
.quote_why_card h5 {
    font-weight: 600;
    font-size: 16px;
    color: #1A2E1A;
    margin-bottom: 20px;
}
.quote_why_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.quote_why_item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.quote_why_icon {
    width: 38px;
    height: 38px;
    background: #F5FAF4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2D5A27;
    flex-shrink: 0;
}
.quote_why_item strong {
    font-size: 14px;
    font-weight: 600;
    color: #1A2E1A;
    display: block;
    margin-bottom: 2px;
}
.quote_why_item p {
    font-size: 13px;
    color: #5A7A56;
    margin: 0;
    line-height: 20px;
}
.quote_contact_card {
    background: #2D5A27;
    border-radius: 14px;
    padding: 20px 24px;
}
.quote_contact_card p {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.quote_contact_card a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #FFFFFFCC;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.quote_contact_card a:hover {
    color: #4CAF72;
}
.quote_form_card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(45,90,39,0.08);
    border: 1px solid #E2EFE0;
}
.quote_form_card h5 {
    font-weight: 600;
    font-size: 18px;
    color: #1A2E1A;
    margin-bottom: 24px;
}
.form_label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #1A2E1A;
    margin-bottom: 6px;
}
.required_star {
    color: #E53E3E;
}
.form_input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #2D5A2726;
    border-radius: 10px;
    color: #1A2E1A;
    background-color: #F5FAF4;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none !important;
    font-weight: 400;
    font-size: 16px;
}
.form_input:focus {
    border-color: #2D5A27;
    box-shadow: 0 0 0 3px rgba(45,90,39,0.10);
    background-color: #FFFFFF;
}
.form_input::placeholder {
    color: #9AB090;
}
.form_textarea {
    min-height: 120px;
    resize: vertical;
    font-weight: 400;
}
.quote_submit_btn {
    width: 100%;
    padding: 14px;
    background: #2D5A27;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0px 2px 4px -2px #2D5A2733;
}
.quote_submit_btn:hover {
    background: #1A2E1A;
    transform: translateY(-2px);
}
.quote_submit_btn:active {
    transform: translateY(0);
}
.quote_form_note {
    font-size: 12px;
    color: #9AB090;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ==================== FOOTER ==================== */
.footer_section {
    background: #1A2E1A;
    padding: 60px 0 0;
}
.footer_logo {
    display: block;
    margin-bottom: 16px;
    height: 55px;
    width: auto;
}
.footer_text2_inner1 {
    width: 100%;
    max-width: 300px;
}
.footer_text2_inner1 p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 22px;
}
.footer_social_logos {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer_social_logos a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.footer_social_logos a:hover {
    background: #2D5A27;
    color: #FFFFFF;
}
.footer_links_div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.footer_links_div h5 {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.footer_links_div a {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: max-content;
    transition: color 0.3s;
}
.footer_links_div a:hover {
    color: #4CAF72;
}
.footer_last_txt {
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer_last_txt p {
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 0;
}
.footer_links2 {
    display: flex;
    gap: 20px;
}
.footer_links2 a {
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    text-decoration: none;
    transition: color 0.3s;
}
.footer_links2 a:hover {
    color: #4CAF72;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero_title {
        font-size: 38px;
        line-height: 48px;
    }
    .why_main_img {
        height: 320px;
    }
    .diff_main_img {
        height: 340px;
    }
    .diff_review_badge {
        left: 10px;
    }
    .meet_main_img {
        height: 380px;
    }
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    .section_heading {
        font-size: 28px;
        line-height: 36px;
    }
}
@media (max-width: 768px) {
    .hero_title {
        font-size: 30px;
        line-height: 40px;
    }
    .hero_container {
        padding: 80px 0 60px;
    }
    .my_title_div h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 160px);
    }
    .testimonial_card_main {
        padding: 32px 24px;
    }
    .testimonial_text {
        font-size: 17px;
    }
    .why_small_img_wrap {
        display: none;
    }
}
@media (max-width: 576px) {
    .hero_btns {
        flex-direction: column;
    }
    .hero_btn_primary,
    .hero_btn_secondary {
        width: 100%;
        justify-content: center;
    }
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 140px);
        gap: 8px;
    }
    .quote_form_card {
        padding: 24px 18px;
    }
    .diff_review_badge {
        display: none;
    }
}

/* ==================== SERVICES PAGE ==================== */

/* --- Services Hero --- */
.services_hero_section {
    padding: 70px 0 50px;
    background: #FFFFFF;
    border-bottom: 1px solid #E2EFE0;
}

/* --- How It Works --- */
.services_how_section {
    padding: 80px 0;
    background: #FFFFFF;
}
.how_steps_wrap {
    margin-top: 54px;
}
.how_steps_row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
.how_step_connector {
    flex: 1;
    height: 2px;
    background: #E2EFE0;
    margin-top: 68px;
    max-width: 80px;
    position: relative;
}
.how_step_connector::after {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #C5DEC2;
}
.how_step_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    flex: 0 0 auto;
}
.how_step_circle_wrap {
    position: relative;
    margin-bottom: 20px;
}
.how_step_number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #2D5A27;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(45,90,39,0.30);
}
.how_step_circle {
    width: 102px;
    height: 102px;
    background: #FFFFFF;
    border: 2px solid #E8F5E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2D5A27;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    box-shadow: 0px 1px 2px -1px #0000001A;
}
.how_step_item:hover .how_step_circle {
    background: linear-gradient(135deg, #E8F5E3 0%, rgba(212, 237, 206, 0.5) 100%);
    border-color: rgba(212, 237, 206);
    color: #FFFFFF;
    transform: scale(1.07);
}
.how_step_item h5 {
    font-weight: 600;
    font-size: 15px;
    color: #1A2E1A;
    margin-bottom: 8px;
}
.how_step_item p {
    font-size: 13px;
    line-height: 20px;
    color: #5A7A56;
    margin: 0;
}

/* --- Service Detail Sections --- */
.service_detail_section {
    padding: 90px 0;
}
.service_detail_white {
    background: #FFFFFF;
}
.service_detail_green {
    background: #EEF5EC;
}

/* Image Wrap */
.service_detail_img_wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.service_detail_num {
    position: absolute;
    top: -20px;
    right: 35px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #00BC7D 0%, #00A63E 100%);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
    letter-spacing: 0.5px;
}
.service_detail_main_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    max-width: 600px;
}
.service_detail_small_img_wrap {
    position: absolute;
    bottom: 40px;
    left: -30px;
    z-index: 2;
}
.service_detail_small_right {
    left: auto;
    right: -30px;
}
.service_detail_small_img {
    width: 100%;
    max-width: 280px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    transition: transform 0.3s ease;
}
.service_detail_small_img:hover {
    transform: scale(1.06);
}
.service_column_text_main{
    width: 100%;
    max-width: 560px;
}
/* Info Side */
.service_detail_label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.service_detail_label_icon {
    width: 38px;
    height: 38px;
    background: #F5FAF4;
    border: 1px solid #E2EFE0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2D5A27;
}
.service_detail_label span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #5A7A56;
    background: #2D5A2714;
    padding: 4px 12px;
    border-radius: 20px;
}
.service_detail_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.5px;
    color: #1A2E1A;
    margin-bottom: 6px;
}
.service_detail_tagline {
    font-size: 15px;
    font-style: italic;
    color: #5A7A56;
    margin-bottom: 16px;
}
.service_detail_desc {
    font-size: 16px;
    line-height: 27px;
    color: #3D5E3A;
    margin-bottom: 28px;
}

/* What's Included Box */
.service_included_box {
    background: #F5FAF4;
    border: 1px solid #D6EDD2;
    border-radius: 16px;
    padding: 22px 24px 16px;
    margin-bottom: 28px;
}
.service_included_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.service_included_header i {
    font-size: 18px;
    color: #2D5A27;
}
.service_included_header strong {
    font-size: 15px;
    font-weight: 600;
    color: #1A2E1A;
}
.service_included_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 12px;
}
.service_included_list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 21px;
    color: #3D5E3A;
}
.service_included_list li i {
    color: #2D5A27;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA Button (full-width in service sections) */
.service_detail_cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #2D5A27;
    color: #FFFFFF;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.service_detail_cta_btn:hover {
    background: #1A2E1A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* GET STARTED */

.get_started_section{
    background: #1A2E1A;
    padding: 60px 0px;
}
.get_started_text_inner{
    width: 100%;
    max-width: 650px;
    margin: auto;
}
.get_started_text_inner h6{
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: #FFFFFF14;
    color: #FFFFFFB2;
    padding: 6px 15px 6px 15px;
    border-top: 1.19px solid #FFFFFF1A;
    border-radius: 20px;
    position: relative;
    max-width: max-content;
    margin: auto;
}
.get_started_text_inner h1{
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 15px;
}
.get_started_text_inner h1 span{
    color: #7BF1A8;
}
.get_started_text_inner p{
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF80;
}

/* --- Guarantee Section --- */
.services_guarantee_section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}
.services_guarantee_section .my_title_div h5{
    padding: 7px 16px;
}
.services_guarantee_section .my_title_div h5::before{
    content: unset;
}
.guarantee_card {
    background: #EEF5EC;
    border-radius: 24px;
    padding: 50px 50px;
    border: 1px solid #D6EDD2;
}
.guarantee_title {
    font-weight: 700;
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -0.5px;
    color: #1A2E1A;
    margin-top: 12px;
    margin-bottom: 14px;
}
.guarantee_desc {
    font-size: 16px;
    line-height: 27px;
    color: #3D5E3A;
    margin-bottom: 24px;
}
.guarantee_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.guarantee_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid #C5DEC2;
    color: #2D5A27;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 30px;
}
.guarantee_tag i {
    font-size: 14px;
}
.guarantee_review_card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 24px rgba(45,90,39,0.10);
    text-align: center;
}
.guarantee_quote_icon {
    font-size: 36px;
    color: #C5DEC2;
    display: block;
    margin-bottom: 12px;
}
.guarantee_review_card p {
    font-size: 16px;
    line-height: 26px;
    color: #1A2E1A;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 14px;
}
.guarantee_review_stars i {
    color: #F5C843;
    font-size: 16px;
}
.guarantee_review_card span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #5A7A56;
}

/* --- Services Page Responsive --- */
@media (max-width: 992px) {
    .how_steps_row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }
    .how_step_connector {
        display: none;
    }
    .how_step_item {
        max-width: 160px;
    }
    .service_detail_main_img {
        height: 360px;
    }
    .service_detail_title {
        font-size: 28px;
    }
    .guarantee_card {
        padding: 36px 28px;
    }
    .guarantee_title {
        font-size: 26px;
    }
    .service_detail_small_img_wrap {
        display: none;
    }
}
@media (max-width: 768px) {
    .service_detail_section {
        padding: 60px 0;
    }
    .service_detail_main_img {
        height: 280px;
    }
    .guarantee_card {
        padding: 28px 20px;
    }
    .how_steps_row {
        gap: 24px;
    }
}
@media (max-width: 576px) {
    .how_step_item {
        max-width: 140px;
    }
    .how_step_circle {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }
    .service_detail_title {
        font-size: 24px;
        line-height: 32px;
    }
    .service_detail_cta_btn {
        font-size: 15px;
    }
}


/* ==================== FAQ PAGE ==================== */

/* --- FAQ Hero --- */
.faq_hero_section {
    background: #2D5A27;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faq_hero_section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.faq_hero_section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.faq_hero_inner {
    position: relative;
    z-index: 2;
}
.faq_hero_label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #4CAF72;
    margin-bottom: 14px;
}
.faq_hero_title {
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.faq_hero_desc {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255,255,255,0.70);
    margin: 0;
}

/* --- FAQ Questions Section --- */
.faq_questions_section {
    padding: 70px 0 60px;
    background: #FFFFFF;
}
.faq_section_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.faq_section_icon {
    width: 42px;
    height: 42px;
    background: #F5FAF4;
    border: 1px solid #E2EFE0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2D5A27;
    flex-shrink: 0;
}
.faq_section_header h3 {
    font-weight: 600;
    font-size: 22px;
    color: #1A2E1A;
    margin: 0;
}

/* --- Accordion --- */
.faq_accordion_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq_accordion_item {
    border: 1.5px solid #E2EFE0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
}
.faq_accordion_item:hover {
    border-color: #C5DEC2;
    box-shadow: 0 4px 16px rgba(45,90,39,0.07);
}
.faq_accordion_item.open {
    border-color: #2D5A27;
    box-shadow: 0 4px 20px rgba(45,90,39,0.10);
}
.faq_accordion_btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: "Inter", sans-serif;
    transition: background 0.2s;
}
.faq_accordion_btn:hover {
    background: #F5FAF4;
}
.faq_accordion_item.open .faq_accordion_btn {
    background: #F5FAF4;
}
.faq_accordion_btn span {
    font-weight: 500;
    font-size: 15px;
    color: #1A2E1A;
    line-height: 22px;
}
.faq_chevron {
    font-size: 16px;
    color: #5A7A56;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.3s;
}
.faq_accordion_item.open .faq_chevron {
    transform: rotate(180deg);
    color: #2D5A27;
}
.faq_accordion_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq_accordion_body p {
    font-size: 15px;
    line-height: 25px;
    color: #5A7A56;
    padding: 0 22px 20px;
    margin: 0;
}
.faq_accordion_body p a {
    color: #2D5A27;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Still have questions */
.faq_still_questions {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.faq_still_questions p {
    font-size: 15px;
    color: #5A7A56;
    margin: 0;
}

/* --- Terms & Conditions --- */
.faq_terms_section {
    padding: 60px 0;
    background: #EEF5EC;
}
.faq_terms_card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 36px 10px;
    box-shadow: 0 2px 20px rgba(45,90,39,0.07);
    border: 1px solid #E2EFE0;
}
.faq_terms_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2EFE0;
}
.faq_terms_header i {
    font-size: 22px;
    color: #2D5A27;
}
.faq_terms_header h3 {
    font-weight: 600;
    font-size: 20px;
    color: #1A2E1A;
    margin: 0;
}
.faq_terms_item {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #F0F7EE;
}
.faq_terms_last {
    border-bottom: none;
    margin-bottom: 0;
}
.faq_terms_item h5 {
    font-weight: 600;
    font-size: 15px;
    color: #1A2E1A;
    margin-bottom: 8px;
}
.faq_terms_item p {
    font-size: 14px;
    line-height: 23px;
    color: #5A7A56;
    margin: 0;
}

/* --- Share the Clean --- */
.faq_share_section {
    padding: 70px 0 60px;
    background: #FFFFFF;
}
.share_card {
    background: #EEF5EC;
    border: 1px solid #D6EDD2;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.share_card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: rgba(45,90,39,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.share_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(45,90,39,0.12);
}
.share_card_icon {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2D5A27;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(45,90,39,0.10);
}
.share_card h4 {
    font-weight: 600;
    font-size: 20px;
    color: #1A2E1A;
    margin-bottom: 12px;
}
.share_card p {
    font-size: 15px;
    line-height: 25px;
    color: #3D5E3A;
    margin-bottom: 24px;
}
.share_card_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1A2E1A;
    text-decoration: none;
    border-bottom: 2px solid #2D5A27;
    padding-bottom: 2px;
    transition: color 0.3s, gap 0.2s;
}
.share_card_link:hover {
    color: #2D5A27;
    gap: 10px;
}
/* override for green button variant inside share card */
.share_card .btn_dark_green {
    border-bottom: none;
    padding: 11px 22px;
    color: #FFFFFF;
    border-radius: 10px;
}
.share_card .btn_dark_green:hover {
    color: #FFFFFF;
}

/* --- CTA Banner --- */
.faq_cta_banner {
    background: #2D5A27;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faq_cta_banner::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.faq_cta_banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.faq_cta_inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.faq_cta_inner h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.faq_cta_inner p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 30px;
}
.faq_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #1A2E1A;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.faq_cta_btn:hover {
    background: #f0f0f0;
    color: #1A2E1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* --- FAQ Page Responsive --- */
@media (max-width: 768px) {
    .faq_hero_title {
        font-size: 32px;
        line-height: 42px;
    }
    .faq_hero_section {
        padding: 60px 0 50px;
    }
    .faq_terms_card {
        padding: 24px 20px 10px;
    }
    .faq_cta_inner h2 {
        font-size: 26px;
        line-height: 36px;
    }
    .share_card {
        padding: 26px 22px;
    }
}
@media (max-width: 576px) {
    .faq_hero_title {
        font-size: 26px;
        line-height: 34px;
    }
    .faq_accordion_btn span {
        font-size: 14px;
    }
    .section_heading br{
        display: none;
    }
    .why_trusted_badge {
        position: absolute;
        top: -9px;
        left: 0px;
    }
}
