:root {
    --primary-dark: #1a0b2e;
    --primary-light: #2d1b4e;
    --accent-1: #9b6dff;
    --accent-2: #7b2fff;
    --accent-3: #4a1091;
    --text-light: #ffffff;
    --text-glow: rgba(155, 109, 255, 0.5);
    --mystical-gradient: linear-gradient(135deg, var(--accent-3), var(--accent-2), var(--accent-1));
    --card-shadow: 0 0 20px rgba(155, 109, 255, 0.3);
    --section-spacing: 80px;
}

body {
    background: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Enhanced Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 11, 46, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(155, 109, 255, 0.2);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(26, 11, 46, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8em;
    color: var(--text-light);
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
}

.logo .crystal-icon {
    font-size: 0.8em;
    color: var(--accent-2);
    animation: crystalSpin 3s infinite linear;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--mystical-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mystical-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.header nav a:hover {
    color: var(--text-light);
    transform: translateY(-2px);
}

.header nav a:hover::before {
    opacity: 1;
}

.header nav a.active {
    background: var(--mystical-gradient);
    color: var(--text-light);
    box-shadow: 0 0 20px var(--text-glow);
}

@keyframes crystalSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        gap: 40px;
    }

    .header nav.active {
        right: 0;
    }

    .header nav a {
        font-size: 1.4em;
    }
}

/* Header and Navigation */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2em;
    color: var(--accent-1);
    text-shadow: 0 0 10px var(--text-glow);
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-size: 1.1em;
    text-shadow: 0 0 10px var(--text-glow);
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--accent-1);
}

/* Main Content */
main {
    padding-top: 80px;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-content h2 {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 20px;
    color: var(--accent-1);
    text-shadow: 0 0 15px var(--text-glow);
}

.section-description {
    text-align: center;
    font-size: 1.2em;
    color: var(--text-light);
    margin: 0 auto 60px;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 0 0 10px var(--text-glow);
}

/* Enhanced Section Subtitle Styling */
.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--accent-1);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 30px;
    text-shadow: 0 0 10px rgba(245, 193, 86, 0.3);
}

.section-subtitle::before,
.section-subtitle::after {
    content: "✧";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-1);
    font-size: 1.2rem;
    opacity: 0.8;
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

.appointment-section .section-subtitle {
    color: var(--accent-3);
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
}

.appointment-section .section-subtitle::before,
.appointment-section .section-subtitle::after {
    content: '✧';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-1);
    font-size: 1.2rem;
    opacity: 0.8;
}

.appointment-section .section-subtitle::before {
    left: -10px;
}

.appointment-section .section-subtitle::after {
    right: -10px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .appointment-section .section-subtitle {
        font-size: 1.15rem;
        padding: 0 15px;
    }
}

/* Global Animations */
@keyframes gradientMove {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes starMove {
    from { background-position: 0 0; }
    to { background-position: 400px 400px; }
}

@keyframes glow {
    0% { text-shadow: 0 0 20px var(--text-glow); }
    50% { text-shadow: 0 0 30px var(--accent-1), 0 0 50px var(--accent-2); }
    100% { text-shadow: 0 0 20px var(--text-glow); }
}

@keyframes flipIn {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(180deg);
    }
}

@keyframes flipOut {
    from {
        transform: rotateY(180deg);
    }
    to {
        transform: rotateY(0deg);
    }
}

/* Section Background Effects */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, var(--accent-3), transparent 40%),
        radial-gradient(circle at 80% 70%, var(--accent-2), transparent 40%);
    opacity: 0.1;
    animation: gradientMove 15s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
}

.mystical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(155, 109, 255, 0.2) 0%, transparent 70%);
    animation: overlayPulse 4s infinite alternate;
    z-index: 1;
}

.mystical-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.7), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: 2;
    animation: dustMove 30s linear infinite;
}

.tarot-props {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tarot-card-prop {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(155, 109, 255, 0.5));
    animation: floatProp 8s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 3.5rem;
    transform-origin: center;
    animation: floatProp 8s ease-in-out infinite, rotateSlow 15s linear infinite;
}

