/* Pages Specific Styles */

/* Page Headers */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.1) 0%, 
                rgba(0, 0, 0, 0.95) 50%,
                rgba(212, 175, 55, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-liquid), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--rose-pearl), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--scarlet), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-liquid);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
}

.breadcrumb {
    color: var(--rose-pearl);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--white-ethereal);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-liquid);
}

.page-ornament {
    font-size: 2.5rem;
    margin-top: 1rem;
    animation: pulse-glow 3s infinite;
}

/* Energy Header Specific */
.energy-header {
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.2) 0%, 
                rgba(0, 0, 0, 0.9) 50%,
                rgba(212, 175, 55, 0.2) 100%);
}

.energy-symbol {
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

/* Services Header */
.services-header {
    background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(0, 0, 0, 0.95) 50%,
                rgba(220, 20, 60, 0.15) 100%);
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, 
                rgba(248, 200, 220, 0.1) 0%, 
                rgba(0, 0, 0, 0.95) 50%,
                rgba(212, 175, 55, 0.1) 100%);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.nyxara-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 3px solid var(--gold-liquid);
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.energy-aura {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 30px;
    background: conic-gradient(
        var(--scarlet) 0deg,
        var(--gold-liquid) 120deg,
        var(--rose-pearl) 240deg,
        var(--scarlet) 360deg
    );
    opacity: 0.3;
    animation: rotate-energy 15s linear infinite;
    z-index: -1;
}

.about-text {
    padding-left: 2rem;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-liquid);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--rose-pearl);
    margin-bottom: 2rem;
    font-style: italic;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: var(--rose-pearl);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--white-ethereal);
}

/* Specialties Section */
.specialties-section {
    margin: 4rem 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-liquid);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.specialty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.specialty-card h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Journey Section */
.journey-section {
    margin: 4rem 0;
}

.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-liquid), var(--scarlet));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-liquid);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-content h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--white-ethereal);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.mission-statement {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--rose-pearl);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
}

.value-item h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin-top: 3rem;
}

.about-cta h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Energy Sexual Content */
.energy-content {
    padding: var(--section-padding);
}

.energy-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--rose-pearl);
    max-width: 800px;
    margin: 2rem auto 0;
}

.energy-main-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border-left: 4px solid var(--gold-liquid);
}

.content-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-liquid);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-text {
    color: var(--white-ethereal);
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.energy-benefits {
    list-style: none;
    padding: 0;
}

.energy-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.energy-benefits li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--gold-liquid);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Chakra System */
.chakra-system {
    margin-top: 2rem;
}

