/*=========================================
  GOOGLE FONTS
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');


/*=========================================
  ROOT VARIABLES
=========================================*/
:root{

    --bg:#090714;
    --bg2:#15102B;
    --card:rgba(255,255,255,.05);

    --gold:#F4C542;
    --gold-dark:#c99d12;

    --purple:#7B2FF7;
    --purple-light:#B15CFF;

    --white:#ffffff;
    --text:#d8d8e6;

    --border:rgba(255,255,255,.12);

    --radius:18px;

    --shadow:0 15px 45px rgba(0,0,0,.35);

    --transition:.35s ease;

}


/*=========================================
  RESET
=========================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.55;

    font-size:0.9rem;

}


/*=========================================
  SELECTION
=========================================*/

::selection{

    background:var(--gold);

    color:#111;

}


/*=========================================
  SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#080510;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}


/*=========================================
  COMMON
=========================================*/

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,90%);

    margin:auto;

}

section{

    padding:60px 0;

}


/*=========================================
  TYPOGRAPHY
=========================================*/

h1,h2,h3,h4{

    font-family:'Cinzel',serif;

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:clamp(2.0rem,4vw,3.2rem);

}

h2{

    font-size:clamp(1.5rem,3.5vw,2.2rem);

}

h3{

    font-size:1.15rem;

}

p{

    color:var(--text);

    margin:12px 0;

    font-size:0.9rem;

}

.section-heading{

    text-align:center;

    max-width:760px;

    margin:auto auto 60px;

}

.section-subtitle{

    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.85rem;

    font-weight:600;

}


/*=========================================
  BUTTONS
=========================================*/

.gold-btn,
.book-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--gold),#ffd76b);

    color:#111;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(244,197,66,.25);

}

.gold-btn:hover,
.book-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(244,197,66,.45);

}

.outline-btn,
.glass-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    color:#fff;

    transition:var(--transition);

}

.outline-btn:hover,
.glass-btn:hover{

    background:var(--purple);

    border-color:var(--purple);

}


/*=========================================
  GLASS CARD
=========================================*/

.glass-card{

    background:var(--card);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/*=========================================
  LOADER
=========================================*/

#loader{

    position:fixed;

    inset:0;

    background:#080510;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.5s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:90px;

    margin:auto;

    animation:float 3s infinite;

}

.loader-content h2{

    margin-top:15px;

}

.loader-content span{

    color:var(--gold);

}


/*=========================================
  CUSTOM CURSOR
=========================================*/

.cursor-dot,
.cursor-outline{

    display: none !important;

    position:fixed;

    top:0;

    left:0;

    pointer-events:none;

    z-index:9999;

    border-radius:50%;

}

.cursor-dot{

    width:8px;

    height:8px;

    background:var(--gold);

}

.cursor-outline{

    width:35px;

    height:35px;

    border:1px solid var(--gold);

    transition:.08s;

}


/*=========================================
  BACKGROUND
=========================================*/

.magic-background{

    position:fixed;

    inset:0;

    z-index:-5;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#371068 0%,transparent 40%),
    radial-gradient(circle at bottom left,#2d1058 0%,transparent 35%),
    var(--bg);

}

.magic-background::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(circle,rgba(255,255,255,.45) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.18;

}


/*=========================================
  PROGRESS BAR
=========================================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(90deg,var(--gold),var(--purple));

    z-index:99999;

}


/*=========================================
  FLOAT ANIMATION
=========================================*/

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/*=========================================
  NAVBAR
=========================================*/

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    padding:12px 0;

    transition:.4s;

}


.navbar{

    width:min(1200px,90%);

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:8px 20px;

    background:rgba(10,7,20,.65);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:60px;

}



.logo{

    display:flex;

    align-items:center;

    gap:12px;

}



.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}



.logo h2{

    font-size:1.2rem;

    color:var(--gold);

}



.logo span{

    font-size:.75rem;

    color:var(--text);

}



.nav-links{

    display:flex;

    gap:28px;

}



.nav-links a{

    font-size:.9rem;

    color:var(--text);

    transition:.3s;

    position:relative;

}



.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}



.nav-links a:hover,
.nav-links a.active{

    color:var(--gold);

}



.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}



#menu-btn{

    display:none;

    font-size:1.5rem;

    cursor:pointer;

}



/*=========================================
  HERO COMMON
=========================================*/

.page-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    padding-top:140px;

}



.page-hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:50px;

}



