/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 400;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    color: #000;
    font-weight: 700;
}

a {
    color: #3bed38;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #2bc82a;
    opacity: 0.9;
}

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

/* ============================================
   UNIFORM SPACING VARIABLES
   ============================================ */
:root {
    --section-padding: 60px 0;
    --row-padding: 30px 0;
    --heading-margin: 0 0 20px 0;
    --paragraph-margin: 0 0 18px 0;
    --button-padding: 12px 30px;
    --content-font-size: 16px;
    --content-line-height: 1.9em;
}

/* ============================================
   HEADER
   ============================================ */
.et_pb_section_0_tb_header {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.et_pb_row_0_tb_header {
    padding: 4px 0;
}

.et_pb_column_0_tb_header {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 10;
    position: relative;
}

.et_pb_menu_0_tb_header {
    padding-right: 10px;
    padding-left: 10px;
}

.et_pb_menu_0_tb_header .et_pb_menu_inner_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.et_pb_menu_0_tb_header .et_pb_menu__logo-wrap {
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.et_pb_menu_0_tb_header .et_pb_menu__logo-wrap img {
    border-radius: 20px;
    height: auto;
    max-height: 58px;
    width: auto;
    transition: transform 0.3s ease;
}

.et_pb_menu_0_tb_header .et_pb_menu__logo-wrap img:hover {
    transform: scale(1.02);
}

.et_pb_menu_0_tb_header .et_pb_menu__wrap {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.et_pb_menu_0_tb_header .et_pb_menu__menu {
    display: flex;
}

.et_pb_menu_0_tb_header .et-menu-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li {
    padding: 0 12px;
    position: relative;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: #000000 !important;
    text-decoration: none;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3bed38;
    transition: width 0.3s ease;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li a:hover::after,
.et_pb_menu_0_tb_header .et-menu-nav ul li.current-menu-item a::after {
    width: 100%;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li a:hover {
    color: #3bed38 !important;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li.current-menu-item a {
    color: #3bed38 !important;
}

/* Dropdown */
.et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu {
    background: #FFFFFF;
    display: none;
    position: absolute;
    list-style: none;
    padding: 10px 0;
    min-width: 310px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    top: 100%;
    left: 0;
    z-index: 100;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li:hover ul.sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li {
    padding: 0;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li a {
    padding: 8px 20px;
    color: rgba(0, 0, 0, 0.7) !important;
    font-weight: 400;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li a::after {
    display: none;
}

.et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li a:hover {
    background: #f0faf0;
    color: #3bed38 !important;
}

/* Mobile Menu */
.et_mobile_nav_menu {
    display: none;
}

.mobile_menu_bar {
    font-size: 28px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile_menu_bar:hover {
    color: #3bed38;
}

@media (max-width: 980px) {
    .et_pb_menu_0_tb_header .et_pb_menu__menu {
        display: none;
    }
    .et_mobile_nav_menu {
        display: block;
    }
    .et_pb_menu_0_tb_header .et_pb_menu_inner_container {
        flex-wrap: wrap;
    }
}

/* ============================================
   MOBILE MENU OVERRIDES
   ============================================ */
@media (max-width: 980px) {
    .et_pb_menu_0_tb_header .et_pb_menu__wrap {
        flex: 1;
        justify-content: flex-end;
    }
    
    .et_pb_menu_0_tb_header .et_pb_menu_inner_container {
        flex-wrap: wrap;
    }
    
    .et_pb_menu_0_tb_header .et_pb_menu__logo-wrap {
        flex: 1;
    }
    
    .mobile_nav {
        display: block;
    }
    
    .et_mobile_nav_menu {
        display: block !important;
    }
    
    /* Mobile menu dropdown styles */
    .et_pb_menu_0_tb_header .et_pb_menu__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        z-index: 999;
        border-radius: 0 0 8px 8px;
        display: none;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .et_pb_menu_0_tb_header .et_pb_menu__menu.open {
        display: block !important;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul {
        flex-direction: column;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li {
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li:last-child {
        border-bottom: none;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    /* Mobile sub-menu */
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: #f8faf8 !important;
        opacity: 1 !important;
        transform: none !important;
        display: none !important;
        width: 100%;
        border-left: 3px solid #3bed38;
        margin: 0 !important;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu.open {
        display: block !important;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li:last-child {
        border-bottom: none;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li a {
        padding: 10px 20px 10px 30px !important;
        font-size: 14px !important;
        background: transparent !important;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li ul.sub-menu li a:hover {
        background: #f0faf0 !important;
    }
    
    .et_pb_menu_0_tb_header .et-menu-nav ul li a:after {
        display: none;
    }
}

.mobile_nav.open .mobile_menu_bar {
    color: #3bed38;
}

.mobile_nav.open .mobile_menu_bar:before {
    content: '✕';
}

.mobile_nav.closed .mobile_menu_bar:before {
    content: '☰';
}

.mobile_menu_bar {
    font-size: 28px !important;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    user-select: none;
}

.mobile_menu_bar:hover {
    color: #3bed38;
}

/* ============================================
   HERO SECTION
   ============================================ */
.et_pb_section_0 {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, #000000 100%), url('/component/home.jpg');
    background-size: cover;
    background-position: center;
    padding: 5vw 0;
    background-color: #000000;
    position: relative;
}

.et_pb_section_0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}

.et_pb_section_0 .container {
    position: relative;
    z-index: 1;
}

.et_pb_heading_0 h1 {
    font-weight: 800;
    font-size: 76px;
    color: #FFFFFF;
    line-height: 1.1em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.et_pb_heading_0 {
    margin-bottom: 20px;
    max-width: 900px;
}

.et_pb_heading_1 h2 {
    font-weight: 700;
    font-size: 36px;
    color: #3bed38;
    line-height: 1.1em;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.et_pb_heading_1 {
    margin-bottom: 18px;
    max-width: 900px;
}

.et_pb_text_0 {
    max-width: 900px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 22px;
}

.et_pb_text_0 p {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 0;
}

.et_pb_button_0 {
    color: #FFFFFF !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    padding: 12px 30px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(59, 237, 56, 0.4);
}

.et_pb_button_0:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 237, 56, 0.5);
    background: linear-gradient(135deg, #2bc82a, #1fb01e);
    color: #FFFFFF !important;
}

/* ============================================
   ALL SECTIONS - UNIFORM PADDING
   ============================================ */
.et_pb_section_1,
.et_pb_section_2,
.et_pb_section_3,
.et_pb_section_4,
.et_pb_section_5,
.et_pb_section_6,
.et_pb_section_7,
.et_pb_section_8 {
    padding: 60px 0;
}

/* ============================================
   ALL ROWS - UNIFORM PADDING
   ============================================ */
.et_pb_row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
}

.et_pb_row_1,
.et_pb_row_2,
.et_pb_row_8 {
    align-items: center;
}

/* ============================================
   ALL HEADINGS - UNIFORM SIZES & MARGINS
   ============================================ */
/* H1 - Hero only */
.et_pb_heading_0 h1 {
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

/* H2 - All section titles */
.et_pb_heading_2 h2,
.et_pb_heading_4 h3,
.et_pb_heading_5 h2,
.et_pb_heading_6 h2,
.et_pb_heading_7 h2,
.et_pb_heading_8 h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2em;
    margin-bottom: 20px;
    color: #000000 !important;
}

.et_pb_heading_4 h3 {
    font-size: 48px;
    color: #000000 !important;
}

/* H3 - Sub headings */
.et_pb_heading_3 h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 18px;
    color: #000000 !important;
}

/* H4 - Card titles */
.et_pb_blurb_0 .et_pb_module_header,
.et_pb_blurb_1 .et_pb_module_header,
.et_pb_blurb_2 .et_pb_module_header {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4em;
    margin-top: 15px;
    color: #000000;
}

/* ============================================
   ALL CONTENT TEXT - UNIFORM FONT SIZE & SPACING
   ============================================ */
.et_pb_text_1,
.et_pb_text_2,
.et_pb_text_3,
.et_pb_text_4,
.et_pb_text_5,
.et_pb_text_6,
.et_pb_text_7,
.et_pb_text_8 {
    font-size: 16px;
    line-height: 1.9em;
    color: #000000;
}

.et_pb_text_1 p,
.et_pb_text_2 p,
.et_pb_text_3 p,
.et_pb_text_4 p,
.et_pb_text_5 p,
.et_pb_text_6 p,
.et_pb_text_7 p,
.et_pb_text_8 p {
    font-size: 16px;
    line-height: 1.9em;
    margin-bottom: 18px;
    color: #000000;
}

.et_pb_text_1 p:last-child,
.et_pb_text_2 p:last-child,
.et_pb_text_3 p:last-child,
.et_pb_text_4 p:last-child,
.et_pb_text_5 p:last-child,
.et_pb_text_6 p:last-child,
.et_pb_text_7 p:last-child,
.et_pb_text_8 p:last-child {
    margin-bottom: 0;
}

/* ============================================
   LINKS - GREEN HIGHLIGHT
   ============================================ */
.et_pb_text_1 a,
.et_pb_text_2 a,
.et_pb_text_3 a,
.et_pb_text_4 a,
.et_pb_text_5 a,
.et_pb_text_6 a,
.et_pb_text_7 a,
.et_pb_text_8 a {
    color: #3bed38;
    font-weight: 600;
    text-decoration: underline;
}

.et_pb_text_1 a:hover,
.et_pb_text_2 a:hover,
.et_pb_text_3 a:hover,
.et_pb_text_4 a:hover,
.et_pb_text_5 a:hover,
.et_pb_text_6 a:hover,
.et_pb_text_7 a:hover,
.et_pb_text_8 a:hover {
    color: #2bc82a;
}

/* ============================================
   ALL BUTTONS - UNIFORM SIZE
   ============================================ */
.et_pb_button_0,
.et_pb_button_1,
.et_pb_button_2,
.et_pb_button_3 {
    color: #FFFFFF !important;
    border-radius: 50px;
    font-size: 15px;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    padding: 12px 30px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 237, 56, 0.3);
}

.et_pb_button_0:hover,
.et_pb_button_1:hover,
.et_pb_button_2:hover,
.et_pb_button_3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 237, 56, 0.4);
    background: linear-gradient(135deg, #2bc82a, #1fb01e);
    color: #FFFFFF !important;
}

.et_pb_button_4 {
    color: #FFFFFF !important;
    border-radius: 50px;
    font-size: 16px;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    padding: 16px 40px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 25px rgba(59, 237, 56, 0.35);
}

.et_pb_button_4:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(59, 237, 56, 0.5);
    background: linear-gradient(135deg, #2bc82a, #1fb01e);
    color: #FFFFFF !important;
}

.et_pb_button_wrapper {
    margin-top: 5px;
}

.et_pb_button_alignment_center {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   IMAGES - UNIFORM STYLING
   ============================================ */
.et_pb_image_0 img,
.et_pb_image_1 img,
.et_pb_image_2 img,
.et_pb_image_3 img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.et_pb_image_0 img:hover,
.et_pb_image_1 img:hover,
.et_pb_image_2 img:hover,
.et_pb_image_3 img:hover {
    transform: scale(1.02);
}

/* ============================================
   TREATMENTS TITLE - WITH UNDERLINE
   ============================================ */
.et_pb_heading_4::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3bed38, #2bc82a);
    margin: 15px auto 0;
    border-radius: 2px;
}

.et_pb_heading_7::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3bed38, #2bc82a);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================
   BLURB / TREATMENT CARDS
   ============================================ */
.et_pb_row_4 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.et_pb_blurb_0,
.et_pb_blurb_1,
.et_pb_blurb_2 {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.et_pb_blurb_0:hover,
.et_pb_blurb_1:hover,
.et_pb_blurb_2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(59, 237, 56, 0.15);
    border-color: #3bed38;
}

.et_pb_blurb_0 .et_pb_blurb_content,
.et_pb_blurb_1 .et_pb_blurb_content,
.et_pb_blurb_2 .et_pb_blurb_content {
    text-align: center;
    max-width: 100%;
}

.et_pb_blurb_0 .et_pb_module_header span,
.et_pb_blurb_1 .et_pb_module_header span,
.et_pb_blurb_2 .et_pb_module_header span {
    color: #3bed38;
}

.et_pb_blurb_0 .et_pb_main_blurb_image img,
.et_pb_blurb_1 .et_pb_main_blurb_image img,
.et_pb_blurb_2 .et_pb_main_blurb_image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.et_pb_blurb_0:hover .et_pb_main_blurb_image img,
.et_pb_blurb_1:hover .et_pb_main_blurb_image img,
.et_pb_blurb_2:hover .et_pb_main_blurb_image img {
    transform: scale(1.03);
}

.et_pb_column_1_3 {
    width: 31%;
    float: left;
    padding: 0 5px;
}

/* ============================================
   DETAILED CONTENT - UNIFORM
   ============================================ */
.et_pb_text_3 ul {
    padding-left: 25px;
    margin: 15px 0;
}

.et_pb_text_3 ul li {
    margin-bottom: 10px;
    line-height: 1.8em;
    color: #000000;
}

.et_pb_text_3 ul li strong {
    color: #000000;
    font-weight: 700;
}

.et_pb_text_3 h2 {
    font-weight: 800;
    font-size: 32px;
    color: #000000;
    margin: 30px 0 15px;
    line-height: 1.3em;
}

.et_pb_text_3 h2 strong {
    color: #000000;
}

/* ============================================
   FACILITIES LIST - UNIFORM
   ============================================ */
.et_pb_text_5 ul {
    padding-left: 25px;
    list-style: none;
}

.et_pb_text_5 ul li {
    padding: 8px 0 8px 35px;
    position: relative;
    line-height: 1.8em;
    color: #000000;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.et_pb_text_5 ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3bed38;
    font-weight: 700;
    font-size: 18px;
}

.et_pb_text_5 ul li:last-child {
    border-bottom: none;
}

/* ============================================
   BLOG - UNIFORM
   ============================================ */
.et_pb_blog_0 .et_pb_post {
    border: 1px solid #e8f0e8;
    background: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.et_pb_blog_0 .et_pb_post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 237, 56, 0.12);
    border-color: #3bed38;
}

.et_pb_blog_0 .et_pb_post .entry-title {
    font-size: 20px !important;
    line-height: 1.4em !important;
    font-weight: 700;
    margin: 10px 0;
}

.et_pb_blog_0 .et_pb_post .entry-title a {
    color: #000000;
    transition: color 0.3s ease;
}

.et_pb_blog_0 .et_pb_post .entry-title a:hover {
    color: #3bed38;
}

.et_pb_blog_0 .et_pb_post .post-meta {
    text-transform: uppercase;
    font-size: 13px;
    color: #b4a07b !important;
}

.et_pb_blog_0 .et_pb_post .post-meta a {
    color: #b4a07b !important;
}

.et_pb_blog_0 .et_pb_post div.post-content a.more-link {
    text-transform: uppercase;
    color: #3bed38 !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.et_pb_blog_0 .et_pb_post div.post-content a.more-link:hover {
    color: #2bc82a !important;
}

.et_pb_blog_0 .et_pb_image_container img {
    max-width: 100%;
    height: auto;
    min-width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.et_pb_blog_0 .et_pb_post:hover .et_pb_image_container img {
    transform: scale(1.02);
}

.et_pb_salvattore_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   CONCLUSION SECTION
   ============================================ */
.et_pb_section_9 {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, #000000 100%), url('/component/section.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.et_pb_section_9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

.et_pb_section_9 .container {
    position: relative;
    z-index: 1;
}

.et_pb_heading_8 h2 {
    font-weight: 800;
    font-size: 48px;
    color: #FFFFFF !important;
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 20px;
}

.et_pb_text_8 {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    line-height: 1.9em;
    max-width: 900px;
    margin: 0 auto;
}

.et_pb_text_8 p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.9em;
    margin-bottom: 18px;
}

.et_pb_text_8 p:last-child {
    margin-bottom: 0;
}

.et_pb_text_8 a {
    color: #3bed38;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   COLUMN LAYOUTS
   ============================================ */
.et_pb_column_4_4 {
    width: 100%;
    padding: 0 15px;
}

.et_pb_column_1_2 {
    width: 50%;
    float: left;
    padding: 0 15px;
}

.et_pb_column_2_3 {
    width: 66.66%;
    float: left;
    padding: 0 15px;
}

.et_pb_equal_columns {
    display: flex;
    align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.et_pb_section_0_tb_footer {
    background-color: #0a0a0a;
    padding: 20px 0 0;
}

.et_pb_row_0_tb_footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

.et_pb_heading_0_tb_footer h5,
.et_pb_heading_1_tb_footer h5,
.et_pb_heading_2_tb_footer h5 {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF !important;
    line-height: 1.4em;
    margin-bottom: 15px;
    position: relative;
}

.et_pb_heading_0_tb_footer h5::after,
.et_pb_heading_1_tb_footer h5::after,
.et_pb_heading_2_tb_footer h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #3bed38;
    margin-top: 10px;
    border-radius: 2px;
}

.et_pb_heading_0_tb_footer,
.et_pb_heading_1_tb_footer,
.et_pb_heading_2_tb_footer {
    margin-bottom: 15px;
}

.et_pb_text_0_tb_footer,
.et_pb_text_1_tb_footer,
.et_pb_text_2_tb_footer,
.et_pb_text_3_tb_footer,
.et_pb_text_4_tb_footer,
.et_pb_text_5_tb_footer,
.et_pb_text_6_tb_footer {
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 8px;
    font-size: 15px;
}

.et_pb_text_0_tb_footer ul {
    list-style: none;
    padding-left: 0;
}

.et_pb_text_0_tb_footer ul li {
    padding: 6px 0;
    line-height: 1.8em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.et_pb_text_0_tb_footer ul li:last-child {
    border-bottom: none;
}

.et_pb_text_0_tb_footer ul li a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.et_pb_text_0_tb_footer ul li a:hover {
    color: #3bed38 !important;
    padding-left: 5px;
}

.et_pb_text_1_tb_footer p,
.et_pb_text_2_tb_footer p,
.et_pb_text_3_tb_footer p,
.et_pb_text_4_tb_footer p {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
}

.et_pb_text_1_tb_footer p:hover,
.et_pb_text_2_tb_footer p:hover,
.et_pb_text_3_tb_footer p:hover,
.et_pb_text_4_tb_footer p:hover {
    color: #3bed38 !important;
    padding-left: 5px;
}

.et_pb_text_5_tb_footer p,
.et_pb_text_6_tb_footer p {
    color: rgba(255,255,255,0.8) !important;
}

.et_pb_text_6_tb_footer a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.et_pb_text_6_tb_footer a:hover {
    color: #3bed38 !important;
}

.et_pb_social_media_follow {
    list-style: none;
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding: 0;
}

.et_pb_social_media_follow li {
    display: inline-block;
}

.et_pb_social_media_follow li a.icon {
    height: 38px;
    width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.et_pb_social_media_follow li a.icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 237, 56, 0.3);
}

.et_pb_social_media_follow li a.icon:before {
    font-family: 'Font Awesome 6 Brands';
    font-size: 18px;
    color: #fff;
    display: block;
}

.et-social-instagram a.icon:before {
    content: "\f16d";
}

.et-social-facebook a.icon:before {
    content: "\f09a";
}

.et-social-pinterest a.icon:before {
    content: "\f0d2";
}

.et_pb_social_media_follow_network_0_tb_footer a.icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.et_pb_social_media_follow_network_1_tb_footer a.icon {
    background: #1877f2;
}

.et_pb_social_media_follow_network_2_tb_footer a.icon {
    background: #e60023;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
    .et_pb_heading_0 h1 {
        font-size: 48px;
    }
    .et_pb_heading_1 h2 {
        font-size: 28px;
    }
    .et_pb_heading_2 h2,
    .et_pb_heading_4 h3,
    .et_pb_heading_5 h2,
    .et_pb_heading_6 h2,
    .et_pb_heading_7 h2,
    .et_pb_heading_8 h2 {
        font-size: 36px;
    }
    .et_pb_heading_3 h3 {
        font-size: 28px;
    }
    .et_pb_column_1_2,
    .et_pb_column_2_3 {
        width: 100%;
        margin-bottom: 30px;
    }
    .et_pb_column_1_3 {
        width: 46%;
        margin-bottom: 20px;
    }
    .et_pb_row_0_tb_footer {
        flex-direction: column;
    }
    .et_pb_row_0_tb_footer .et_pb_column {
        width: 100%;
        margin-bottom: 30px;
    }
    .et_pb_section_0 {
        padding: 8vw 0;
    }
    .et_pb_section_1,
    .et_pb_section_2,
    .et_pb_section_3,
    .et_pb_section_4,
    .et_pb_section_5,
    .et_pb_section_6,
    .et_pb_section_7,
    .et_pb_section_8,
    .et_pb_section_9 {
        padding: 40px 0;
    }
    .et_pb_salvattore_content {
        grid-template-columns: repeat(2, 1fr);
    }
    .et_pb_button_0,
    .et_pb_button_1,
    .et_pb_button_2,
    .et_pb_button_3 {
        padding: 12px 25px;
        font-size: 14px;
    }
    .et_pb_button_4 {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .et_pb_heading_0 h1 {
        font-size: 28px;
    }
    .et_pb_heading_1 h2 {
        font-size: 20px;
    }
    .et_pb_heading_2 h2,
    .et_pb_heading_4 h3,
    .et_pb_heading_5 h2,
    .et_pb_heading_6 h2,
    .et_pb_heading_7 h2,
    .et_pb_heading_8 h2 {
        font-size: 26px;
    }
    .et_pb_heading_3 h3 {
        font-size: 20px;
    }
    .et_pb_text_0,
    .et_pb_text_1,
    .et_pb_text_2,
    .et_pb_text_3,
    .et_pb_text_4,
    .et_pb_text_5,
    .et_pb_text_6,
    .et_pb_text_7,
    .et_pb_text_8 {
        font-size: 15px;
    }
    .et_pb_text_3 h2 {
        font-size: 24px;
    }
    .et_pb_column_1_3 {
        width: 100%;
    }
    .et_pb_section_0 {
        padding: 10vw 0;
    }
    .et_pb_section_1,
    .et_pb_section_2,
    .et_pb_section_3,
    .et_pb_section_4,
    .et_pb_section_5,
    .et_pb_section_6,
    .et_pb_section_7,
    .et_pb_section_8,
    .et_pb_section_9 {
        padding: 30px 0;
    }
    .et_pb_salvattore_content {
        grid-template-columns: 1fr;
    }
    .et_pb_button_0,
    .et_pb_button_1,
    .et_pb_button_2,
    .et_pb_button_3 {
        padding: 10px 20px;
        font-size: 13px;
    }
    .et_pb_button_4 {
        padding: 12px 28px;
        font-size: 14px;
    }
    .et_pb_blog_0 .et_pb_post .entry-title {
        font-size: 18px !important;
    }
    .et_pb_menu_0_tb_header .et_pb_menu__logo-wrap img {
        max-height: 45px;
    }
    .et_pb_heading_0_tb_footer h5,
    .et_pb_heading_1_tb_footer h5,
    .et_pb_heading_2_tb_footer h5 {
        font-size: 18px;
    }
    .et_pb_text_0_tb_footer,
    .et_pb_text_1_tb_footer,
    .et_pb_text_2_tb_footer,
    .et_pb_text_3_tb_footer,
    .et_pb_text_4_tb_footer,
    .et_pb_text_5_tb_footer,
    .et_pb_text_6_tb_footer {
        font-size: 14px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Loader */
.blog-loader {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.blog-loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3bed38;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Blog Error */
.blog-error {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.blog-error h3 {
    color: #333;
    margin-bottom: 10px;
}

.blog-error p {
    color: #666;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-posts h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Single Post Styles */
.single-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-post-container .loading {
    text-align: center;
    padding: 60px 20px;
}

.single-post-container .loading .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3bed38;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.single-post-container .error {
    text-align: center;
    padding: 60px 20px;
}

.single-post-container .error h2 {
    color: #333;
    margin-bottom: 15px;
}

.single-post-container .error p {
    color: #666;
    margin-bottom: 20px;
}

.single-post {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.single-post .post-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post .post-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.single-post h1 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2em;
}

.single-post .post-meta {
    margin-bottom: 25px;
    color: #888;
    font-size: 15px;
}

.single-post .post-meta .author-name {
    color: #3bed38;
    font-weight: 600;
}

.single-post .post-content {
    font-size: 17px;
    line-height: 1.9em;
    color: rgba(0,0,0,0.8);
}

.single-post .post-content p {
    margin-bottom: 18px;
}

.single-post .post-content h2,
.single-post .post-content h3 {
    margin: 25px 0 15px;
    font-weight: 700;
}

.single-post .post-content ul,
.single-post .post-content ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.single-post .post-content ul li,
.single-post .post-content ol li {
    margin-bottom: 8px;
}

.single-post .post-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.single-post .post-footer .back-btn {
    padding: 10px 25px;
    font-size: 14px;
}

.single-post .post-footer .share-buttons {
    display: flex;
    gap: 10px;
}

.single-post .post-footer .share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f2f5;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.single-post .post-footer .share-buttons a:hover {
    background: #3bed38;
    color: #fff;
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-posts-container .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3bed38;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

.retry-btn {
    margin-top: 15px;
    padding: 10px 25px;
    font-size: 14px;
}

.api-info {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 980px) {
    .related-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-post h1 {
        font-size: 32px;
    }
    .single-post {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .related-posts-container {
        grid-template-columns: 1fr;
    }
    .single-post h1 {
        font-size: 26px;
    }
    .single-post .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   NASHA MUKTI KENDRA PAGE STYLES
   ============================================ */

/* Page Content */
.page-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2em;
}

.page-content h1 span {
    color: #000;
}

.page-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 35px 0 18px;
    line-height: 1.3em;
}

.page-content h2 span {
    color: #000;
}

.page-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
    line-height: 1.3em;
}

.page-content h3 span {
    color: #000;
}

.page-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 25px 0 12px;
    line-height: 1.3em;
}

.page-content h4 span {
    color: #000;
}

.page-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 20px 0 10px;
    line-height: 1.3em;
}

.page-content h5 span {
    color: #000;
}

.page-content h6 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 18px 0 10px;
    line-height: 1.3em;
}

.page-content p {
    font-size: 16px;
    line-height: 1.9em;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 18px;
}

.page-content ul {
    padding-left: 25px;
    margin: 15px 0 20px;
    list-style: none;
}

.page-content ul li {
    padding: 6px 0 6px 30px;
    position: relative;
    line-height: 1.8em;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3bed38;
    font-weight: 700;
    font-size: 18px;
}

.page-content ul li:last-child {
    border-bottom: none;
}

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

.faq-accordion {
    margin: 20px 0;
}

.faq-accordion .faq-item {
    margin-bottom: 10px;
    border: 1px solid #e8f0e8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-accordion .faq-item:hover {
    border-color: #3bed38;
}

.faq-accordion .faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #f8faf8;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    gap: 15px;
}

.faq-accordion .faq-question:hover {
    background: #e8f5e8;
}

.faq-accordion .faq-question .faq-icon {
    font-size: 20px;
    color: #3bed38;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion .faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
}

.faq-accordion .faq-answer.open {
    max-height: 2000px !important;
    padding: 20px;
}

.faq-accordion .faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8em;
    color: rgba(0, 0, 0, 0.8);
}

.faq-accordion .faq-item.active {
    border-color: #3bed38;
    box-shadow: 0 4px 15px rgba(59, 237, 56, 0.08);
}

/* Responsive FAQ */
@media (max-width: 767px) {
    .faq-accordion .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }
    .faq-accordion .faq-answer.open {
        max-height: 1500px !important;
        padding: 15px 16px;
    }
    .faq-accordion .faq-answer p {
        font-size: 14px;
    }
}

/* Call to Action */
.page-content .call-cta {
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 237, 56, 0.3);
}

.page-content .call-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 237, 56, 0.4);
    color: #fff;
}

/* Treatment Grid */
.page-content .treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.page-content .treatment-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f5f0;
    transition: all 0.3s ease;
}

.page-content .treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(59, 237, 56, 0.1);
    border-color: #3bed38;
}

.page-content .treatment-card h4 {
    margin-top: 0;
}

.page-content .treatment-card p {
    margin-bottom: 0;
}

/* Benefit Highlight Box */
.page-content .benefit-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: #f8faf8;
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid #3bed38;
    margin: 25px 0;
}

.page-content .benefit-highlight a {
    display: inline-block;
    margin-top: 10px;
    color: #3bed38;
    font-weight: 700;
    text-decoration: none;
}

.page-content .benefit-highlight a:hover {
    color: #2bc82a;
    text-decoration: underline;
}

/* CTA Section */
.page-content .cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8faf8, #e8f5e8);
    border-radius: 16px;
}

.page-content .cta-section h3 {
    margin-top: 0;
}

.page-content .cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 980px) {
    .page-content h1 {
        font-size: 40px;
    }
    .page-content h2 {
        font-size: 32px;
    }
    .page-content h3 {
        font-size: 26px;
    }
    .page-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .page-content h1 {
        font-size: 32px;
    }
    .page-content h2 {
        font-size: 28px;
    }
    .page-content h3 {
        font-size: 24px;
    }
    .page-content h4 {
        font-size: 20px;
    }
    .page-content .treatment-grid {
        grid-template-columns: 1fr;
    }
    .page-content .faq-item {
        padding: 12px 15px;
    }
    .page-content .faq-item strong {
        font-size: 15px;
    }
    .page-content .faq-item p {
        font-size: 14px;
    }
    .page-content .call-cta {
        padding: 12px 24px;
        font-size: 16px;
    }
    .page-content .benefit-highlight {
        font-size: 16px;
        padding: 15px 18px;
    }
    .page-content .cta-section {
        padding: 30px 15px;
    }
    .page-content .cta-section p {
        font-size: 16px;
    }
}

/* ============================================
   COMMENT SECTION STYLES
   ============================================ */

.comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e8f0e8;
}

.comments-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.comments-section .comment-subtitle {
    color: #888;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Comment Item */
.comment-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #e8f0e8;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-body .comment-author {
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

.comment-body .comment-date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

.comment-body .comment-text {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.7em;
    color: rgba(0, 0, 0, 0.8);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-comments i {
    font-size: 40px;
    color: #d0d0d0;
    margin-bottom: 15px;
    display: block;
}

.comment-status {
    font-size: 13px;
    color: #f59e0b;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

/* Comment Form */
.comment-form {
    margin-top: 30px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form .form-group {
    margin-bottom: 18px;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    font-size: 14px;
}

.comment-form label .required {
    color: #e74c3c;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f0e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    color: #000;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #3bed38;
    box-shadow: 0 0 0 4px rgba(59, 237, 56, 0.1);
    outline: none;
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .submit-btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 237, 56, 0.3);
    font-family: 'Inter', sans-serif;
}

.comment-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 237, 56, 0.4);
}

.comment-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.comment-form .form-message {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 10px;
    display: none;
    font-weight: 600;
}

.comment-form .form-message.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}

.comment-form .form-message.error {
    display: block;
    background: #fef3f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 767px) {
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    .comments-section h3 {
        font-size: 24px;
    }
    .comment-item {
        flex-direction: column;
        gap: 10px;
    }
    .comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

.about-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2em;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 35px 0 18px;
    line-height: 1.3em;
}

.about-content h2 span {
    color: #000;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9em;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 18px;
}

.about-content ul {
    padding-left: 25px;
    margin: 15px 0 20px;
    list-style: none;
}

.about-content ul li {
    padding: 6px 0 6px 30px;
    position: relative;
    line-height: 1.8em;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3bed38;
    font-weight: 700;
    font-size: 18px;
}

.about-content ul li:last-child {
    border-bottom: none;
}

.about-highlight {
    background: #f8faf8;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #3bed38;
}

.about-highlight p {
    margin-bottom: 5px;
}

/* About Page Responsive */
@media (max-width: 767px) {
    .about-content h1 {
        font-size: 32px;
    }
    .about-content h2 {
        font-size: 26px;
    }
    .about-highlight {
        padding: 20px;
    }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Boxes */
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8faf8;
    border-radius: 10px;
    border-left: 4px solid #3bed38;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-info-box i {
    font-size: 24px;
    color: #3bed38;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info-box h4 {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.contact-info-box p {
    margin: 0;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
}

.contact-info-box p a {
    color: #3bed38;
    font-weight: 600;
}

.contact-info-box p a:hover {
    color: #2bc82a;
}

/* Contact Form */
.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-form-group label .required {
    color: #e74c3c;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8f0e8;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    color: #000;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #3bed38;
    box-shadow: 0 0 0 4px rgba(59, 237, 56, 0.1);
    outline: none;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #3bed38, #2bc82a);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 237, 56, 0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 237, 56, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Page Responsive */
@media (max-width: 980px) {
    .contact-info-box {
        padding: 12px 16px;
    }
    .contact-info-box i {
        font-size: 20px;
        width: 35px;
    }
    .contact-info-box h4 {
        font-size: 15px;
    }
    .contact-info-box p {
        font-size: 15px;
    }
    .contact-submit-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .contact-info-box {
        padding: 12px 15px;
        gap: 12px;
    }
    .contact-info-box i {
        font-size: 18px;
        width: 30px;
    }
    .contact-info-box h4 {
        font-size: 14px;
    }
    .contact-info-box p {
        font-size: 14px;
    }
    .contact-form-group input,
    .contact-form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    .contact-form-group label {
        font-size: 14px;
    }
    .contact-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}


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

.et_pb_section_0_tb_footer {
    background-color: #0a0a0a;
    padding: 30px 0 0;
}

.et_pb_row_0_tb_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

/* 4 Column Layout */
.et_pb_column_1_4 {
    width: 25%;
    float: left;
    padding: 0 15px;
}

/* Footer Headings */
.et_pb_heading_1_tb_footer h5,
.et_pb_heading_2_tb_footer h5,
.et_pb_heading_3_tb_footer h5 {
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF !important;
    line-height: 1.4em;
    margin-bottom: 15px;
    position: relative;
}

.et_pb_heading_1_tb_footer h5::after,
.et_pb_heading_2_tb_footer h5::after,
.et_pb_heading_3_tb_footer h5::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: #3bed38;
    margin-top: 10px;
    border-radius: 2px;
}

/* Footer Links */
.et_pb_text_1_tb_footer p,
.et_pb_text_2_tb_footer p,
.et_pb_text_3_tb_footer p,
.et_pb_text_4_tb_footer p {
    margin-bottom: 8px;
}

.et_pb_text_1_tb_footer p a,
.et_pb_text_2_tb_footer p a,
.et_pb_text_3_tb_footer p a,
.et_pb_text_4_tb_footer p a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.et_pb_text_1_tb_footer p a:hover,
.et_pb_text_2_tb_footer p a:hover,
.et_pb_text_3_tb_footer p a:hover,
.et_pb_text_4_tb_footer p a:hover {
    color: #3bed38 !important;
    padding-left: 5px;
}

/* Locations List */
.et_pb_text_5_tb_footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.et_pb_text_5_tb_footer ul li {
    padding: 4px 0;
    line-height: 1.8em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.et_pb_text_5_tb_footer ul li:last-child {
    border-bottom: none;
}

.et_pb_text_5_tb_footer ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.et_pb_text_5_tb_footer ul li a:hover {
    color: #3bed38 !important;
    padding-left: 5px;
}

/* Contact Info */
.et_pb_text_6_tb_footer p,
.et_pb_text_7_tb_footer p,
.et_pb_text_8_tb_footer p,
.et_pb_text_9_tb_footer p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.et_pb_text_6_tb_footer p i,
.et_pb_text_7_tb_footer p i,
.et_pb_text_8_tb_footer p i,
.et_pb_text_9_tb_footer p i {
    color: #3bed38;
    width: 20px;
    font-size: 14px;
}

.et_pb_text_7_tb_footer p a,
.et_pb_text_8_tb_footer p a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.et_pb_text_7_tb_footer p a:hover,
.et_pb_text_8_tb_footer p a:hover {
    color: #3bed38 !important;
}

/* Social Icons */
.et_pb_social_media_follow {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin-top: 15px;
}

.et_pb_social_media_follow li {
    display: inline-block;
}

.et_pb_social_media_follow li a.icon {
    height: 36px;
    width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.et_pb_social_media_follow li a.icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 237, 56, 0.3);
}

.et_pb_social_media_follow li a.icon:before {
    font-family: 'Font Awesome 6 Brands';
    font-size: 16px;
    color: #fff;
    display: block;
}

.et-social-instagram a.icon:before {
    content: "\f16d";
}

.et-social-facebook a.icon:before {
    content: "\f09a";
}

.et-social-pinterest a.icon:before {
    content: "\f0d2";
}

.et-social-youtube a.icon:before {
    content: "\f167";
}

.et_pb_social_media_follow_network_0_tb_footer a.icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.et_pb_social_media_follow_network_1_tb_footer a.icon {
    background: #1877f2;
}

.et_pb_social_media_follow_network_2_tb_footer a.icon {
    background: #e60023;
}

.et_pb_social_media_follow_network_3_tb_footer a.icon {
    background: #ff0000;
}

/* Copyright */
.et_pb_text_10_tb_footer p {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 13px;
}

.et_pb_text_10_tb_footer p a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
}

.et_pb_text_10_tb_footer p a:hover {
    color: #3bed38 !important;
}

/* Responsive */
@media (max-width: 980px) {
    .et_pb_column_1_4 {
        width: 50%;
        margin-bottom: 30px;
    }
    .et_pb_row_0_tb_footer {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .et_pb_column_1_4 {
        width: 100%;
        margin-bottom: 25px;
    }
    .et_pb_row_0_tb_footer {
        padding: 20px 0;
    }
    .et_pb_heading_1_tb_footer h5,
    .et_pb_heading_2_tb_footer h5,
    .et_pb_heading_3_tb_footer h5 {
        font-size: 16px;
    }
    .et_pb_text_5_tb_footer ul li a {
        font-size: 13px;
    }
    .et_pb_text_6_tb_footer p,
    .et_pb_text_7_tb_footer p,
    .et_pb_text_8_tb_footer p,
    .et_pb_text_9_tb_footer p {
        font-size: 13px;
    }
}