.chakra-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.chakra-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.chakra-item h4 {
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Energy Visualization */
.energy-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.energy-body {
    width: 200px;
    height: 400px;
    position: relative;
}

.body-outline {
    width: 100%;
    height: 100%;
    border: 3px solid var(--rose-pearl);
    border-radius: 50px 50px 20px 20px;
    background: rgba(248, 200, 220, 0.1);
}

.chakra-points {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.chakra-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: chakra-pulse 2s infinite;
}

.chakra-point.root { bottom: 5%; background: #ff0000; }
.chakra-point.sacral { bottom: 20%; background: #ff8800; }
.chakra-point.solar { bottom: 35%; background: #ffff00; }
.chakra-point.heart { bottom: 50%; background: #00ff00; }
.chakra-point.throat { bottom: 65%; background: #0088ff; }
.chakra-point.third-eye { bottom: 80%; background: #4400ff; }
.chakra-point.crown { bottom: 95%; background: #8800ff; }

@keyframes chakra-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Blockages Grid */
.blockages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blockage-card {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
}

.blockage-card:hover {
    border-color: var(--scarlet);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.blockage-card h4 {
    font-family: var(--font-primary);
    color: var(--scarlet);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blockage-card ul {
    list-style: none;
    padding: 0;
}

.blockage-card li {
    padding: 0.3rem 0;
    color: var(--white-ethereal);
}

.blockage-card li::before {
    content: '⚠️ ';
    margin-right: 0.5rem;
}

/* Awakening Practices */
.awakening-practices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practice-category {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
}

.practice-category:hover {
    border-color: var(--gold-liquid);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.practice-category h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Transformation Areas */
.transformation-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.transformation-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.transformation-item:hover {
    border-color: var(--gold-liquid);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.transformation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.transformation-item h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Warning Section */
.warning-section {
    border-color: var(--scarlet) !important;
    background: rgba(220, 20, 60, 0.1);
}

.warning-content {
    color: var(--white-ethereal);
}

.safety-guidelines {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.safety-guidelines li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.safety-guidelines li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

/* Energy CTA */
.energy-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 20px;
    border: 2px solid var(--scarlet);
    margin-top: 3rem;
}

.energy-cta h3 {
    font-family: var(--font-primary);
    color: var(--scarlet);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Services Content */
.services-content {
    padding: var(--section-padding);
}

.service-detailed {
    margin-bottom: 5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.service-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: var(--transition-slow);
}

.service-detailed:hover::before {
    left: 100%;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-liquid);
    opacity: 0.3;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-liquid);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--rose-pearl);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-description h3 {
    font-family: var(--font-primary);
    color: var(--scarlet);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.service-details {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold-liquid);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    transition: var(--transition);
}

.detail-box:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.detail-box h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gold-liquid);
    color: var(--black-absolute);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Booking Card */
.booking-card {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--scarlet);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.booking-card h4 {
    font-family: var(--font-primary);
    color: var(--scarlet);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-align: center;
}

.modalities {
    margin-bottom: 2rem;
}

.modality {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.modality h5 {
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.booking-note {
    color: var(--rose-pearl);
    font-style: italic;
    text-align: center;
    margin-bottom: 1rem;
}

/* Ritual Types */
.ritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ritual-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.ritual-card:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.ritual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ritual-card h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Process List */
.process-list {
    color: var(--white-ethereal);
    padding-left: 1rem;
}

.process-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Oracle Cards */
.oracle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.oracle-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.oracle-card:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.oracle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.oracle-card h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Duration List */
.duration-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.duration-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white-ethereal);
}

/* Oracle Includes */
.oracle-includes {
    margin-top: 1.5rem;
}

.oracle-includes h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.oracle-includes ul {
    list-style: none;
    padding: 0;
}

.oracle-includes li {
    padding: 0.3rem 0;
    color: var(--white-ethereal);
}

.oracle-includes li::before {
    content: '✓ ';
    color: var(--gold-liquid);
    margin-right: 0.5rem;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.approach-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.approach-card:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.approach-card h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Session Process */
.session-process {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.step:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gold-liquid);
    color: var(--black-absolute);
    border-radius: 50%;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Session Includes */
.session-includes {
    margin: 1.5rem 0;
}

.session-includes h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.session-includes ul {
    list-style: none;
    padding: 0;
}

.session-includes li {
    padding: 0.3rem 0;
    color: var(--white-ethereal);
}

.session-includes li::before {
    content: '📋 ';
    margin-right: 0.5rem;
}

/* Important Note */
.important-note {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--scarlet);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.important-note p {
    color: var(--white-ethereal);
    margin: 0;
    font-size: 0.9rem;
}

/* Free Content */
.free-card {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--gold-liquid) !important;
}

.free-card h4 {
    color: var(--gold-liquid) !important;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.content-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.content-card:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
}

.content-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.content-card h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Live Schedule */
.live-schedule {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.live-schedule h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.live-schedule p {
    color: var(--white-ethereal);
    margin: 0.5rem 0;
}

/* Platforms */
.platforms h5 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.platforms ul {
    list-style: none;
    padding: 0;
}

.platforms li {
    padding: 0.3rem 0;
    color: var(--white-ethereal);
}

.platforms li::before {
    content: '📱 ';
    margin-right: 0.5rem;
}

/* Topics List */
.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.topic-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-liquid);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.topic-tag:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

/* Services Final CTA */
.services-final-cta {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.1) 0%, 
                rgba(0, 0, 0, 0.9) 50%,
                rgba(212, 175, 55, 0.1) 100%);
    border-radius: 30px;
    border: 3px solid var(--gold-liquid);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.services-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-liquid), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--rose-pearl), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--scarlet), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.services-final-cta h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--rose-pearl);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.final-cta-button {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.guarantee-text {
    color: var(--white-ethereal);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Contact Content */
.contact-content {
    padding: var(--section-padding);
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Quick Contact */
.quick-contact h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white-ethereal);
    transition: var(--transition);
}

.contact-option:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.contact-option.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

.option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 1.8rem;
}

.whatsapp .option-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.email .option-icon {
    background: linear-gradient(135deg, var(--gold-liquid), var(--gold-dark));
    color: var(--black-absolute);
}

.option-content h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.option-content p {
    color: var(--rose-pearl);
    margin-bottom: 0.5rem;
}

.option-action {
    color: var(--white-ethereal);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Form */
.contact-form-section h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.form-description {
    color: var(--rose-pearl);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold-liquid);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-field {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--white-ethereal);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field:focus {
    outline: none;
    border-color: var(--gold-liquid);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-field::placeholder {
    color: rgba(254, 254, 254, 0.5);
}

select.form-field {
    cursor: pointer;
}

textarea.form-field {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: var(--white-ethereal);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-liquid);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-liquid);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--black-absolute);
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label a {
    color: var(--gold-liquid);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--white-ethereal);
}

/* Form Submit */
.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Services Guide */
.services-guide {
    margin-bottom: 4rem;
}

.services-guide h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.guide-card:hover {
    border-color: var(--gold-liquid);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.guide-card h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.guide-card p {
    color: var(--rose-pearl);
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.guide-card li {
    padding: 0.3rem 0;
    color: var(--white-ethereal);
    font-size: 0.9rem;
}

.guide-card li::before {
    content: '• ';
    color: var(--gold-liquid);
    margin-right: 0.5rem;
}

.guide-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--scarlet), var(--scarlet-dark));
    color: var(--white-ethereal);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item:hover {
    border-color: var(--gold-liquid);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--white-ethereal);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    outline: none;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--gold-liquid);
    transform: scale(1.01);
}

.faq-question i {
    color: var(--gold-liquid);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--rose-pearl);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Force Styles - Garantir funcionamento */
.faq-question {
    pointer-events: auto !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.faq-question * {
    pointer-events: none;
}

.faq-item.active {
    border-color: var(--gold-liquid) !important;
}

.faq-item.active .faq-question {
    background: rgba(212, 175, 55, 0.1);
}

/* FAQ Hover Effect */
.faq-question:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-liquid);
    transform: scale(1.01);
}

/* Contact Testimonial */
.contact-testimonial {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--scarlet);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white-ethereal);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-testimonial .testimonial-author strong {
    color: var(--gold-liquid);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-testimonial .testimonial-author span {
    color: var(--rose-pearl);
    font-size: 0.9rem;
}

/* Privacy Section */
.privacy-section {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.privacy-section h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.privacy-content p {
    color: var(--white-ethereal);
    margin-bottom: 1rem;
}

.privacy-content ul {
    color: var(--rose-pearl);
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--gold-liquid) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Pages */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-card {
        position: static;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .specialties-grid,
    .mission-values,
    .transformation-areas,
    .awakening-practices,
    .blockages-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .ritual-grid,
    .oracle-grid,
    .approach-grid,
    .content-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .energy-visualization {
        height: 300px;
    }
    
    .energy-body {
        width: 150px;
        height: 300px;
    }
    
    .service-detailed {
        padding: 2rem 1rem;
    }
    
    .service-number {
        display: none;
    }
    
    .contact-options {
        gap: 1rem;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .option-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .service-detailed {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }
    
    .detail-box,
    .step-item,
    .ritual-card,
    .oracle-card,
    .approach-card {
        padding: 1rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .services-final-cta {
        padding: 2rem 1.5rem;
    }
}