.card-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    font-size: 3rem;
}

.card-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
    font-size: 2.5rem;
    animation: floatProp 9s ease-in-out infinite, twinkle 4s ease-in-out infinite;
}

.card-4 {
    top: 40%;
    right: 10%;
    animation-delay: 1.5s;
    font-size: 3.2rem;
    animation: floatProp 7s ease-in-out infinite, pulsate 5s ease-in-out infinite;
}

.card-5 {
    bottom: 30%;
    right: 20%;
    animation-delay: 0.5s;
    font-size: 2.8rem;
    animation: floatProp 10s ease-in-out infinite, twinkle 6s ease-in-out infinite;
}

.card-6 {
    top: 60%;
    left: 20%;
    animation-delay: 2.5s;
    font-size: 3.3rem;
    animation: floatProp 8.5s ease-in-out infinite, pulsate 4s ease-in-out infinite;
}

.crystal-ball {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(155, 109, 255, 0.8));
    animation: floatBall 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

.candle {
    position: absolute;
    top: 20%;
    left: 30%;
    font-size: 4rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(255, 223, 0, 0.6));
    animation: candleFlicker 3s ease-in-out infinite;
}

.pentagram {
    position: absolute;
    top: 30%;
    right: 30%;
    font-size: 4.5rem;
    opacity: 0.6;
    filter: drop-shadow(0 0 15px rgba(155, 109, 255, 0.7));
    animation: rotateSlow 20s linear infinite, pulsate 5s ease-in-out infinite;
}

@keyframes dustMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes floatProp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes pulsate {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes floatBall {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-30px) translateX(-50%);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(155, 109, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(155, 109, 255, 0.9));
    }
}

