/* RUPAYNA Service Detail Pages Styles */

:root {
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --shadow-premium: 0 10px 20px -10px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.3s ease;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --color-rose: #fb7185;
    --color-emerald: #34d399;
}

/* 1. Service Hero Section */
.service-hero {
    position: relative;
    padding: 14rem 0 10rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.service-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1px solid var(--color-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    /* Less rounded */
}

.service-hero h1 {
    font-size: 3.2rem;
    /* Reduced from 4.5rem */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-hero p {
    font-size: 1.1rem;
    /* Reduced from 1.25rem */
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-pricing {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    color: var(--color-gold);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.discount-badge {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    /* Less rounded */
    font-size: 0.75rem;
    font-weight: 700;
}

/* 2. Content Layout */
.service-detail-section {
    padding: 1rem 0 4rem;
    background: #fafafa;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 5rem;
}

.service-main section {
    margin-bottom: 5rem;
}

.service-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    /* Reduced from 2.8rem */
    margin-bottom: 1.5rem;
    color: var(--color-black);
    line-height: 1.3;
}

.service-main p {
    color: var(--color-grey-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    /* Reduced from 1.15rem */
}

/* Info Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid var(--color-grey-100);
    padding: 0;
    /* Clear padding for header bar */
    overflow: hidden;
    transition: var(--transition-smooth);
}

.info-card h3 {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    background: #f8f8f8;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-grey-100);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.info-card.ideal h3 {
    background: #f4fce3;
    /* Light green like reference */
    color: #5c940d;
    border-bottom-color: #d8f5a2;
}

.info-card.warning h3 {
    background: #fff5f5;
    /* Light red like reference */
    color: #c92a2a;
    border-bottom-color: #ffc9c9;
}

.info-card ul {
    list-style: none;
    padding: 2rem;
    margin-bottom: 0;
}

/* Process Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    /* Less rounded */
    box-shadow: none;
    border: 1px solid var(--color-grey-100);
    text-align: left;
    transition: var(--transition-smooth);
}

.step-card:hover {
    background: #fdfdfd;
    border-color: var(--color-gold);
}

.step-card:hover h4,
.step-card:hover p {
    color: white;
}

.step-info span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.step-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.step-info p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* 3. Care Section - Premium Redesign */
.care-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.care-card-refined {
    background: white;
    border: 1px solid #d4af37;
    /* gold-border */
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.care-card-refined:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.care-card-refined.before {
    border-left: 4px solid #fb7185;
}

/* rose-400 */
.care-card-refined.after {
    border-left: 4px solid #34d399;
}

/* emerald-400 */

.phase-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #b8860b;
    /* gold-text */
    display: block;
    margin-bottom: 0.5rem;
}

.care-card-refined h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.care-list-refined {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-list-refined li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.before .dot {
    background: #fb7185;
}

.after .dot {
    background: #34d399;
}

.care-list-refined li p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #4b5563;
    /* grey-600 */
    font-weight: 500;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.service-details-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    /* Less rounded */
    box-shadow: none;
    border: 1px solid var(--color-grey-100);
}

.detail-item {
    margin-bottom: 2.5rem;
}

.detail-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-grey-500);
    margin-bottom: 0.8rem;
}

.detail-item p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--color-black);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.detail-item p i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.price-tag {
    color: var(--color-gold);
    font-size: 2.2rem;
}


/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid var(--color-grey-100);
    padding: 0;
    /* Clear padding for header bar */
    overflow: hidden;
}

.pricing-card.highlighted {
    border: 1px solid var(--color-gold);
    position: relative;
}

.pricing-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    padding: 1.25rem;
    background: #f8f8f8;
    margin-bottom: 0;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-grey-100);
    text-align: center;
}

.pricing-card.highlighted h4 {
    background: var(--color-gold);
    color: white;
    border-bottom-color: var(--color-gold);
}

.pricing-card ul {
    list-style: none;
    padding: 2rem;
    margin-bottom: 0;
}

.pricing-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-grey-100);
    color: var(--color-grey-500);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li span:last-child {
    font-weight: 700;
    color: var(--color-gold);
}

/* 4. Expected Results Redesign - Premium Banner */
.expected-results {
    padding: 6rem 0;
    background: #fafafa;
}