.page-hero-content h1{

    margin:20px 0;

}



.page-hero-content p{

    max-width:620px;

    font-size:1.05rem;

}



.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}



/*=========================================
  HERO CARD
=========================================*/

.hero-card{

    padding:35px;

    background:rgba(255,255,255,.06);

    border:1px solid var(--border);

    border-radius:25px;

    backdrop-filter:blur(20px);

    box-shadow:var(--shadow);

    animation:float 5s infinite;

}



.hero-card i{

    font-size:3rem;

    color:var(--gold);

}



.hero-card h3{

    margin:20px 0;

}



.hero-card li{

    margin:15px 0;

    color:var(--text);

}



.hero-card li i{

    font-size:1rem;

    margin-right:10px;

}


/*=========================================
  COMMON GRID
=========================================*/

.card-grid,
.reading-grid,
.pricing-grid,
.benefits-grid,
.contact-grid,
.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



/*=========================================
  COMMON CARD
=========================================*/

.card,
.reading-card,
.benefit-card,
.contact-card,
.process-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:35px 30px;

    backdrop-filter:blur(18px);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}



.card::before,
.reading-card::before,
.benefit-card::before,
.contact-card::before,
.process-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(244,197,66,.12),
        transparent
    );

    opacity:0;

    transition:.4s;

}



.card:hover,
.reading-card:hover,
.benefit-card:hover,
.contact-card:hover,
.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}



.card:hover::before,
.reading-card:hover::before,
.benefit-card:hover::before,
.contact-card:hover::before,
.process-card:hover::before{

    opacity:1;

}



.card i,
.reading-card i,
.benefit-card i,
.contact-card i,
.process-card i{

    font-size:2.3rem;

    color:var(--gold);

    margin-bottom:20px;

}



.card h3,
.reading-card h3,
.benefit-card h3,
.contact-card h3,
.process-card h3{

    margin-bottom:15px;

}



/*=========================================
  IMAGE CARD
=========================================*/

.reading-card img{

    height:250px;

    width:100%;

    object-fit:cover;

    border-radius:15px;

    margin-bottom:20px;

}


/*=========================================
  BADGES
=========================================*/

.badge,
.plan-badge,
.popular-tag,
.premium-tag{

    display:inline-block;

    padding:7px 18px;

    border-radius:30px;

    font-size:.75rem;

    font-weight:600;

    letter-spacing:1px;

    background:var(--gold);

    color:#111;

}



/*=========================================
  CTA
=========================================*/

.cta-banner{

    background:
    linear-gradient(
        135deg,
        rgba(123,47,247,.25),
        rgba(244,197,66,.15)
    );

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}



.cta-content{

    text-align:center;

    max-width:750px;

    margin:auto;

}



.cta-content span{

    color:var(--gold);

    letter-spacing:2px;

}


.cta-content h2{

    margin:20px 0;

}

/*=========================================
  PRICING SECTION
=========================================*/

.pricing-card{

    background:var(--card);

    border:1px solid var(--border);

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    position:relative;

    backdrop-filter:blur(20px);

    transition:.35s;

}


.pricing-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

}


.pricing-card.featured-plan{

    border:2px solid var(--gold);

    transform:scale(1.04);

}


.pricing-card .plan-icon{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:20px auto;

    border-radius:50%;

    background:rgba(244,197,66,.12);

}


.pricing-card .plan-icon i{

    font-size:2rem;

    color:var(--gold);

}


.price{

    font-size:3rem;

    font-weight:700;

    color:var(--gold);

    margin:15px 0;

}


.pricing-card ul{

    margin:25px 0;

    text-align:left;

}


.pricing-card li{

    margin:12px 0;

    color:var(--text);

}


.pricing-card li i{

    color:var(--gold);

    margin-right:8px;

}


.popular-tag,
.premium-tag{

    position:absolute;

    top:15px;

    right:15px;

}


/*=========================================
  BOOKING FORM
=========================================*/

.booking-form,
.contact-form-box{

    background:var(--card);

    border:1px solid var(--border);

    padding:40px;

    border-radius:25px;

    backdrop-filter:blur(20px);

}


.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}


.form-group{

    margin-bottom:22px;

}


.form-group label{

    display:block;

    margin-bottom:8px;

    color:white;

    font-weight:500;

}


.form-group span{

    color:var(--gold);

}


.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:15px 18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    color:white;

    outline:none;

    font-family:inherit;

}


