/* ============================================
   Acupuncture Styles - Page Specific
   ============================================ */

/* Import Core Styles */
@import url('variables.css');
@import url('reset.css');
@import url('base.css');
@import url('layout.css');
@import url('components.css');

/* ============================================
   Hero Section - Acupuncture
   ============================================ */

.hero {
    padding: 40px 0 80px;
    background: linear-gradient(to right, var(--bg-off-white), var(--bg-purple-light) 60%, var(--bg-white) 100%);
    border-radius: 0 0 40px 40px;
}

.hero-bg-shape {
    background-color: var(--bg-light);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero h1 {
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
    margin-bottom: 24px;
}

.hero-blob {
    width: 100%;
    height: 500px;
    background-color: var(--bg-placeholder);
    background-image: url('../../assets/images/acupuncture_banner.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-3xl);
}

/* ============================================
   Promo Section
   ============================================ */

.promo-section {
    background-color: var(--bg-purple-light);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: var(--radius-2xl);
}

.promo-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
}

.promo-card h3 {
    color: var(--primary-purple);
    margin-bottom: 12px;
    font-size: var(--text-lg);
}

.promo-card p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

/* Price Card Sidebar */
.sidebar-price span:not(.sidebar-badge) {
    text-decoration: line-through;
    color: var(--text-strikethrough);
    font-size: 14px;
    font-weight: 400;
}

/* ============================================
   Responsive - Acupuncture
   ============================================ */

@media (max-width: 1024px) {
    .hero-content,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        height: 300px;
    }

    .hero h1 {
        font-size: var(--text-4xl);
    }
}