@keyframes candleFlicker {
    0%, 100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(255, 223, 0, 0.6));
    }
    25% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px rgba(255, 223, 0, 0.7));
    }
    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 8px rgba(255, 223, 0, 0.5));
    }
    75% {
        opacity: 0.75;
        filter: drop-shadow(0 0 12px rgba(255, 223, 0, 0.65));
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.animate-text {
    font-size: 4em;
    color: var(--text-light);
    text-shadow: 0 0 20px var(--text-glow);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.animate-text-delay {
    font-size: 1.8em;
    color: var(--accent-2);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.floating-cards {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tarot-card {
    font-size: 4em;
    animation: floatCard 6s infinite;
    opacity: 0;
    transform: translateY(30px);
}

.tarot-card:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 5s;
    animation: fadeInUp 1s forwards 0.8s, floatCard 5s infinite 1s;
}

.tarot-card:nth-child(2) {
    animation-delay: 0.3s;
    animation-duration: 6s;
    animation: fadeInUp 1s forwards 1s, floatCard 6s infinite 1.2s;
}

.tarot-card:nth-child(3) {
    animation-delay: 0.6s;
    animation-duration: 7s;
    animation: fadeInUp 1s forwards 1.2s, floatCard 7s infinite 1.4s;
}

.hero-cta {
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.5s;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 109, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(155, 109, 255, 0.7);
}

.cta-text {
    margin-right: 10px;
}

.cta-icon {
    font-size: 1.3rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes overlayPulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .animate-text {
        font-size: 2.5em;
    }

    .animate-text-delay {
        font-size: 1.2em;
    }
    
    .tarot-card-prop {
        font-size: 2.5rem;
    }
    
    .crystal-ball {
        font-size: 4rem;
    }
    
    .candle, .pentagram {
        font-size: 3rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* Cards Section */
.cards-section {
    background: var(--primary-light);
    padding: var(--section-spacing) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.card-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.card-position {
    flex: 0 1 300px;
    text-align: center;
    margin-bottom: 40px;
}

.position-label {
    color: var(--accent-1);
    font-size: 1.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--text-glow);
    padding: 0 10px;
}

.card {
    width: 200px;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-front {
    background: var(--mystical-gradient);
    border: 2px solid var(--accent-1);
    transform: rotateY(0deg);
}

.card-back {
    background: var(--primary-dark);
    border: 2px solid var(--accent-1);
    transform: rotateY(180deg);
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

/* Hover effect only for unflipped cards */
.card:not(.flipped):hover .card-inner {
    transform: translateY(-5px);
}

.card:not(.flipped):hover {
    box-shadow: 0 0 30px rgba(155, 109, 255, 0.3);
}

.card-symbol::before {
    content: '✧';
    font-size: 2em;
    color: var(--accent-1);
    opacity: 0.8;
    animation: symbolFloat 3s ease-in-out infinite;
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-pattern {
    animation: patternRotate 20s linear infinite;
}

@keyframes patternRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.card-meaning {
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.card.flipped .card-meaning {
    transform: translateY(0);
}

.card:hover .card-pattern {
    opacity: 0.2;
}

.card:hover .card-symbol::before {
    text-shadow: 0 0 20px var(--accent-1);
}

.card-design {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.card-symbol {
    font-size: 2em;
    color: var(--text-light);
    text-shadow: 0 0 15px var(--text-glow);
}

.card-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: radial-gradient(circle at center, var(--accent-1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.card-design p {
    color: var(--text-light);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--text-glow);
    margin: 0;
    padding: 10px;
    background: rgba(26, 11, 46, 0.8);
    border-radius: 4px;
    width: fit-content;
}

.card-meaning {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 11, 46, 0.95), rgba(26, 11, 46, 0.7));
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.card-meaning h3 {
    color: var(--accent-1);
    font-size: 1.4em;
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px var(--text-glow);
    line-height: 1.2;
}

.keywords {
    color: var(--text-light);
    font-size: 0.95em;
    margin: 0;
    padding: 0 10px;
    line-height: 1.4;
    font-style: italic;
}

/* Media Queries for Cards */
@media (max-width: 1200px) {
    .card-deck {
        gap: 30px;
    }
    
    .card-position {
        flex: 0 1 280px;
    }
    
    .card {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .card-deck {
        gap: 20px;
    }
    
    .card-position {
        flex: 0 1 260px;
    }
    
    .card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .cards-section {
        padding: 60px 0;
    }
    
    .card-deck {
        gap: 40px;
    }
    
    .card-position {
        flex: 0 1 280px;
    }
}

@media (max-width: 480px) {
    .card-position {
        flex: 0 1 240px;
    }
    
    .card {
        height: 380px;
    }
    
    .position-label {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    .card-meaning h3 {
        font-size: 1.2em;
    }
    
    .keywords {
        font-size: 0.85em;
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .section-content h2 {
        font-size: 2em;
    }
    
    .section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    
    .card-meaning {
        padding: 15px;
    }
    
    .card-meaning h3 {
        font-size: 1.3em;
        margin-bottom: 6px;
    }
    
    .keywords {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .section-content h2 {
        font-size: 1.8em;
    }
    
    .section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .card-design p {
        font-size: 1em;
    }
    
    .card-meaning h3 {
        font-size: 1.2em;
    }
    
    .keywords {
        font-size: 0.85em;
        padding: 0 5px;
    }
}

/* Reading Results */
.reading-message {
    background: rgba(26, 11, 46, 0.95);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(155, 109, 255, 0.3);
    border: 1px solid var(--accent-1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reading-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.reading-card {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid var(--accent-1);
    box-shadow: 0 0 20px rgba(155, 109, 255, 0.2);
}

.reading-card h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--accent-1);
    text-shadow: 0 0 10px var(--text-glow);
}

.reading-card p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Enhanced Reading Message Styles */
.reading-message {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(26, 11, 46, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.reading-message h3 {
    color: var(--accent-1);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.reading-message ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reading-message li {
    padding: 15px;
    margin: 10px 0;
    background: rgba(155, 109, 255, 0.1);
    border-left: 3px solid var(--accent-1);
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--accent-2);
}

/* Section Title Effects */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    background: var(--mystical-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--text-glow);
}

/* Buttons */
.submit-button {
    background: var(--mystical-gradient);
    color: var(--text-light);
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(155, 109, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(155, 109, 255, 0.5);
}

/* About Section Styles */
.about-section {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-intro {
    text-align: center;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.about-item {
    background: rgba(26, 11, 46, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--accent-1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mystical-gradient);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.about-item:hover::before {
    opacity: 0.2;
}

.about-icon {
    font-size: 2em;
    color: var(--accent-1);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--text-glow);
}

.about-item h3 {
    color: var(--accent-1);
    font-size: 1.4em;
    margin-bottom: 15px;
    position: relative;
}

.about-item p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

/* Features Section */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.feature {
    background: rgba(26, 11, 46, 0.6);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--accent-1);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--mystical-gradient);
    opacity: 0.1;
    filter: blur(40px);
    transform: translate(30%, -30%);
}

.feature h4 {
    color: var(--accent-1);
    font-size: 1.3em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--text-glow);
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Reading Types */
.reading-types {
    margin-top: 60px;
}

.reading-types h3 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--accent-1);
    text-shadow: 0 0 15px var(--text-glow);
}

.reading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reading-type {
    background: rgba(26, 11, 46, 0.6);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--accent-1);
    text-align: center;
    transition: all 0.3s ease;
}

.reading-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(155, 109, 255, 0.2);
}

.reading-type h4 {
    color: var(--accent-1);
    font-size: 1.2em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--text-glow);
}

.reading-type p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8em;
    }
    
    .tarot-intro {
        flex-direction: column;
        align-items: center;
    }
    
    .card-deck {
        flex-wrap: wrap;
    }
    
    .about-grid, .reading-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav a {
        margin: 0 15px;
        font-size: 1em;
    }
    
    .hero h2 {
        font-size: 2.4em;
    }
    
    .card {
        width: 240px;
        height: 420px;
    }
    
    .reading-message {
        padding: 30px;
    }
    
    .about-grid, .about-features, .reading-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    
    .about-item, .feature, .reading-type {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .card-position {
        flex: 0 1 240px;
    }
    
    .card {
        height: 380px;
    }
    
    .reading-card {
        padding: 20px;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .about-item h3 {
        font-size: 1.3em;
    }
    
    .reading-types h3 {
        font-size: 1.6em;
    }
    
    .feature h4, .reading-type h4 {
        font-size: 1.1em;
    }
}

/* WhatsApp Booking Styles */
.whatsapp-booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(26, 11, 46, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(155, 109, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--accent-3), transparent 40%),
        radial-gradient(circle at 80% 70%, var(--accent-2), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.whatsapp-info {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.whatsapp-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent-1);
    text-shadow: 0 0 15px rgba(155, 109, 255, 0.7);
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.booking-instructions {
    color: var(--light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.reading-options-title {
    font-size: 1.7rem;
    color: var(--accent-2);
    margin: 40px 0 20px;
    text-shadow: 0 0 10px rgba(155, 109, 255, 0.5);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.reading-options-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-1);
    box-shadow: 0 0 10px rgba(155, 109, 255, 0.8);
}

.reading-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reading-type-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(155, 109, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reading-type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 109, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.reading-type-card:hover::before,
.reading-type-card.active::before {
    opacity: 1;
}

.reading-type-card:hover,
.reading-type-card.active {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-1);
}

.reading-type-card.active {
    border: 2px solid var(--accent-1);
    background: rgba(45, 27, 78, 0.8);
    box-shadow: 0 0 25px rgba(155, 109, 255, 0.4);
}

.reading-type-card h3 {
    color: var(--accent-1);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.reading-type-card p {
    color: var(--light);
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.reading-type-card p:first-of-type {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    margin-right: 12px;
    font-size: 1.4rem;
}

/* Responsive styles for WhatsApp booking */
@media (max-width: 992px) {
    .whatsapp-booking-container {
        padding: 25px 20px;
    }
    
    .whatsapp-info h3 {
        font-size: 1.8rem;
    }
    
    .whatsapp-info p {
        font-size: 1.1rem;
    }
    
    .reading-type-card {
        padding: 20px 15px;
    }
    
    .reading-options-title {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .whatsapp-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .reading-type-options {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .whatsapp-info h3 {
        font-size: 1.6rem;
    }
    
    .reading-options-title::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .whatsapp-booking-container {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .whatsapp-info h3 {
        font-size: 1.4rem;
    }
    
    .whatsapp-info p {
        font-size: 1rem;
    }
    
    .reading-type-card h3 {
        font-size: 1.3rem;
    }
    
    .reading-type-card p {
        font-size: 0.95rem;
    }
    
    .whatsapp-button {
        font-size: 1.1rem;
        padding: 15px 25px;
        margin: 30px auto 15px;
    }
    
    .reading-options-title {
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }
    
    .reading-options-title::after {
        width: 50px;
        bottom: -8px;
    }
}

/* About Section */
.about-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary-light));
}

.about-content {
    text-align: center;
}

.mystical-quote {
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-style: italic;
    color: var(--accent-1);
}

.about-bio {
    margin: 40px 0;
    padding: 30px;
    background: rgba(74, 16, 145, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(155, 109, 255, 0.2);
}

.about-bio h2 {
    color: var(--accent-1);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
}

.reader-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.reader-description {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.reader-description p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: rgba(74, 16, 145, 0.2);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(155, 109, 255, 0.3);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 109, 255, 0.3);
}

.about-card .crystal-icon {
    display: block;
    font-size: 2em;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--accent-2);
    margin-bottom: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
    .reader-profile {
        flex-direction: column;
    }
    
    .reader-description {
        text-align: center;
    }
    
    .about-bio {
        padding: 20px;
    }
}

/* Services Section */
.services-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    overflow: hidden;
}

.mystical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%239b6dff" opacity="0.3"/></svg>');
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 109, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 109, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 109, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-crystal {
    font-size: 2.5em;
    color: var(--accent-1);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--accent-1);
    font-size: 1.5em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 11, 46, 0.9);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(155, 109, 255, 0.5);
    border: 1px solid rgba(155, 109, 255, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--accent-1);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--text-light);
}

.modal-body {
    padding: 40px;
    color: var(--text-light);
}

.modal-body h2 {
    color: var(--accent-1);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.service-icon {
    text-align: center;
    font-size: 3em;
    margin: 20px 0;
}

.service-benefits {
    background: rgba(74, 16, 145, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.service-benefits h3 {
    color: var(--accent-2);
    margin-bottom: 15px;
}

.service-benefits ul {
    list-style-type: none;
    padding: 0;
}

.service-benefits li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-benefits li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--accent-1);
}

.book-now-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px 25px;
    background: var(--mystical-gradient);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 109, 255, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(155, 109, 255, 0.5);
}

.service-details {
    display: none;
}

/* Media Queries for Services */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}

/* Updated Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(26, 11, 46, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-category {
    margin-bottom: 60px;
    position: relative;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--accent-1);
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Cinzel', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
}

.pricing-subcategory {
    margin-bottom: 40px;
}

.subcategory-title {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 5px;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.subcategory-desc {
    font-size: 1rem;
    color: var(--light-purple);
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 109, 255, 0.3);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent-1);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(155, 109, 255, 0.2);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 25px 20px;
    text-align: center;
    background: rgba(26, 11, 46, 0.7);
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 109, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover .pricing-header::before {
    opacity: 1;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-1);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(155, 109, 255, 0.5);
}

.duration {
    font-size: 0.9rem;
    color: var(--light-purple);
    font-style: italic;
}

.pricing-features {
    padding: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--light);
    position: relative;
    padding-left: 5px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.book-now-btn {
    display: block;
    width: 80%;
    margin: 0 auto 25px;
    padding: 12px 20px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    color: var(--dark);
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.book-now-btn:active {
    transform: translateY(0);
}

.book-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.book-now-btn:hover::after {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

/* Responsive styles for pricing section */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1.03);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .subcategory-title {
        font-size: 1.3rem;
    }
}

/* Floating Symbols */
.floating-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.floating-symbols span {
    position: absolute;
    display: block;
    color: rgba(155, 109, 255, 0.3);
    font-size: 24px;
    animation: float-symbol 8s linear infinite;
}

.floating-symbols span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
    font-size: 30px;
}

.floating-symbols span:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-duration: 9s;
    animation-delay: 1s;
    font-size: 26px;
}

.floating-symbols span:nth-child(3) {
    top: 30%;
    left: 20%;
    animation-duration: 10s;
    animation-delay: 2s;
    font-size: 28px;
}

.floating-symbols span:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-duration: 11s;
    animation-delay: 0.5s;
    font-size: 32px;
}

.floating-symbols span:nth-child(5) {
    top: 50%;
    left: 30%;
    animation-duration: 9.5s;
    animation-delay: 1.5s;
    font-size: 24px;
}

.floating-symbols span:nth-child(6) {
    top: 60%;
    left: 60%;
    animation-duration: 10.5s;
    animation-delay: 2.5s;
    font-size: 28px;
}

.floating-symbols span:nth-child(7) {
    top: 70%;
    left: 40%;
    animation-duration: 11.5s;
    animation-delay: 1s;
    font-size: 30px;
}

.floating-symbols span:nth-child(8) {
    top: 80%;
    left: 50%;
    animation-duration: 8.5s;
    animation-delay: 2s;
    font-size: 26px;
}

.floating-symbols span:nth-child(9) {
    top: 15%;
    left: 45%;
    animation-duration: 12s;
    animation-delay: 0.5s;
    font-size: 28px;
}

.floating-symbols span:nth-child(10) {
    top: 25%;
    left: 75%;
    animation-duration: 10s;
    animation-delay: 1.5s;
    font-size: 32px;
}

.floating-symbols span:nth-child(11) {
    top: 85%;
    left: 15%;
    animation-duration: 9.5s;
    animation-delay: 2.5s;
    font-size: 24px;
}

.floating-symbols span:nth-child(12) {
    top: 45%;
    left: 85%;
    animation-duration: 11s;
    animation-delay: 0s;
    font-size: 30px;
}

@keyframes float-symbol {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Appointment Section - Enhanced */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary-darker));
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(155, 109, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.appointment-section .container {
    position: relative;
    z-index: 2;
}

.whatsapp-booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
    background: rgba(26, 11, 46, 0.7);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(155, 109, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.whatsapp-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(155, 109, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 109, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.whatsapp-info {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.whatsapp-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--accent-2);
    text-shadow: 0 0 15px rgba(155, 109, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.booking-instructions {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.reading-categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.reading-category {
    width: 100%;
    position: relative;
}

.reading-options-title {
    font-size: 1.7rem;
    color: var(--accent-1);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

.reading-options-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
}

.reading-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.reading-type-card {
    background: rgba(45, 27, 78, 0.7);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(155, 109, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reading-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 109, 255, 0.1) 0%, transparent 100%);
    z-index: 0;
}

.reading-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(55, 35, 95, 0.7);
    border-color: rgba(155, 109, 255, 0.3);
}

.reading-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-2);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.reading-type-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    flex-grow: 1;
}

.price-options {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(155, 109, 255, 0.2);
    position: relative;
    z-index: 1;
}

.price-options p {
    font-weight: 600;
    color: var(--accent-1);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.price-options p:last-child {
    margin-bottom: 0;
}

.booking-action {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.booking-note {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .whatsapp-booking-container {
        padding: 40px 25px;
    }
    
    .whatsapp-info h3 {
        font-size: 1.8rem;
    }
    
    .booking-instructions {
        font-size: 1.05rem;
    }
    
    .reading-options-title {
        font-size: 1.5rem;
    }
    
    .reading-type-options {
        grid-template-columns: 1fr;
    }
    
    .reading-type-card {
        padding: 25px 20px;
    }
    
    .reading-type-card h3 {
        font-size: 1.4rem;
    }
    
    .reading-type-card > p {
        font-size: 1rem;
    }
    
    .price-options p {
        font-size: 1rem;
    }
    
    .whatsapp-button {
        padding: 16px 32px;
        font-size: 1.2rem;
    }
    
    .booking-note {
        font-size: 0.9rem;
    }
}