.form-group select option{

    background:#111;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:var(--gold);

}


.checkbox-group{

    margin:25px 0;

    color:var(--text);

}


.checkbox-group input{

    margin-right:10px;

}


.submit-btn{

    width:100%;

}



/*=========================================
  PROCESS SECTION
=========================================*/


.process-card{

    text-align:center;

}


.process-icon{

    width:70px;

    height:70px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(244,197,66,.12);

}


.process-card span{

    display:block;

    color:var(--gold);

    margin:15px 0;

    font-size:.85rem;

}



/*=========================================
 FAQ
=========================================*/


.faq-container{

    max-width:850px;

    margin:auto;

}


.faq-item{

    margin-bottom:15px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    overflow:hidden;

}


.faq-question{

    width:100%;

    padding:20px;

    background:none;

    border:0;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:1rem;

    cursor:pointer;

}


.faq-answer{

    padding:0 20px;

    max-height:0;

    overflow:hidden;

    transition:.4s;

}


.faq-item.active .faq-answer{

    max-height:200px;

    padding-bottom:20px;

}



/*=========================================
 CONTACT
=========================================*/


.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}


.contact-feature{

    display:flex;

    gap:20px;

    margin:25px 0;

}


.contact-feature i{

    color:var(--gold);

    font-size:1.8rem;

}


.contact-grid{

    grid-template-columns:repeat(3,1fr);

}


.contact-card{

    text-align:center;

}


.contact-card a{

    color:var(--gold);

}



/*=========================================
 BUSINESS HOURS
=========================================*/


.hours-box{

    text-align:center;

    padding:50px;

    border-radius:25px;

    background:var(--card);

    border:1px solid var(--border);

}



/*=========================================
 FOOTER
=========================================*/


.footer{

    padding:70px 0 20px;

    background:#06040d;

}


.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

}


.footer-logo{

    width:80px;

}


.footer h3{

    color:var(--gold);

    margin-bottom:20px;

}


.footer li{

    margin:10px 0;

}


.footer li a{

    color:var(--text);

}


.footer-bottom{

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid var(--border);

    text-align:center;

}



/*=========================================
 ANIMATIONS
=========================================*/


@keyframes glow{

    0%,100%{

        box-shadow:0 0 10px var(--gold);

    }

    50%{

        box-shadow:0 0 30px var(--gold);

    }

}


.gold-btn{

    animation:glow 3s infinite;

}



/*=========================================
 RESPONSIVE
=========================================*/


@media(max-width:992px){


.nav-links{

    position:fixed;

    top:90px;

    left:-100%;

    width:100%;

    background:#0d091c;

    flex-direction:column;

    text-align:center;

    padding:40px;

    transition:.4s;

}


.nav-links.active{

    left:0;

}


#menu-btn{

    display:block;

}


.page-hero .container,
.contact-wrapper{

    grid-template-columns:1fr;

}


.card-grid,
.reading-grid,
.pricing-grid,
.benefits-grid,
.contact-grid,
.process-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


section{

    padding:60px 0;

}


.navbar{

    padding:12px 18px;

}


.logo h2{

    font-size:1rem;

}


.page-hero{

    min-height:auto;

}


h1{

    font-size:2.4rem;

}


.form-grid{

    grid-template-columns:1fr;

}


.card-grid,
.reading-grid,
.pricing-grid,
.benefits-grid,
.contact-grid,
.process-grid,
.footer-grid{

    grid-template-columns:1fr;

}


.pricing-card.featured-plan{

    transform:none;

}


.booking-form,
.contact-form-box{

    padding:25px;

}


.cursor-dot,
.cursor-outline{

    display:none;

}


}

/*=========================================
  TAROT MYSTICAL REDESIGN ADDITIONS
=========================================*/

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 160px 0 60px;
    background: radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 197, 66, 0.08) 0%, transparent 50%);
}