.results-banner {
    background: white;
    border: 1px solid #ffecb3;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.results-banner::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--color-gold);
    opacity: 0.05;
    border-radius: 50%;
}

.results-main-content {
    flex: 1;
}

.results-badge-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.badge-gold {
    background: #fffcf0;
    border: 1px solid #ffecb3;
    color: #b8860b;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.maintenance-sidebar {
    width: 260px;
    background: #111;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #d4af37;
}

.maintenance-sidebar h4 {
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.maintenance-sidebar p {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.freq-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.freq-label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}

.freq-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.results-main-content h2 {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #111;
}

.results-highlight {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.results-highlight span {
    color: #b8860b;
}

.results-quote {
    border-left: 3px solid #d4af37;
    padding-left: 1.5rem;
    font-style: italic;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 5. Consultation Section (New) */
.consultation-prompt {
    padding: 6rem 0;
    background: white;
    text-align: center;
    border-top: 1px solid var(--color-grey-100);
}

.consultation-prompt h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.consultation-prompt p {
    color: var(--color-grey-500);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

.consultation-icon {
    margin-bottom: 2rem;
}

.consultation-icon img {
    height: 120px;
    margin: 0 auto;
}

/* 5. Final CTA Refined */
.final-booking-cta {
    padding: 8rem 0;
    background: #000;
    color: white;
    text-align: center;
}

.final-booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    /* Scaled down from 4rem */
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.btn-outline-gold {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    /* Less rounded */
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: black;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }

    .service-content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        margin-top: 4rem;
    }

    .info-grid,
    .care-section,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .results-banner {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .maintenance-sidebar {
        width: 100%;
    }

    .service-detail-section {
        padding: 5rem 0;
    }

    .service-hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 10rem 0 6rem;
    }

    .service-hero h1 {
        font-size: 2.8rem;
    }

    .service-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-main h2 {
        font-size: 2.2rem;
    }

    .expected-results h2 {
        font-size: 1.8rem;
    }

    .hero-pricing {
        flex-direction: column;
        gap: 0.75rem;
    }

    .new-price {
        font-size: 1.75rem;
    }

    .service-detail-section {
        padding: 4rem 0;
    }

    .service-main section {
        margin-bottom: 3.5rem;
    }

    .expected-results {
        padding: 4rem 0;
    }

    .results-banner {
        padding: 1.5rem;
    }

    .results-main-content h2 {
        font-size: 1.8rem;
    }

    .results-highlight {
        font-size: 1.1rem;
    }

    .consultation-prompt {
        padding: 4rem 0;
    }

    .final-booking-cta {
        padding: 5rem 0;
    }

    .final-booking-cta h2 {
        font-size: 2rem;
    }

    .btn-outline-gold {
        padding: 1rem 2.5rem;
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .step-card {
        padding: 2rem;
    }

    .care-card-refined {
        padding: 2rem;
    }

    .service-details-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 8rem 0 5rem;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero p {
        font-size: 0.95rem;
    }

    .service-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.3rem 0.8rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .service-main h2 {
        font-size: 1.75rem;
    }

    .service-main p {
        font-size: 0.95rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-info h4 {
        font-size: 1.2rem;
    }

    .step-info p {
        font-size: 0.9rem;
    }

    .care-card-refined {
        padding: 1.5rem;
    }

    .care-card-refined h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .care-list-refined li p {
        font-size: 0.85rem;
    }

    .detail-item p {
        font-size: 1.3rem;
    }

    .price-tag {
        font-size: 1.8rem;
    }

    .results-main-content h2 {
        font-size: 1.5rem;
    }

    .results-highlight {
        font-size: 1rem;
    }

    .results-quote {
        font-size: 0.85rem;
    }

    .results-badge-row {
        flex-wrap: wrap;
    }

    .consultation-prompt h2 {
        font-size: 1.3rem;
    }

    .consultation-icon img {
        height: 80px;
    }

    .final-booking-cta {
        padding: 4rem 0;
    }

    .final-booking-cta h2 {
        font-size: 1.6rem;
    }

    .btn-outline-gold {
        padding: 0.875rem 2rem;
        letter-spacing: 1.5px;
        font-size: 0.8rem;
    }

    .service-details-card {
        padding: 1.5rem;
    }

    .detail-item {
        margin-bottom: 2rem;
    }

    .expected-results {
        padding: 3rem 0;
    }

    .freq-box {
        padding: 1rem;
    }
}

/* ULTRA LUXURY OVERRIDE */
.service-hero::before {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.5) 100%);
}

.service-label {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    letter-spacing: 4px;
    border-radius: 0;
}

.service-hero h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 3.5rem;
}

.info-card.ideal h3,
.info-card.warning h3,
.info-card h3 {
    background: #000 !important;
    color: var(--color-gold) !important;
    border: none !important;
    font-weight: 300;
    letter-spacing: 3px;
    border-radius: 0;
}

.info-card {
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.step-card {
    border: 1px solid #f0f0f0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.step-card:hover {
    border-color: var(--color-gold) !important;
    transform: translateY(-5px);
    background: #fff;
}

.step-card:hover h4,
.step-card:hover p {
    color: inherit;
}

.service-details-card {
    background: #050505 !important;
    color: #fff !important;
    border: 1px solid #222 !important;
    border-radius: 0 !important;
    padding: 3rem 2.5rem !important;
}

.service-details-card h4 {
    color: #888;
}

.service-details-card p {
    color: #fff;
    font-weight: 300;
}

.service-details-card p i {
    color: var(--color-gold);
}

.price-tag {
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
}

.btn-luxury-cta {
    display: inline-block;
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #d4af37 0%, #ebd07b 100%);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-align: center;
    border: none;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-luxury-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #ebd07b 0%, #d4af37 100%);
    color: #000;
}

@media (max-width: 992px) {
    .btn-luxury-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        margin: 0;
        box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.15);
        padding: 1.25rem;
        font-size: 1.1rem;
        border-radius: 0;
    }

    .service-details-card {
        padding-bottom: 2rem !important;
        margin-bottom: 50px;
    }
}

