/* css/style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #9d4edd;
    --accent-light: #c77dff;
    --text-color: #f8f9fa;
    --text-secondary: #adb5bd;
    --gold-color: #ffd700;
    --purple-dark: #3a0ca3;
    --purple-light: #7209b7;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-booking {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(157, 78, 221, 0.1);
    transform: translateY(-3px);
}

.btn-booking {
    background: linear-gradient(135deg, var(--gold-color), #ffaa00);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo i {
    color: var(--accent-light);
    margin-right: 10px;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-links a.active {
    color: var(--accent-light);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-light);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background-color: rgba(157, 78, 221, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-card-animation {
    position: relative;
    width: 300px;
    height: 400px;
}

.card {
    position: absolute;
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card i {
    font-size: 5rem;
    color: var(--accent-light);
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 3;
}

.card-2 {
    top: 50px;
    left: 50px;
    transform: rotate(5deg);
    z-index: 2;
    background: linear-gradient(135deg, var(--purple-dark), var(--accent-color));
}

.card-3 {
    top: 100px;
    left: 100px;
    transform: rotate(10deg);
    z-index: 1;
}

.card-1:hover, .card-2:hover, .card-3:hover {
    transform: rotate(0deg) translateY(-10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Daily Horoscope */
.daily-horoscope {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.zodiac-selector {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.zodiac-sign {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.zodiac-sign:hover {
    background-color: rgba(157, 78, 221, 0.1);
    transform: translateY(-5px);
}

.zodiac-sign.active {
    background-color: rgba(157, 78, 221, 0.2);
    border-color: var(--accent-color);
}

.zodiac-sign i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--accent-light);
}

.zodiac-sign span {
    font-size: 0.9rem;
    font-weight: 500;
}

.horoscope-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.horoscope-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horoscope-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.horoscope-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.horoscope-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light);
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(22, 33, 62, 0.8);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.service-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--primary-color));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: #0f0f1c;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-light);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1200px){
    .logo {
        font-size: 1rem;
    }
    .nav-links li{
        margin-left: 10px;
    }
    .navbar .btn-booking{
        padding: 12px 18px;
        font-size: 12px;
    }
    .nav-links a{
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .zodiac-selector {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .zodiac-selector {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary, .btn-booking {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .zodiac-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .horoscope-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1444703686981-a3abbc4d4fe3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--accent-light);
    margin-left: 10px;
}

.breadcrumb a::after {
    content: '/';
    margin: 0 10px;
    color: var(--text-secondary);
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.milestone {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 3px solid var(--accent-color);
}

.milestone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.milestone-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.story-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 30px;
    left: -25px;
    animation-delay: 2s;
}

.floating-3 {
    bottom: -15px;
    right: 30px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.philosophy-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background-color: rgba(26, 26, 46, 0.9);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.philosophy-icon i {
    font-size: 2rem;
    color: white;
}

.philosophy-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.philosophy-card p {
    color: var(--text-secondary);
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-color), #ffaa00);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.founder-badge i {
    margin-right: 8px;
}

.founder-content h2 {
    text-align: left;
    margin-bottom: 15px;
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-bio p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.founder-quote {
    background-color: rgba(157, 78, 221, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 30px 0;
}

.founder-quote i {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    display: block;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quote-author {
    font-weight: 600;
    color: var(--accent-light);
}

.founder-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.certification {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 50px;
}

.certification i {
    color: var(--gold-color);
    margin-right: 10px;
}

.certification span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.values-container {
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(157, 78, 221, 0.2);
    margin-right: 30px;
    font-family: var(--font-heading);
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-content p {
    color: var(--text-secondary);
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .story-grid,
    .founder-grid {
        gap: 40px;
    }
    
    .philosophy-cards {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-content h2,
    .founder-content h2 {
        text-align: center;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
    }
    
    .founder-certifications {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .value-item {
        flex-direction: column;
    }
    
    .value-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .founder-content h3 {
        font-size: 1.5rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
}

/* Services Page Specific Styles */

/* Services Header */
.services-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

/* Service Navigation */
.service-navigation {
    padding: 30px 0;
    background-color: var(--secondary-color);
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    min-width: 120px;
    border: 2px solid transparent;
}

.service-tab:hover {
    background-color: rgba(157, 78, 221, 0.1);
    transform: translateY(-5px);
}

.service-tab.active {
    background-color: rgba(157, 78, 221, 0.2);
    border-color: var(--accent-color);
}

.service-tab i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.service-tab span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
}

.service-section:nth-child(even) {
    background-color: var(--secondary-color);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-description h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.service-description p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--accent-light);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Birth Chart Demo */
.birth-chart-demo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    margin-bottom: 30px;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    z-index: 2;
}

.planet {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    border: 2px solid var(--accent-color);
}

.planet:hover {
    transform: scale(1.2);
    background-color: var(--accent-color);
    color: white;
}

.planet-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--accent-color);
}

.planet:hover .planet-tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

/* Planet positions */
.planet-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.planet-2 { top: 50%; left: 85%; transform: translateY(-50%); }
.planet-3 { top: 85%; left: 50%; transform: translateX(-50%); }
.planet-4 { top: 50%; left: 15%; transform: translateY(-50%); }
.planet-5 { top: 20%; left: 20%; }
.planet-6 { top: 20%; left: 80%; }
.planet-7 { top: 80%; left: 80%; }

.chart-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Service Options */
.service-options h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.option-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.option-card.popular {
    border-color: var(--accent-color);
    background-color: rgba(26, 26, 46, 0.9);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.option-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-heading);
}

.option-features {
    list-style: none;
    margin-bottom: 40px;
}

.option-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.option-features i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.option-features .fa-check {
    color: var(--accent-light);
}

.option-features .fa-times {
    color: #6c757d;
}

.option-card .btn-primary,
.option-card .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Numerology Calculator */
.calculator-container {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid var(--accent-color);
}

.calculator-container h4 {
    margin-bottom: 20px;
    color: var(--accent-light);
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.calculator-input {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

#calculateBtn {
    align-self: flex-start;
}

.result {
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.result p {
    margin: 0;
    color: var(--text-color);
}

.calculator-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.number-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.number-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background-color: rgba(26, 26, 46, 0.9);
}

.number-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
}

.number-card h5 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.number-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Tarot Spread Demo */
.tarot-spread-demo {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
}

.tarot-spread-demo h4 {
    margin-bottom: 15px;
    color: var(--accent-light);
}

.spread-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.spread-card {
    background-color: rgba(22, 33, 62, 0.8);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.spread-card:hover {
    transform: translateY(-5px);
    background-color: rgba(22, 33, 62, 1);
}

.card-position {
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card-symbol {
    width: 60px;
    height: 60px;
    background-color: rgba(157, 78, 221, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.card-symbol i {
    font-size: 1.8rem;
    color: var(--accent-light);
}

.spread-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Tarot Deck */
.tarot-deck {
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-card {
    position: absolute;
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
    transform-style: preserve-3d;
}

.tarot-card .card-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
}

.tarot-card i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.tarot-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.tarot-card-1 {
    transform: rotate(-10deg) translateX(-100px);
    z-index: 5;
}

.tarot-card-2 {
    transform: rotate(-5deg) translateX(-50px);
    z-index: 4;
}

.tarot-card-3 {
    z-index: 3;
}

.tarot-card-4 {
    transform: rotate(5deg) translateX(50px);
    z-index: 2;
}

.tarot-card-5 {
    transform: rotate(10deg) translateX(100px);
    z-index: 1;
}

.tarot-card:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.1);
    z-index: 10 !important;
}

.deck-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.package-card.featured {
    border-color: var(--accent-color);
    background-color: rgba(22, 33, 62, 0.9);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-color), #ffaa00);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.package-savings {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-content {
    flex: 1;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-color);
}

.package-features i {
    margin-right: 10px;
    color: var(--accent-light);
    margin-top: 3px;
}

.package-tag {
    display: inline-block;
    background-color: rgba(157, 78, 221, 0.2);
    color: var(--accent-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-card .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--accent-light);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Styles for Services Page */
@media (max-width: 1024px) {
    .service-content {
        gap: 40px;
    }
    
    .options-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chart-circle {
        width: 350px;
        height: 350px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-nav-tabs {
        justify-content: center;
    }
    
    .service-tab {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .options-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spread-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tarot-deck {
        height: 250px;
    }
    
    .tarot-card {
        width: 150px;
        height: 200px;
    }
    
    .tarot-card-1 {
        transform: rotate(-10deg) translateX(-80px);
    }
    
    .tarot-card-2 {
        transform: rotate(-5deg) translateX(-40px);
    }
    
    .tarot-card-4 {
        transform: rotate(5deg) translateX(40px);
    }
    
    .tarot-card-5 {
        transform: rotate(10deg) translateX(80px);
    }
}

@media (max-width: 576px) {
    .service-tab {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .service-tab i {
        font-size: 1.5rem;
    }
    
    .service-tab span {
        font-size: 0.8rem;
    }
    
    .chart-circle {
        width: 280px;
        height: 280px;
    }
    
    .planet {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tarot-deck {
        height: 200px;
    }
    
    .tarot-card {
        width: 120px;
        height: 160px;
    }
    
    .tarot-card i {
        font-size: 2rem;
    }
    
    .tarot-card span {
        font-size: 0.9rem;
    }
    
    .tarot-card-1 {
        transform: rotate(-10deg) translateX(-60px);
    }
    
    .tarot-card-2 {
        transform: rotate(-5deg) translateX(-30px);
    }
    
    .tarot-card-4 {
        transform: rotate(5deg) translateX(30px);
    }
    
    .tarot-card-5 {
        transform: rotate(10deg) translateX(60px);
    }
    
    .option-price,
    .package-price {
        font-size: 2rem;
    }
    .service-tab{
        min-width: 20%;
    }
    .service-tab span{
        display: none;
    }
    .service-tab i{
        margin-bottom: 0;
    }
}

/* Astrologers Page Specific Styles */

/* Astrologers Header */
.astrologers-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1444703686981-a3abbc4d4fe3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

/* Team Introduction */
.team-intro {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Astrologer Filter */
.astrologer-filter {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.filter-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.filter-container h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.filter-container p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-select {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--accent-light);
    font-family: var(--font-body);
    font-size: 1rem;
    min-width: 180px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

#resetFilters {
    align-self: flex-end;
    height: 46px;
}

/* Astrologers Grid */
.astrologers-grid-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.astrologers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.astrologer-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.astrologer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.astrologer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.astrologer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.astrologer-card:hover .astrologer-image img {
    transform: scale(1.05);
}

.astrologer-status {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.astrologer-status.available {
    background-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.astrologer-status.busy {
    background-color: #FF9800;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.expertise-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.astrology-badge {
    background-color: rgba(157, 78, 221, 0.9);
    color: white;
}

.numerology-badge {
    background-color: rgba(255, 193, 7, 0.9);
    color: var(--primary-color);
}

.tarot-badge {
    background-color: rgba(33, 150, 243, 0.9);
    color: white;
}

.relationship-badge {
    background-color: rgba(233, 30, 99, 0.9);
    color: white;
}

.career-badge {
    background-color: rgba(76, 175, 80, 0.9);
    color: white;
}

.astrologer-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.astrologer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.astrologer-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    color: var(--gold-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.rating-number {
    margin-left: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.astrologer-title {
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.astrologer-bio {
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex: 1;
}

.astrologer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.detail {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.detail i {
    color: var(--accent-light);
    margin-right: 8px;
    font-size: 0.9rem;
}

.specialties h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.specialty-tags span {
    background-color: rgba(157, 78, 221, 0.1);
    color: var(--accent-light);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.astrologer-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.astrologer-actions .btn-primary,
.astrologer-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

/* Profile Modal */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.profile-modal:target {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 90vh;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    z-index: 1;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--accent-light);
}

.close-modal {
    color: var(--text-color);
    font-size: 2rem;
    text-decoration: none;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-light);
}

.modal-body {
    padding: 30px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.modal-left {
    display: flex;
    flex-direction: column;
}

.modal-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-quote {
    background-color: rgba(157, 78, 221, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.modal-quote i {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 10px;
    display: block;
}

.modal-quote p {
    font-style: italic;
    margin: 0;
    color: var(--text-color);
}

.modal-right h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--accent-light);
}

.modal-right p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.certification-list {
    list-style: none;
    margin-bottom: 30px;
}

.certification-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-color);
}

.certification-list i {
    color: var(--accent-light);
    margin-right: 10px;
    font-size: 1rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 3px solid var(--accent-color);
}

.testimonial p {
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-light);
}

.modal-actions {
    text-align: center;
}

.modal-actions .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-content h3 {
    margin-bottom: 15px;
}

.no-results-content p {
    color: var(--text-secondary);
}

.text-link {
    background: none;
    border: none;
    color: var(--accent-light);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.text-link:hover {
    color: var(--accent-color);
}

/* How to Choose Section */
.choose-guide {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.guide-steps {
    max-width: 800px;
    margin: 0 auto 40px;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-right: 25px;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

.guide-cta {
    text-align: center;
    padding: 25px;
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}
.guide-cta-link{
    color: var(--accent-light) ;
    text-decoration: none;
}
.guide-ctp a {
    color: var(--accent-light) ;
    text-decoration: none;
}

.guide-cta a:hover {
    text-decoration: underline;
}

/* Testimonials Slider */
.astrologer-testimonials {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0 0 5px;
    text-align: left;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    text-align: left;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(157, 78, 221, 0.2);
    color: var(--accent-light);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-light);
}

.dot:hover {
    background-color: var(--accent-color);
}

/* Responsive Styles for Astrologers Page */
@media (max-width: 1024px) {
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .astrologers-grid {
        gap: 30px;
    }
    
    .modal-grid {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    #resetFilters {
        align-self: stretch;
        height: auto;
        padding: 14px 20px;
    }
    
    .astrologers-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-left {
        align-items: center;
    }
    
    .modal-image {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .astrologer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating {
        margin-top: 10px;
    }
    
    .astrologer-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .astrologer-actions {
        flex-direction: column;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
}

/* Blog Page Specific Styles */

/* Blog Header */
.blog-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

/* Blog Container */
.blog-container {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Featured Article */
.featured-article {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--box-shadow);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-color), #ffaa00);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    z-index: 2;
}

.featured-badge i {
    margin-right: 8px;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.category {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category.astrology {
    background-color: rgba(157, 78, 221, 0.2);
    color: var(--accent-light);
}

.category.numerology {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.category.tarot {
    background-color: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.category.relationships {
    background-color: rgba(233, 30, 99, 0.2);
    color: #e91e63;
}

.category.career {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.category.spirituality {
    background-color: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.article-meta .date,
.article-meta .read-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.read-article {
    display: inline-block;
    padding: 12px 30px;
}

/* Blog Categories */
.blog-categories {
    margin-bottom: 60px;
}

.blog-categories h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.astrology-cat i { color: var(--accent-light); }
.numerology-cat i { color: #ffc107; }
.tarot-cat i { color: #2196f3; }
.spirituality-cat i { color: #9c27b0; }
.relationships-cat i { color: #e91e63; }
.career-cat i { color: #4caf50; }

/* Recent Articles */
.recent-articles {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.view-all a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.view-all i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all a:hover i {
    transform: translateX(5px);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.article-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 25px;
}

.article-content .article-meta {
    margin-bottom: 15px;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-author {
    display: flex;
    align-items: center;
    margin: 0;
}

.article-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.article-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.read-more {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.load-more-container {
    text-align: center;
}

#loadMoreArticles {
    padding: 12px 40px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.sidebar-widget h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent-light);
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px 0 0 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--purple-light);
}

/* Newsletter Widget */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form .btn-primary {
    padding: 12px 20px;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 15px;
    text-align: center;
}

/* Popular Widget */
.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popular-article:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.popular-rank {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.popular-content h5 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.popular-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.popular-content a:hover {
    color: var(--accent-light);
}

.popular-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-meta .category {
    font-size: 0.7rem;
    padding: 3px 8px;
}

.popular-meta .date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 15px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
}

.categories-list a:hover {
    color: var(--accent-light);
    padding-left: 10px;
}

.count {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Archive Widget */
.archive-select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
}

.archive-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Authors Widget */
.authors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.article-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 90vh;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    z-index: 1;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-color);
    padding-right: 30px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--accent-light);
}

.modal-body {
    padding: 30px;
}

.modal-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-category {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-date,
.modal-read-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.modal-date i,
.modal-read-time i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.modal-author {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.modal-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.modal-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-article-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.modal-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.modal-article-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-light);
    font-size: 1.5rem;
}

.modal-article-content p {
    margin-bottom: 20px;
}

.modal-article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-article-content li {
    margin-bottom: 10px;
}

.zodiac-advice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.zodiac-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 3px solid var(--accent-color);
}

.zodiac-item h5 {
    margin: 0 0 10px;
    color: var(--accent-light);
    font-size: 1.1rem;
}

.zodiac-item p {
    margin: 0;
    font-size: 0.95rem;
}

.modal-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Single post page - modal-style layout */
.single-post-layout {
    padding: 120px 0 80px;
}

@media (max-width: 768px) {
    .single-post-layout {
        padding: 80px 0 60px;
    }
}

.single-post-layout .modal-content {
    max-height: none;
    overflow: visible;
}

.single-post-layout .modal-header {
    position: relative;
}

.single-post-layout .modal-header h3,
.single-post-layout .modal-header .article-title {
    font-size: 2rem;
    margin: 0;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-label {
    font-weight: 600;
    color: var(--text-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: var(--text-color);
}

.share-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.share-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for Blog Page */
@media (max-width: 1024px) {
    .blog-layout {
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zodiac-advice {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-header h3 {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .modal-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-author {
        margin-left: 0;
    }
}

/* Contact Page Specific Styles */

/* Contact Header */
.contact-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

/* Contact Container */
.contact-container {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Contact Information */
.contact-info-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.contact-info-card h2 {
    margin-bottom: 15px;
    color: var(--accent-light);
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-content h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.contact-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--accent-light);
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-icon:hover {
    background-color: rgba(157, 78, 221, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.3rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.social-icon:nth-child(1) i { color: #4267B2; } /* Facebook */
.social-icon:nth-child(2) i { color: #1DA1F2; } /* Twitter */
.social-icon:nth-child(3) i { color: #E1306C; } /* Instagram */
.social-icon:nth-child(4) i { color: #FF0000; } /* YouTube */

/* FAQ Preview */
.faq-preview {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.faq-preview h3 {
    margin-bottom: 25px;
    color: var(--accent-light);
}

.faq-items {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item a {
    color: var(--accent-light);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-preview .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Contact Form */
.contact-form-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.contact-form-card h2 {
    margin-bottom: 15px;
    color: var(--accent-light);
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--accent-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23adb5bd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.error-message {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.form-submit .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    position: relative;
    min-height: 50px;
}

.button-text,
.loading-spinner {
    display: inline-block;
}

.form-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

.form-success,
.form-error {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border-left: 4px solid;
}

.form-success {
    border-left-color: #4CAF50;
}

.form-error {
    border-left-color: #f44336;
}

.form-success i,
.form-error i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-success i {
    color: #4CAF50;
}

.form-error i {
    color: #f44336;
}

.form-success h4,
.form-error h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.form-success p,
.form-error p {
    margin: 0;
    color: var(--text-secondary);
}

/* Map Card */
.map-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.map-card h3 {
    margin-bottom: 25px;
    color: var(--accent-light);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    height: 300px;
    background-color: rgba(26, 26, 46, 0.8);
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-overlay {
    background-color: rgba(26, 26, 46, 0.85);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 80%;
}

.map-overlay i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    display: block;
}

.map-overlay p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.map-overlay .btn-secondary {
    padding: 12px 25px;
}

.map-instructions {
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-instructions p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.map-instructions i {
    color: var(--accent-light);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Team Contact Section */
.team-contact-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-contact-card {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.team-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-contact-image {
    width: 150px;
    flex-shrink: 0;
}

.team-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-contact-info {
    padding: 30px;
    flex: 1;
}

.team-contact-info h4 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: var(--accent-light);
}

.team-role {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1rem;
}

.team-specialty {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.team-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.team-contact-item i {
    color: var(--accent-light);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.team-contact-item a {
    color: var(--accent-light);
    text-decoration: none;
}

.team-contact-item a:hover {
    text-decoration: underline;
}

/* Footer Contact Column */
.footer-contact-col .contact-info {
    list-style: none;
}

.footer-contact-col .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-col .contact-info i {
    color: var(--accent-light);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-layout {
        gap: 40px;
    }
    
    .team-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-icons {
        grid-template-columns: 1fr;
    }
    
    .team-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-contact-card {
        flex-direction: column;
    }
    
    .team-contact-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .faq-preview,
    .contact-form-card,
    .map-card {
        padding: 30px 25px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-overlay {
        padding: 20px;
    }
    
    .map-overlay i {
        font-size: 2.5rem;
    }
    
    .form-success h4,
    .form-error h4 {
        font-size: 1.1rem;
    }
}

/* Booking Page Specific Styles */

/* Booking Header */
.booking-header {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1532601224476-15c79f2f7a51?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

/* Booking Steps */
.booking-steps {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.steps-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: var(--transition);
    border: 3px solid transparent;
}

.step.active .step-number {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 5px rgba(157, 78, 221, 0.2);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--accent-light);
}

/* Booking Container */
.booking-container {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Booking Form */
.booking-form-section {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.booking-step {
    padding: 40px;
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.step-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-header h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.step-counter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-header p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.1rem;
}

/* Services Selection */
.services-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-option {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.service-option:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-5px);
}

.service-option-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--purple-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.service-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-select {
    position: relative;
    width: 24px;
    height: 24px;
}

.service-select input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-select label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.service-select label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-color: var(--accent-light);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.service-select input[type="radio"]:checked + label {
    border-color: var(--accent-light);
}

.service-select input[type="radio"]:checked + label::after {
    transform: translate(-50%, -50%) scale(1);
}

.service-option-details {
    padding: 0 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -10px;
}

.service-option-details p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--accent-light);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Astrologers Selection */
.astrologers-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.astrologer-option {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.astrologer-option:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-5px);
}

.astrologer-option-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
}

.astrologer-image {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.astrologer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astrologer-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.astrologer-status.available {
    background-color: #4CAF50;
}

.astrologer-status.busy {
    background-color: #FF9800;
}

.astrologer-info {
    flex: 1;
}

.astrologer-info h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.astrologer-specialty {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.astrologer-rating {
    display: flex;
    align-items: center;
}

.astrologer-rating i {
    color: var(--gold-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.rating-number {
    margin-left: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.astrologer-select {
    position: relative;
    width: 24px;
    height: 24px;
}

.astrologer-select input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.astrologer-select label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.astrologer-select label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-color: var(--accent-light);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.astrologer-select input[type="radio"]:checked + label {
    border-color: var(--accent-light);
}

.astrologer-select input[type="radio"]:checked + label::after {
    transform: translate(-50%, -50%) scale(1);
}

.astrologer-option-details {
    padding: 0 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -10px;
}

.astrologer-bio {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.astrologer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.specialty-tag {
    background-color: rgba(157, 78, 221, 0.1);
    color: var(--accent-light);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.astrologer-availability p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.astrologer-availability i {
    color: var(--accent-light);
    margin-right: 8px;
}

.astrologer-availability strong {
    margin-right: 5px;
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.calendar-section h4,
.timeslot-section h4 {
    margin-bottom: 20px;
    color: var(--accent-light);
    font-size: 1.2rem;
}

.calendar-container {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(157, 78, 221, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.calendar-nav:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-light);
}

.calendar-header h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 15px 10px;
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.calendar-day:hover:not(.empty):not(.unavailable) {
    background-color: rgba(255, 255, 255, 0.05);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.unavailable {
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.available {
    color: var(--text-color);
}

.calendar-day.selected {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

.calendar-day.today {
    border: 2px solid var(--accent-light);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.available {
    background-color: var(--accent-color);
}

.legend-color.selected {
    background-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

.legend-color.unavailable {
    background-color: rgba(255, 255, 255, 0.1);
}

.legend-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeslot-container {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.timeslot-header {
    padding: 20px;
    background-color: rgba(157, 78, 221, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeslot-header p {
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
}

.timezone-info {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timezone-info i {
    margin-right: 8px;
    color: var(--accent-light);
}

.timeslots {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.timeslots::-webkit-scrollbar {
    width: 8px;
}

.timeslots::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.timeslots::-webkit-scrollbar-thumb {
    background: rgba(157, 78, 221, 0.5);
    border-radius: 10px;
}

.timeslots::-webkit-scrollbar-thumb:hover {
    background: rgba(157, 78, 221, 0.7);
}

.timeslot-group {
    margin-bottom: 25px;
}

.timeslot-group:last-child {
    margin-bottom: 0;
}

.timeslot-group h5 {
    margin: 0 0 15px;
    color: var(--accent-light);
    font-size: 1rem;
}

.timeslot-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.timeslot-button {
    padding: 12px 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.timeslot-button:hover:not(.unavailable) {
    background-color: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
}

.timeslot-button.selected {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-light);
}

.timeslot-button.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.no-date-selected {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.no-date-selected i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--accent-light);
    opacity: 0.5;
}

.no-date-selected p {
    margin: 0;
}

.timeslot-note {
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 20px;
}

.timeslot-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.timeslot-note i {
    color: var(--accent-light);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Booking Summary (Step 4) */
.booking-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.summary-card,
.customer-details {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
}

.summary-card h4,
.customer-details h4 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--accent-light);
    font-size: 1.3rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item.total {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.summary-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-value {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.summary-item.total .summary-value {
    color: var(--accent-light);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.customer-details .form-group {
    margin-bottom: 20px;
}

.customer-details .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.customer-details label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.customer-details input,
.customer-details textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.customer-details input:focus,
.customer-details textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.2);
}

.customer-details textarea {
    resize: vertical;
    min-height: 80px;
}

.customer-details .form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
    margin-bottom: 0;
}

.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: rgba(157, 78, 221, 0.3);
}

.payment-method.active {
    border-color: var(--accent-color);
    background-color: rgba(157, 78, 221, 0.1);
}

.payment-method i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.payment-method:nth-child(1) i { color: #6772e5; } /* Stripe */
.payment-method:nth-child(2) i { color: #003087; } /* PayPal */

.payment-method span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.payment-details {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
}

.paypal-info {
    text-align: center;
    padding: 20px;
}

.paypal-info i {
    font-size: 3rem;
    color: #003087;
    margin-bottom: 15px;
    display: block;
}

.paypal-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.security-notice {
    display: flex;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    border-left: 4px solid #4CAF50;
}

.security-notice i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.security-notice p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 40px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid #4CAF50;
    margin-top: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.booking-success h4 {
    margin: 0 0 15px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.booking-success p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.success-details p:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-actions .btn-primary,
.success-actions .btn-secondary {
    min-width: 180px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-actions .btn-primary,
.step-actions .btn-secondary {
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.step-actions i {
    margin: 0 5px;
}

.step-actions .btn-primary i:last-child {
    margin-left: 10px;
}

.step-actions .btn-secondary i:first-child {
    margin-right: 10px;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-summary-card,
.help-card,
.expectations-card,
.security-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.booking-summary-card h3,
.help-card h4,
.expectations-card h4,
.security-card h5 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--accent-light);
    font-size: 1.3rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item.total {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item.total .summary-value {
    color: var(--accent-light);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.summary-note {
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
}

.summary-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.summary-note i {
    color: var(--accent-light);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-option i {
    font-size: 1.5rem;
    color: var(--accent-light);
    width: 40px;
    height: 40px;
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.help-content h5 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: var(--text-color);
}

.help-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.expectation-item:last-child {
    margin-bottom: 0;
}

.expectation-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.expectation-icon i {
    font-size: 1.3rem;
    color: var(--accent-light);
}

.expectation-content h5 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-color);
}

.expectation-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.security-badge i {
    font-size: 2rem;
    color: #4CAF50;
}

.security-badge h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
}

.security-icons i {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.security-icons i:hover {
    color: var(--text-color);
}

/* Responsive Styles for Booking Page */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-selection,
    .astrologers-selection {
        grid-template-columns: 1fr;
    }
    
    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .step-indicator {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        text-align: left;
    }
    
    .step-number {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .timeslot-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-actions .btn-primary,
    .step-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .booking-step {
        padding: 30px 25px;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .step-counter {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .service-option-header,
    .astrologer-option-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon,
    .astrologer-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .astrologer-select,
    .service-select {
        margin-top: 15px;
    }
    
    .customer-details .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .timeslot-buttons {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn-primary,
    .success-actions .btn-secondary {
        width: 100%;
    }
}