.hero-container {
    width: min(1200px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    align-items: center;
    gap: 60px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(244, 197, 66, 0.08);
    border: 1px solid rgba(244, 197, 66, 0.2);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.25;
    margin-bottom: 20px;
    color: #fff;
}

.hero-left h1 span {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.hero-left p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features .feature i {
    font-size: 1.2rem;
    color: var(--gold);
    background: rgba(244, 197, 66, 0.1);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(244, 197, 66, 0.2);
}

.hero-features .feature span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/* Hero Right Visual Deck */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-scene {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing Aura backdrops */
.hero-scene::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 6s infinite alternate;
}

/* Glassmorphic Framed Image */
.hero-scene-card {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255,255,255,0.15);
    background: rgba(25, 18, 50, 0.45);
    backdrop-filter: blur(20px);
    padding: 12px;
}

.hero-scene-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-scene-card:hover img {
    transform: scale(1.03);
}

/* Floating interactive items in Hero Right */
.moon-glow, .crystal-ball, .crystal-1, .crystal-2, .crystal-3 {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.moon-glow {
    top: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(244, 197, 66, 0.6));
    animation: celestialFloat 5s infinite ease-in-out;
}

.crystal-ball {
    bottom: -15px;
    left: -20px;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(123, 47, 247, 0.5));
    animation: celestialFloat 6s infinite ease-in-out reverse;
}

.crystal-1 {
    top: 30%;
    left: -35px;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(123, 47, 247, 0.4));
    animation: celestialFloat 4s infinite ease-in-out 1s;
}

.crystal-2 {
    bottom: 25%;
    right: -25px;
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 12px rgba(244, 197, 66, 0.4));
    animation: celestialFloat 5.5s infinite ease-in-out 0.5s;
}

.magic-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px var(--gold));
    animation: sparkleTwinkle 3s infinite ease-in-out;
}

.star-1 { top: 10%; left: 20%; animation-delay: 0.2s; }
.star-2 { top: 25%; right: 15%; animation-delay: 0.8s; }
.star-3 { bottom: 30%; left: 10%; animation-delay: 1.5s; }
.star-4 { bottom: 15%; right: 25%; animation-delay: 2.2s; }

/* Hero Bottom Cards */
.hero-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 70px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    width: 100%;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 15px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-info:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(244, 197, 66, 0.1);
    background: rgba(25, 18, 50, 0.35);
}

.hero-info i {
    font-size: 1.6rem;
    color: var(--gold);
    filter: drop-shadow(0 0 5px rgba(244, 197, 66, 0.3));
}

.hero-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    margin: 0;
    color: #fff;
}

/* Animations definitions */
@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes celestialFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}

/*=========================================
  ABOUT PREVIEW
=========================================*/
.about-preview {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    border-bottom: 1px solid var(--border);
}

.section-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 60%);
}

.about-preview .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.90fr 1.10fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(244, 197, 66, 0.35); /* Elegant gold border */
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.25), 0 0 15px rgba(244, 197, 66, 0.15); /* Soft mystical glow */
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    max-width: 420px; /* Restrict image size */
    margin: auto;
}

.image-frame img {
    width: 100%;
    height: 320px; /* Uniform structural height */
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
    text-align: center;
    z-index: 10;
}

.experience-badge h2 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 800;
}

.experience-badge span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.about-content h2 {
    margin: 15px 0 25px;
    line-height: 1.3;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-points i {
    color: var(--gold);
    font-size: 1.15rem;
}

.about-points span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/*=========================================
  WHY CHOOSE ME
=========================================*/
.why-us {
    background: var(--bg2);
    position: relative;
}

.title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.title-center h2 {
    margin-top: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(244, 197, 66, 0.08);
}

.why-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 197, 66, 0.08);
    border: 1px solid rgba(244, 197, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-card .icon i {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0;
}

.why-card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.why-card p {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.7;
}

/*=========================================
  STATS / COUNTER
=========================================*/
.counter-section {
    background: linear-gradient(90deg, rgba(123, 47, 247, 0.08) 0%, rgba(244, 197, 66, 0.04) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 55px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 800;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 8px rgba(244,197,66,0.25));
}

.counter-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/*=========================================
  DIVIDER
=========================================*/
.mystic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.mystic-divider .divider-line {
    height: 1px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.mystic-divider .divider-icon {
    color: var(--gold);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 4px var(--gold));
}

/*=========================================
  HOW IT WORKS
=========================================*/
.how-it-works {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 45px 30px 35px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(123, 47, 247, 0.08);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    user-select: none;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: rgba(244, 197, 66, 0.08);
    transform: scale(1.05);
}

.step-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 22px;
    background: rgba(244, 197, 66, 0.08);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #fff;
}

.step-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
}

/*=========================================
  PRICING PREVIEW
=========================================*/
.pricing-preview {
    background: var(--bg2);
}

