/* --- Services Page Grid Layout --- */
.services-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #FAFAFA;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Interactive Sheet / Enhanced Modal Styles --- */

/* Fullscreen Modal Override */
.modal-content.interactive-sheet {
    width: 90%;
    max-width: 1000px;
    /* Wider for reading comfort */
    height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Remove default padding, handle internally */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* Hide scroll on main container */
}

/* Header Area */
/* Header Area */
.sheet-header {
    padding: 4rem 3rem;
    /* Taller header */
    background-color: var(--primary-color);
    color: white;
    position: relative;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.sheet-header.kundalini-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('kundalini_service.jpg');
}

.sheet-header.psilocybin-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('psilocybin_ceremony.jpg');
}

.sheet-header h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.sheet-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.sheet-close:hover {
    color: white;
}

/* Pricing Badge in Header */
.pricing-container {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.price-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Sticky Navigation Bar */
.sheet-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 0 3rem;
    display: flex;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.nav-btn {
    background: none;
    border: none;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn.active {
    color: var(--primary-color);
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

.nav-btn:hover {
    color: var(--primary-color);
}

/* Scrollable Content Area */
.sheet-body {
    padding: 3rem;
    overflow-y: auto;
    flex-grow: 1;
    scroll-behavior: smooth;
}

.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 140px;
    /* Offset for sticky header/nav */
}

/* Typography & Content Styling */
.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
    text-align: justify;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-section li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

/* Glossary Term Highlight */
.term {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.term-def {
    color: #666;
    font-size: 0.95em;
}

/* Bibliography Styling */
.bibliography {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.bibliography h4 {
    margin-top: 0;
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ref-item {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid #ddd;
}