/* LUXURY OVERRIDE PRICING CARDS */
.pricing-card h4 {
    background: #000 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none !important;
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.pricing-card.highlighted h4 {
    background: #d4af37 !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none !important;
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.pricing-card {
    background: #fdfdfd !important;
    border: 1px solid #eaeaea !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    padding: 0;
}

.pricing-card.highlighted {
    border: 1px solid #d4af37 !important;
}

.pricing-card ul li {
    color: #555 !important;
    font-size: 0.95rem;
    border-color: #f5f5f5 !important;
    font-family: 'Outfit', sans-serif;
}

.pricing-card ul li span:last-child {
    color: #000 !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

/* =======================================================
   LUXURY CTA SECTION OVERRIDE
   ======================================================= */
.luxury-cta-section {
    background-color: #111;
    padding: 7rem 1rem;
    text-align: center;
}

.luxury-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.luxury-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.luxury-cta-heading .text-white {
    color: #ffffff;
}

.luxury-cta-heading .text-gold {
    color: #d4af37;
}

.luxury-cta-subtext {
    color: #a0a0a0;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.luxury-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-lx-solid {
    background-color: #d4af37;
    color: #000;
    padding: 1.1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.btn-lx-solid:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.btn-lx-outline {
    background-color: transparent;
    color: #d4af37;
    padding: 1.1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.btn-lx-outline:hover {
    background-color: #d4af37;
    color: #000;
}

@media (max-width: 768px) {
    .luxury-cta-heading {
        font-size: 2.2rem;
    }

    .luxury-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lx-solid,
    .btn-lx-outline {
        width: 100%;
        text-align: center;
    }

    .luxury-cta-subtext br {
        display: none;
    }
}

/* =======================================================
   RE-DESIGN INFO GRID SEPARATED
   ======================================================= */
.info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-bottom: 5rem !important;
}

.info-card {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05) !important;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    background: #000 !important;
    color: #d4af37 !important;
    /* Gold */
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    letter-spacing: 3px !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    font-weight: 400 !important;
    border-bottom: none !important;
}

.info-card h3 span {
    display: none !important;
}

.clean-list {
    padding: 3rem !important;
    margin: 0 !important;
    flex: 1;
}

.clean-list li {
    font-size: 1.05rem !important;
    color: #333 !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    font-family: 'Outfit', sans-serif !important;
}

.dot-green,
.dot-red {
    width: 6px !important;
    height: 6px !important;
    margin-top: 8px !important;
    /* Align with text */
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

.dot-green {
    background-color: #5c940d !important;
}

.dot-red {
    background-color: #c92a2a !important;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .clean-list {
        padding: 2rem !important;
    }
}


/* =======================================================
   RE-DESIGN PROCESS STEPS
   ======================================================= */
.process-steps-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 5rem !important;
}

.step-card {
    background: #fff !important;
    padding: 2.5rem !important;
    border: 1px solid #eaeaea !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s ease !important;
    position: relative;
}

.step-card:hover {
    border-color: #d4af37 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1) !important;
}

.step-card .step-info span {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #d4af37 !important;
    letter-spacing: 3px !important;
    margin-bottom: 1.2rem !important;
    display: block !important;
}

.step-card .step-info h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    color: #111 !important;
}

.step-card .step-info p {
    font-size: 1rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}


/* =======================================================
   RE-DESIGN PRE/POST CARE SECTION
   ======================================================= */
.care-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    margin-top: 3rem !important;
}