/*=========================================
  CLIENT TESTIMONIALS
=========================================*/
.testimonial-section {
    background: var(--bg);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 35px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-light);
    box-shadow: 0 15px 30px rgba(123, 47, 247, 0.08);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: rgba(244, 197, 66, 0.15);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin: 0 0 20px;
}

.testimonial-card h4 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.testimonial-card span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/*=========================================
  BOOKING PREVIEW
=========================================*/
.booking-preview {
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.booking-content h2 {
    margin: 15px 0 25px;
}

.booking-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.booking-image:hover img {
    transform: scale(1.04);
}

/*=========================================
  CONTACT PREVIEW
=========================================*/
.contact-preview {
    background: var(--bg2);
}

/*=========================================
  READINGS PAGE
=========================================*/
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.06);
}

.service-card h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 0.95rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card ul {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.service-card li {
    font-size: 0.92rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .gold-btn {
    width: 100%;
}

/* Premium layout service card updates */
.service-card.featured {
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.15);
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--purple);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(123, 47, 247, 0.3);
}

.premium-card {
    background: radial-gradient(circle at top right, rgba(123, 47, 247, 0.15) 0%, rgba(25, 18, 50, 0.45) 100%) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 15px 40px rgba(244, 197, 66, 0.1) !important;
}

.premium-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #111;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
}

.free-card {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.free-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.08);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive updates for additions */
@media(max-width: 992px) {
    .hero {
        padding-top: 140px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-left {
        align-items: center;
    }
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-right {
        margin: auto;
    }
    .hero-bottom {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .about-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-image {
        max-width: 440px;
        margin: auto;
    }
    .booking-image {
        max-width: 440px;
        margin: auto;
    }
    .why-grid, .steps-grid, .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid, .steps-grid, .testimonial-slider, .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .experience-badge {
        bottom: -15px;
        right: -10px;
        padding: 12px 18px;
    }
    .experience-badge h2 {
        font-size: 1.8rem;
    }
}
}

/*=========================================
  EQUAL HEIGHT CARDS & GRID ALIGNMENT
=========================================*/
.card-grid,
.reading-grid,
.pricing-grid,
.benefits-grid,
.contact-grid,
.process-grid,
.reading-services .reading-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
}

.why-card,
.step-card,
.service-card,
.price-card,
.pricing-card,
.benefit-card,
.contact-card,
.process-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    align-items: stretch !important;
}

/* Push CTA buttons to the bottom of cards to align perfectly */
.why-card a, .why-card button,
.step-card a, .step-card button,
.service-card a, .service-card button,
.price-card a, .price-card button,
.pricing-card a, .pricing-card button,
.benefit-card a, .benefit-card button,
.contact-card a, .contact-card button,
.process-card a, .process-card button,
.service-card .gold-btn,
.service-card .glass-btn,
.price-card .gold-btn,
.price-card .outline-btn {
    margin-top: auto !important;
}

/*=========================================
  Mystical Image Border, Sizing, and Shadows
=========================================*/
.service-card img {
    width: 100% !important;
    height: 160px !important; /* Smaller card images */
    object-fit: cover !important;
    border-bottom: 2px solid rgba(244, 197, 66, 0.2) !important;
    border-radius: var(--radius) var(--radius) 0 0 !important;
}

.hero-scene-card {
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    border: 2px solid rgba(244, 197, 66, 0.35) !important;
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.35), 0 0 20px rgba(244, 197, 66, 0.2) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    max-width: 360px !important; /* Smaller, crisper hero layout image */
    margin: auto !important;
}

.hero-scene-card img {
    width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
    display: block !important;
}

.booking-image {
    max-width: 380px !important;
    margin: auto !important;
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    border: 2px solid rgba(244, 197, 66, 0.35) !important;
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.25) !important;
}

.booking-image img {
    width: 100% !important;
    height: 340px !important;
    object-fit: cover !important;
    display: block !important;
}

/*=========================================
  CARD CONTENT BREATHING SPACE (No Squeezed Text)
=========================================*/
.why-card,
.step-card,
.service-card,
.price-card,
.pricing-card,
.benefit-card,
.contact-card,
.process-card,
.reading-card {
    padding: 0 !important; /* Reset padding to let image flush to the edges */
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    backdrop-filter: blur(18px) !important;
    height: 100% !important;
}

.why-card, .benefit-card, .step-card, .contact-card, .process-card, .reading-card {
    padding-top: 28px !important;
}

