/* ===============================
   Grooming Charges Section
================================= */
.grooming-hero-section, .page-title {
    background: linear-gradient(135deg, #f3f8ff 0%, #fff0f3 100%);
}

.page-title h3, .page-title p.lead {
    color: #4a4a4a !important;
}

.grooming-charges-section {
    background: #fdf8ff;
    padding: 40px 0;
    color: #4a4a4a;
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   LEFT SIDE (Emblem + Image)
================================= */
.grooming-left-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.grooming-emblem {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.grooming-emblem svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.emblem-text-top {
    font-size: 46px;
    font-weight: 900;
    fill: #e12454;
}

.emblem-text-bottom {
    font-size: 46px;
    font-weight: 800;
    fill: #e12454;
}

.emblem-img {
    width: 100%;
    max-width: 420px;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ===============================
   BUBBLES
================================= */
.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===============================
   PRICE LIST BOX
================================= */
.price-list-container {
    background-color: #fff;
    color: #333;
    padding: 20px 25px;
    border-radius: 40px;
    position: relative;
    margin: 15px auto;
    max-width: 400px;

    /* Cloud effect */
    box-shadow:
        0 0 0 10px #fff,
        20px 0 0 10px #fff,
        -20px 0 0 10px #fff,
        0 20px 0 10px #fff,
        0 -20px 0 10px #fff,
        15px 15px 0 10px #fff,
        -15px -15px 0 10px #fff,
        15px -15px 0 10px #fff,
        -15px 15px 0 10px #fff;
}

@media (max-width: 767px) {
    .price-list-container {
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding: 30px 20px !important; 
        padding-bottom: 80px !important; 
    }

    .price-list-container h3 {
        font-size: 1.8rem !important; /* Smaller heading on mobile */
        margin-bottom: 20px !important;
    }

    /* Stack the package item vertically on mobile */
    .package-item {
        flex-direction: column !important;
        text-align: center !important;
        background: #f9f6fb !important; /* Add a light background to highlight */
        padding: 20px !important;
        border-radius: 20px !important;
        border: 1px solid #e12454 !important;
    }

    .package-content {
        margin-bottom: 10px !important;
    }

    .package-price {
        font-size: 2rem !important;
        display: block !important;
        color: #e12454 !important;
    }

    .package-details {
        display: block !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

.price-list-container h3 {
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    color: #e12454;
    margin-bottom: 30px;
}

/* Price List */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 6px;
}

.price-item span:first-child {
    font-weight: 500;
}

.price-item span:last-child {
    font-weight: 700;
}

/* ===============================
   FOOTER INFO
================================= */
.grooming-footer-info {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    font-size: 1.1rem;
    text-align: center;
}

.grooming-footer-info div {
    flex: 1;
}

.grooming-footer-info h5 {
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===============================
   WHY CHOOSE US (UNCHANGED + POLISH)
================================= */
.grooming-why-us-playful {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.grooming-why-us-playful::before,
.grooming-why-us-playful::after {
    content: '\eeed';
    font-family: 'IcoFont';
    position: absolute;
    font-size: 5rem;
    color: #e12454;
    opacity: 0.05;
}

.grooming-why-us-playful::before {
    top: 20px;
    left: 20px;
    transform: rotate(-15deg);
}

.grooming-why-us-playful::after {
    bottom: 20px;
    right: 20px;
    transform: rotate(15deg);
}

/* Sticker Cards */
.playful-sticker {
    background: #fff;
    padding: 30px 20px;
    border-radius: 40px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #eee;
    height: 100%;
}

.playful-sticker:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.08);
}

/* Color Variants */
.sticker-blue {
    border-color: #a2d2ff;
}

.sticker-green {
    border-color: #b9fbc0;
}

.sticker-pink {
    border-color: #ffafcc;
}

.sticker-yellow {
    border-color: #ffef96;
}

/* Icon Circle */
.sticker-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.sticker-blue .sticker-icon-circle {
    background-color: #eaf4ff;
    color: #007bff;
}

.sticker-green .sticker-icon-circle {
    background-color: #f0fff4;
    color: #28a745;
}

.sticker-pink .sticker-icon-circle {
    background-color: #fff0f6;
    color: #d63384;
}

.sticker-yellow .sticker-icon-circle {
    background-color: #fffdeb;
    color: #f39c12;
}

/* Text */
.playful-sticker h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.playful-sticker p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.playful-heading {
    font-weight: 800;
    font-size: 3.5rem;
    color: #e12454;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .emblem-text-top {
        font-size: 36px;
    }

    .emblem-text-bottom {
        font-size: 30px;
    }

    .emblem-img {
        max-width: 240px;
    }

    .grooming-emblem {
        height: 400px;
        width: 100%;
    }

    .grooming-left-box {
        min-height: 400px;
    }

    .price-list-container {
        padding: 20px;
    }
}

/* ===============================
   PACKAGE ITEM HIGHLIGHT
================================= */
.package-item {
    background: #fdf8ff;
    border: 2px solid #e12454 !important;
    padding: 15px 20px !important;
    border-radius: 20px;
    margin-bottom: 25px !important;
    box-shadow: 0 5px 15px rgba(155, 114, 170, 0.1);
    border-bottom-style: solid !important;
    /* Overriding the dashed border */
    align-items: center;
}

.package-content {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: #e12454;
    line-height: 1.2;
}

.package-details {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
    font-weight: 400;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e12454;
}

.package-item:hover {
    background: #f9f0ff;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* ===============================
   ENQUIRY FORM
================================= */
.grooming-enquiry-section {
    background: transparent;
    padding: 30px 0;
}

.grooming-form-card {
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid rgba(155, 114, 170, 0.1);
}

.compact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
}

.grooming-input {
    background: #fdf8ff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 10px 15px;
    height: auto;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.small-input {
    height: 45px;
}

.compact-form h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
}

.grooming-input:focus {
    background: #fff;
    border-color: #e12454;
    box-shadow: 0 5px 15px rgba(155, 114, 170, 0.1);
    outline: none;
}

.divider {
    width: 80px;
    height: 4px;
    background: #e12454;
    margin: 20px auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .grooming-form-card {
        padding: 30px 20px;
        border-radius: 30px;
    }
}

/* ===============================
   SPA CARDS TEXT
================================= */
.spa-card h4, 
.spa-card p {
    color: #000000 !important;
}