.care-card-refined {
    background: #fafafa !important;
    border: 1px solid #eaeaea !important;
    border-radius: 0 !important;
    padding: 3rem !important;
    position: relative !important;
}

.care-card-refined:hover {
    transform: none !important;
    box-shadow: none !important;
}

.care-card-refined.before {
    border-top: 3px solid #000 !important;
    border-left: 1px solid #eaeaea !important;
}

.care-card-refined.after {
    border-top: 3px solid #d4af37 !important;
    border-left: 1px solid #eaeaea !important;
}

.care-card-refined h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    color: #111 !important;
    margin-bottom: 2rem !important;
}

.care-list-refined li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.care-list-refined li p {
    font-size: 1rem !important;
    color: #555 !important;
    line-height: 1.6 !important;
}

.before .dot {
    background: #000 !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 0 !important;
}

.after .dot {
    background: #d4af37 !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .care-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .care-card-refined {
        padding: 2rem !important;
    }
}

/* =======================================================
   EXPECTED RESULTS BANNER
   ======================================================= */
.results-banner {
    background: #000 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 4rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

.results-main-content h2 {
    color: #d4af37 !important;
    font-family: 'Playfair Display', serif !important;
}

.results-highlight {
    color: #fff !important;
    font-size: 1.6rem !important;
    font-family: 'Playfair Display', serif !important;
}

.results-highlight span {
    color: #d4af37 !important;
}

.results-quote {
    color: #aaa !important;
    border-left: 3px solid #d4af37 !important;
}

.badge-gold {
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 0 !important;
}

.maintenance-sidebar {
    background: #111 !important;
    border: 1px solid #222 !important;
    border-radius: 0 !important;
}

.freq-box {
    border-radius: 0 !important;
    border: 1px solid #333 !important;
}



/* FIX LAYOUT START */
.service-main {
    min-width: 0 !important;
    /* Prevents CSS grid blowout */
}

.service-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Ensure pricing cards fit */
.pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Adjust the card itself so it shrinks */
.pricing-card {
    min-width: 0;
}

.pricing-card ul {
    padding: 1.5rem !important;
    /* reduce padding so text doesn't overflow */
}

.pricing-card ul li {
    font-size: 0.85rem !important;
    /* shrink text slightly */
    flex-wrap: wrap;
    /* allow text to wrap */
}

.pricing-card ul li span:first-child {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* FIX LAYOUT END */



.service-sidebar {
    min-width: 280px !important;
}




/* ============================================================
   PEEL TREATMENT PAGE — FRESH LAYOUT CLASSES
   ============================================================ */

/* Top row: intro+pricing (left) | sidebar (right) */
.peel-top-row {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    /* both columns start from top */
}

.peel-top-left {
    min-width: 0;
}

.peel-top-right {
    position: sticky;
    top: 120px;
}

/* Full-width block below */
.peel-full-width {
    width: 100%;
}

/* Results banner — always side by side */
.results-banner {
    display: flex !important;
    flex-direction: row !important;
    gap: 3rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .peel-top-row {
        grid-template-columns: 1fr;
    }

    .peel-top-right {
        position: static;
    }

    .results-banner {
        flex-direction: column !important;
    }

    .maintenance-sidebar {
        width: 100% !important;
    }
}



/* Tighten gap between Before/After and Expected Results */
.peel-full-width {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.expected-results {
    padding-top: 3rem !important;
    padding-bottom: 4rem !important;
}