/*
Theme Name: Hello Biz Child
Theme URI: https://example.com
Description: Child Theme for Hello Biz
Author: Your Name
Author URI: https://example.com
Template: hello-biz
Version: 1.0.0
Text Domain: hello-biz-child
*/

@import url("../hello-biz/style.css");

/* Custom CSS kamu di sini */

a.elementor-element.elementor-element-a66972b.e-con-full.e-flex.e-con.e-child {
    display: none !important;
}

/* CONTAINER */
.treatment-container {
    max-width: 1100px;
    margin: auto;
    padding: 300px 10px 0px 10px;
}


/* GRID */
.treatment-grid {
    display: grid;
    gap: 20px;
}

.treatment-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.treatment-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}


@media (max-width:768px){
.treatment-container {
    padding: 150px 10px 0px 10px;
    }
}
/* CARD */
.treatment-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.treatment-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER */
.treatment-item img {
    width: 100%;
    aspect-ratio: 3 / 2; /* bikin kotak */
    object-fit: cover;   /* crop biar rapi */
    display: block;
    transition: transform 0.4s ease;
}

/* ZOOM HOVER */
.treatment-item:hover img {
    transform: scale(1.05);
}

/* TITLE */
.treatment-item h3 {
    margin: 10px 10px 10px 10px !important;
    font-size: 18px !important;
    color: #33bead;
    font-weight: 400;
    line-height: 1.4 !important;
    text-align: left;
    padding: 5px;
    font-family: poppins;
    font-style: normal;
}

/* LINK RESET */
.treatment-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .treatment-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .treatment-grid.columns-3,
    .treatment-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .treatment-grid.columns-3,
    .treatment-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .treatment-item h3 {
        font-size: 12px !important;
    }
}

/* HERO SECTION */
.treatment-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.treatment-text h1 {
    font-size: 36px;
    color: #33bead;
    margin-bottom: 20px;
}

.treatment-excerpt {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.treatment-image img {
    width: 100%;
    aspect-ratio: 3 / 2; /* bikin kotak */
    object-fit: cover;   /* crop biar rapi */
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* CONTENT SECTION */
.treatment-content-section h2 {
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
}

.treatment-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.treatment-content-grid p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .treatment-hero {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .treatment-content-grid {
        grid-template-columns: 1fr;
    }

    .treatment-text h1 {
        font-size: 28px;
    }
    .treatment-image {
        order: -1;
        margin-bottom: 20px;
    }
}

.treatment-booking {
    margin-top: 40px;
    text-align: center;
}

.btn-wa {
    display: inline-block;
    background: #33bead;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-wa:hover {
    background: #33bead;
    transform: translateY(-2px);
    color: #000 !important;
}