/* Style all direct children of cards with left and right margins to prevent touching borders */
.service-card > *:not(img),
.price-card > *:not(img),
.pricing-card > *:not(img),
.why-card > *:not(.step-number),
.benefit-card > *,
.step-card > *:not(.step-number),
.contact-card > *,
.process-card > *,
.reading-card > * {
    margin-left: 28px !important;
    margin-right: 28px !important;
}

/* Spacing and alignments for card elements */
.service-card .service-icon, 
.price-card .price-icon, 
.why-card .icon,
.reading-card .reading-icon,
.step-card i,
.process-card i {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    margin-left: 28px !important; /* Ensure alignment */
}

.reading-card .reading-icon {
    font-size: 2.2rem !important;
    display: inline-block !important;
}

.service-card h2, 
.price-card h2, 
.pricing-card h2,
.why-card h3, 
.benefit-card h3, 
.step-card h3,
.contact-card h3,
.process-card h2,
.reading-card h3 {
    margin-top: 20px !important;
    margin-bottom: 12px !important;
    font-size: 1.25rem !important;
    color: var(--gold) !important;
    line-height: 1.3 !important;
}

.service-card p, 
.price-card p, 
.why-card p, 
.benefit-card p, 
.step-card p,
.contact-card p,
.process-card p,
.reading-card p {
    margin-top: 8px !important;
    margin-bottom: 20px !important;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    color: var(--text) !important;
}

.service-card h4, 
.price-card h4 {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

.service-card ul, 
.price-card ul,
.reading-card ul {
    margin-top: 8px !important;
    margin-bottom: 25px !important;
    margin-left: 28px !important;
    margin-right: 28px !important;
    padding-left: 0 !important;
}

.service-card li, 
.price-card li,
.reading-card li {
    margin-bottom: 10px !important; /* Spacing between USPS items */
    font-size: 0.88rem !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.service-card .gold-btn, 
.service-card .glass-btn,
.price-card .gold-btn, 
.price-card .outline-btn,
.why-card .gold-btn,
.step-card .gold-btn,
.reading-card .gold-btn {
    margin-bottom: 28px !important; /* Spacing at the bottom of the button */
    width: calc(100% - 56px) !important; /* Center the button matching the 28px left/right padding */
    margin-left: 28px !important;
    margin-right: 28px !important;
    text-align: center !important;
    margin-top: auto !important; /* Forces buttons to sit at the absolute bottom */
}

/*=========================================
  ADDITIONAL MOBILE RESPONSIVENESS OVERRIDES
=========================================*/
@media (max-width: 600px) {
    /* 1. Force single column grids on mobile for a clean layout */
    .card-grid,
    .reading-grid,
    .pricing-grid,
    .benefits-grid,
    .contact-grid,
    .process-grid,
    .reading-services .reading-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* 2. Constrain container and grid widths */
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    .hero-left {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        width: 100% !important;
    }

    /* 3. booking page form and contact grid alignment */
    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* 4. Shrink headings on small mobile viewports */
    h1 {
        font-size: 1.8rem !important;
    }
    h2 {
        font-size: 1.4rem !important;
    }
    h3 {
        font-size: 1.1rem !important;
    }

    /* 5. Adjust image sizes inside cards for smaller mobile viewports */
    .service-card img {
        height: 140px !important;
    }

    .hero-scene-card {
        max-width: 280px !important;
    }

    .hero-scene-card img {
        height: 280px !important;
    }

    .booking-image {
        max-width: 280px !important;
    }

    .booking-image img {
        height: 260px !important;
    }

    /* 6. Card margins adjustment on mobile to fit perfectly */
    .service-card > *:not(img),
    .price-card > *:not(img),
    .pricing-card > *:not(img),
    .why-card > *:not(.step-number),
    .benefit-card > *,
    .step-card > *:not(.step-number),
    .contact-card > *,
    .process-card > *,
    .reading-card > * {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .service-card .service-icon, 
    .price-card .price-icon, 
    .why-card .icon,
    .reading-card .reading-icon,
    .step-card i,
    .process-card i {
        margin-left: 20px !important;
    }

    .service-card .gold-btn, 
    .service-card .glass-btn,
    .price-card .gold-btn, 
    .price-card .outline-btn,
    .why-card .gold-btn,
    .step-card .gold-btn,
    .reading-card .gold-btn {
        margin-left: 20px !important;
        margin-right: 20px !important;
        width: calc(100% - 40px) !important;
    }
}