/* Psychic Vuyo Batman - Cosmic Noir Theme */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #8b5cf6;
    --violet-accent: #a855f7;
    --silver: #c0c0c0;
    --midnight-black: #0f0f0f;
    --deep-indigo: #1e1b4b;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #f8f9fa;
    --text-muted: #9ca3af;
    --text-silver: #c0c0c0;
    --cosmic-indigo: #312e81;
    --cosmic-violet: #7c3aed;
    --cosmic-silver: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, var(--deep-indigo), var(--cosmic-indigo));
    --gradient-cosmic: linear-gradient(135deg, var(--cosmic-indigo), var(--cosmic-violet), var(--violet-accent));
    --gradient-silver: linear-gradient(135deg, var(--silver), var(--cosmic-silver));
    --gradient-midnight: linear-gradient(135deg, var(--midnight-black), var(--primary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.text-gradient {
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.text-silver {
    color: var(--text-silver);
}

.text-violet {
    color: var(--violet-accent);
}

/* Navigation - Mobile First */
.cosmic-nav {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .cosmic-nav {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(139, 92, 246, 0.3);
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    }
    
    .navbar-collapse {
        background: rgba(15, 15, 15, 0.98);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(139, 92, 246, 0.1);
        transform: translateX(5px);
    }
    
    .nav-link.btn {
        margin: 0.5rem 0;
        text-align: center;
        width: 100%;
    }
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--violet-accent) !important;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--violet-accent) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cosmic);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-midnight);
    overflow: hidden;
    padding: 2rem 0;
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-portrait {
        width: 200px;
        height: 200px;
    }
    
    .mystical-circle {
        width: 250px;
        height: 250px;
    }
    
    .mystical-icon {
        font-size: 3rem;
    }
    
    .service-portrait {
        width: 150px;
        height: 150px;
    }
    
    .spell-image {
        width: 140px;
        height: 140px;
    }
    
    .service-image-small {
        width: 60px;
        height: 60px;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 85vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-portrait {
        width: 150px;
        height: 150px;
    }
    
    .mystical-circle {
        width: 200px;
        height: 200px;
    }
    
    .mystical-icon {
        font-size: 2.5rem;
    }
    
    .service-portrait {
        width: 120px;
        height: 120px;
    }
    
    .spell-image {
        width: 110px;
        height: 110px;
    }
    
    .about-portrait {
        width: 100%;
        height: 100%;
    }
    
    .biography-portrait {
        width: 100%;
        height: 100%;
    }
}

.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 46, 129, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        /* Starfield effect */
        radial-gradient(circle at 10% 20%, rgba(192, 192, 192, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(192, 192, 192, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(192, 192, 192, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(192, 192, 192, 0.5) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 200px 200px, 300px 300px, 250px 250px, 180px 180px;
    animation: cosmic-drift 20s ease-in-out infinite, starfield-twinkle 15s ease-in-out infinite;
}

@keyframes cosmic-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

@keyframes starfield-twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-silver);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-cosmic);
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    background: var(--gradient-cosmic);
}

.btn-outline-light {
    border: 2px solid rgba(192, 192, 192, 0.4);
    color: var(--text-silver);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--violet-accent);
    color: var(--violet-accent);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    animation: portrait-glow 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes portrait-glow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.7);
        transform: scale(1.02);
    }
}

.mystical-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-cosmic);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 50px rgba(139, 92, 246, 0.6),
        0 0 100px rgba(168, 85, 247, 0.3),
        inset 0 0 50px rgba(192, 192, 192, 0.1);
    animation: mystical-pulse 4s ease-in-out infinite;
    border: 2px solid rgba(168, 85, 247, 0.3);
    z-index: 1;
}

@keyframes mystical-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.6), 0 0 100px rgba(168, 85, 247, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        box-shadow: 0 0 80px rgba(139, 92, 246, 0.8), 0 0 120px rgba(168, 85, 247, 0.5);
    }
}

.mystical-icon {
    font-size: 4rem;
    color: var(--text-silver);
    animation: icon-float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.cosmic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(192, 192, 192, 0.6) 1px, transparent 1px);
    animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--violet-accent);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), 0 0 20px rgba(168, 85, 247, 0.2);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-silver);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    color: var(--text-light);
}

/* Service Card Images */
.service-image-small {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image-small {
    transform: scale(1.1);
    border-color: var(--violet-accent);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.service-card p {
    color: var(--text-silver);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* About Section */
.about-preview {
    background: var(--gradient-midnight);
}

.about-content {
    padding: 2rem 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mystical-portrait {
    position: relative;
    width: 300px;
    height: 300px;
}

.cosmic-frame {
    width: 100%;
    height: 100%;
    border: 3px solid var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.cosmic-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    z-index: -1;
    animation: frame-glow 3s ease-in-out infinite;
}

@keyframes frame-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cosmic-frame i {
    font-size: 4rem;
    color: var(--violet-accent);
    animation: portrait-float 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.about-portrait {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: portrait-float 4s ease-in-out infinite;
}

@keyframes portrait-float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mystical Gallery */
.mystical-gallery {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0a2e 100%);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    background: var(--gradient-primary);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(168, 85, 247, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.gallery-overlay p {
    color: var(--text-silver);
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(106, 76, 147, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(106, 76, 147, 0.2);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--midnight-black) !important;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.footer h5, .footer h6 {
    color: var(--violet-accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-silver);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--violet-accent);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.social-links a:hover {
    background: var(--gradient-cosmic);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mystical-circle {
        width: 250px;
        height: 250px;
    }
    
    .mystical-icon {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .mystical-circle {
        width: 200px;
        height: 200px;
    }
    
    .mystical-icon {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.bg-cosmic {
    background: var(--gradient-cosmic);
}

.text-cosmic {
    color: var(--secondary-color);
}

.border-cosmic {
    border-color: var(--secondary-color);
}

.shadow-cosmic {
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(106, 76, 147, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Styles */
.form-control {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    background: rgba(26, 26, 46, 0.5);
    border-color: var(--violet-accent);
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25), 0 0 15px rgba(139, 92, 246, 0.2);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-silver);
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-left: 4px solid #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-left: 4px solid #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-left: 4px solid #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Page Header */
.page-header {
    background: var(--gradient-midnight);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(49, 46, 129, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        /* Starfield effect */
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.4) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 300px 300px, 250px 250px;
    animation: starfield-twinkle 20s ease-in-out infinite;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-silver);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

/* Service Detail Styles */
.service-detail {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(106, 76, 147, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-detail:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}


/* Service Images */
.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.service-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.service-portrait {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    animation: service-image-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes service-image-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
        transform: scale(1.02);
    }
}

/* Tarot Cards */
.mystical-card-spread {
    position: relative;
    width: 300px;
    height: 200px;
}

.tarot-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.tarot-card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.4);
    animation: card-float 4s ease-in-out infinite;
}

.tarot-card.card-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.tarot-card.card-2 {
    top: 40px;
    left: 110px;
    animation-delay: 1s;
}

.tarot-card.card-3 {
    top: 60px;
    left: 170px;
    animation-delay: 2s;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Astrology Chart */
.astrology-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.zodiac-circle {
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    position: relative;
    animation: zodiac-rotate 20s linear infinite;
}

.zodiac-signs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sign {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    animation: sign-glow 3s ease-in-out infinite;
}

.sign.aries { top: 10px; left: 50%; transform: translateX(-50%); }
.sign.taurus { top: 30px; right: 20px; }
.sign.gemini { top: 50px; right: 10px; }
.sign.cancer { top: 70px; right: 20px; }
.sign.leo { top: 90px; right: 30px; }
.sign.virgo { top: 110px; right: 40px; }
.sign.libra { top: 130px; right: 50px; }
.sign.scorpio { top: 150px; right: 40px; }
.sign.sagittarius { top: 170px; right: 30px; }
.sign.capricorn { top: 190px; right: 20px; }
.sign.aquarius { top: 210px; right: 10px; }
.sign.pisces { top: 230px; right: 20px; }

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

@keyframes sign-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(156, 136, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(156, 136, 255, 0.8); }
}

/* Dream Clouds */
.dream-clouds {
    position: relative;
    width: 300px;
    height: 200px;
}

.cloud {
    position: absolute;
    font-size: 3rem;
    color: rgba(156, 136, 255, 0.6);
    animation: cloud-float 6s ease-in-out infinite;
}

.cloud-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.cloud-2 {
    top: 60px;
    left: 150px;
    animation-delay: 2s;
}

.cloud-3 {
    top: 100px;
    left: 100px;
    animation-delay: 4s;
}

.dream-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    animation: symbol-float 4s ease-in-out infinite;
}

.symbol-1 {
    top: 40px;
    left: 80px;
    animation-delay: 1s;
}

.symbol-2 {
    top: 80px;
    left: 120px;
    animation-delay: 2s;
}

.symbol-3 {
    top: 120px;
    left: 60px;
    animation-delay: 3s;
}

@keyframes cloud-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes symbol-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Spell Circle */
.spell-circle {
    position: relative;
    width: 250px;
    height: 250px;
    border: 3px solid var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spell-rotate 10s linear infinite;
}

.spell-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    animation: element-pulse 2s ease-in-out infinite;
}

.element.fire {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.element.water {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.element.earth {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.element.air {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.spell-center {
    width: 80px;
    height: 80px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    animation: center-pulse 3s ease-in-out infinite;
}

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

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

@keyframes center-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(156, 136, 255, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(156, 136, 255, 0.8); }
}

/* Process Steps */
.process-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0a2e 100%);
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Booking Form Styles */
.booking-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.booking-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(106, 76, 147, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(156, 136, 255, 0.25);
    color: var(--text-light);
}

.booking-form .form-control::placeholder {
    color: var(--text-muted);
}

.booking-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

/* Info Cards */
.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: icon-pulse 3s ease-in-out infinite;
}

.info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}


/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Date and Time Input Styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: var(--text-light);
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--text-light);
}

/* Responsive Design for Booking */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    
    .info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .booking-form-container {
        padding: 1.5rem 1rem;
    }
    
    
}

/* About Page Styles */
.biography-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
}

.biography-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.biography-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mystical-portrait-large {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cosmic-frame-large {
    width: 300px;
    height: 300px;
    border: 4px solid var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 76, 147, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: frame-glow-large 4s ease-in-out infinite;
}

@keyframes frame-glow-large {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(106, 76, 147, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(106, 76, 147, 0.8);
        transform: scale(1.02);
    }
}

.portrait-content {
    position: relative;
    z-index: 2;
}

.portrait-content i {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: portrait-float-large 6s ease-in-out infinite;
}

.biography-portrait {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: portrait-float-large 6s ease-in-out infinite;
}

@keyframes portrait-float-large {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cosmic-aura {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 136, 255, 0.3) 0%, transparent 70%);
    animation: aura-pulse 3s ease-in-out infinite;
}

@keyframes aura-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Journey Cards */
.journey-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
}

.journey-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: journey-pulse 3s ease-in-out infinite;
}

@keyframes journey-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.journey-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.journey-year {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.journey-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Specialization Cards */
.specialization-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.specialization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.specialization-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.specialization-card:hover::before {
    opacity: 0.1;
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: spec-pulse 3s ease-in-out infinite;
}

@keyframes spec-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.specialization-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.specialization-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.spec-level {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Philosophy Section */
.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(106, 76, 147, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Cosmic Mandala */
.cosmic-mandala {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-center {
    width: 100px;
    height: 100px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    animation: mandala-center-rotate 10s linear infinite;
    z-index: 3;
    position: relative;
}

.mandala-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: mandala-ring-rotate 15s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 10s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

@keyframes mandala-center-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes mandala-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Achievement Cards */
.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.achievement-card:hover::before {
    opacity: 0.1;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: achievement-glow 3s ease-in-out infinite;
}

@keyframes achievement-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(156, 136, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(156, 136, 255, 0.8);
        transform: scale(1.05);
    }
}

.achievement-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.achievement-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.achievement-year {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Personal Cards */
.personal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
}

.personal-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.personal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    animation: personal-heartbeat 3s ease-in-out infinite;
}

@keyframes personal-heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.personal-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.personal-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .biography-title {
        font-size: 2rem;
    }
    
    .cosmic-frame-large {
        width: 250px;
        height: 250px;
    }
    
    .portrait-content i {
        font-size: 3rem;
    }
    
    .biography-portrait {
        width: 100%;
        height: 100%;
    }
    
    .cosmic-mandala {
        width: 250px;
        height: 250px;
    }
    
    .philosophy-quote {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .biography-title {
        font-size: 1.75rem;
    }
    
    .cosmic-frame-large {
        width: 200px;
        height: 200px;
    }
    
    .portrait-content i {
        font-size: 2.5rem;
    }
    
    .biography-portrait {
        width: 100%;
        height: 100%;
    }
    
    .cosmic-mandala {
        width: 200px;
        height: 200px;
    }
    
    .philosophy-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .philosophy-quote::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
}

/* Blog Page Styles */
.featured-post {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
}

.featured-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.featured-badge {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.featured-date,
.featured-read-time {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

/* Cosmic Illustration */
.cosmic-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.zodiac-wheel {
    position: relative;
    width: 250px;
    height: 250px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zodiac-spin 20s linear infinite;
}

.wheel-center {
    width: 80px;
    height: 80px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    animation: center-pulse 3s ease-in-out infinite;
}

.zodiac-signs-wheel {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sign-wheel {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    animation: sign-float 4s ease-in-out infinite;
}

.sign-wheel.aries { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.sign-wheel.taurus { top: 30px; right: 20px; animation-delay: 0.3s; }
.sign-wheel.gemini { top: 50px; right: 10px; animation-delay: 0.6s; }
.sign-wheel.cancer { top: 70px; right: 20px; animation-delay: 0.9s; }
.sign-wheel.leo { top: 90px; right: 30px; animation-delay: 1.2s; }
.sign-wheel.virgo { top: 110px; right: 40px; animation-delay: 1.5s; }
.sign-wheel.libra { top: 130px; right: 50px; animation-delay: 1.8s; }
.sign-wheel.scorpio { top: 150px; right: 40px; animation-delay: 2.1s; }
.sign-wheel.sagittarius { top: 170px; right: 30px; animation-delay: 2.4s; }
.sign-wheel.capricorn { top: 190px; right: 20px; animation-delay: 2.7s; }
.sign-wheel.aquarius { top: 210px; right: 10px; animation-delay: 3s; }
.sign-wheel.pisces { top: 230px; right: 20px; animation-delay: 3.3s; }

@keyframes zodiac-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sign-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
}

.blog-card:hover::before {
    opacity: 0.1;
}

.blog-image {
    height: 150px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-icon {
    font-size: 3rem;
    color: var(--text-light);
    animation: blog-icon-float 3s ease-in-out infinite;
}

@keyframes blog-icon-float {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(106, 76, 147, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(156, 136, 255, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(106, 76, 147, 0.3);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(106, 76, 147, 0.2);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-right: 1rem;
    flex-shrink: 0;
    animation: info-pulse 3s ease-in-out infinite;
}

@keyframes info-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-content small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0a2e 100%);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(106, 76, 147, 0.3);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(106, 76, 147, 0.2);
    color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(156, 136, 255, 0.25);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    line-height: 1.6;
    padding: 1.5rem;
}

/* Social Media Section */
.social-section {
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-decoration: none;
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

.social-link.facebook:hover { background: rgba(24, 119, 242, 0.2); }
.social-link.instagram:hover { background: rgba(225, 48, 108, 0.2); }
.social-link.twitter:hover { background: rgba(29, 161, 242, 0.2); }
.social-link.youtube:hover { background: rgba(255, 0, 0, 0.2); }

/* Responsive Design for Blog and Contact */
@media (max-width: 768px) {
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .social-links-large {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: whatsapp-bounce 1.5s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}

/* Love Spell Section Styles */
.love-spell-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.love-spell-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    animation: love-glow 8s ease-in-out infinite;
}

@keyframes love-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.love-spell-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(220, 38, 127, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(220, 38, 127, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.love-spell-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.love-spell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 127, 0.3);
}

.love-spell-card:hover::before {
    opacity: 1;
}

.love-spell-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    animation: love-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 38, 127, 0.5);
}

@keyframes love-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(220, 38, 127, 0.5);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 30px rgba(220, 38, 127, 0.8);
    }
}

.love-spell-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(220, 38, 127, 0.3);
}

.love-spell-description {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.love-features-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.love-spell-cta {
    margin-top: 2rem;
}

.love-spell-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
}

.spell-casting-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.spell-image {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgba(220, 38, 127, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 127, 0.4);
    animation: spell-image-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes spell-image-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 38, 127, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 38, 127, 0.6);
        transform: scale(1.02);
    }
}

.love-hearts {
    position: relative;
    width: 200px;
    height: 200px;
}

.heart {
    position: absolute;
    font-size: 2rem;
    color: #dc2626;
    animation: heart-float 4s ease-in-out infinite;
}

.heart-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.heart-2 {
    top: 80px;
    right: 30px;
    animation-delay: 1s;
}

.heart-3 {
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes heart-float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) scale(1.2); 
        opacity: 1;
    }
}

.love-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.energy-ring {
    position: absolute;
    border: 2px solid rgba(220, 38, 127, 0.3);
    border-radius: 50%;
    animation: energy-pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.ring-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes energy-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.8;
    }
}

/* Responsive Design for Love Spell Section */
@media (max-width: 768px) {
    .love-spell-card {
        padding: 2rem;
    }
    
    .love-spell-title {
        font-size: 1.5rem;
    }
    
    .love-spell-description {
        font-size: 1rem;
    }
    
    .love-spell-visual {
        margin-top: 2rem;
        min-height: 200px;
    }
    
    .spell-image {
        width: 140px;
        height: 140px;
    }
    
    .love-hearts {
        width: 150px;
        height: 150px;
    }
    
    .heart {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .love-spell-card {
        padding: 1.5rem;
    }
    
    .spell-image {
        width: 110px;
        height: 110px;
    }
    
    .love-spell-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .love-spell-cta .btn:last-child {
        margin-bottom: 0;
    }
}

/* Love Spells Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: love-glow 8s ease-in-out infinite;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(220, 38, 127, 0.5);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-silver);
    margin-bottom: 0;
}

/* Native Caster Section */
.native-caster {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f0f0f 100%);
    position: relative;
}

.caster-content {
    padding: 2rem 0;
}

.caster-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    animation: love-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(220, 38, 127, 0.5);
}

.caster-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.caster-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.caster-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.mystical-portrait-large {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-frame-large {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(220, 38, 127, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: cosmic-rotate 20s linear infinite;
}

.portrait-content {
    position: relative;
    z-index: 2;
}

.portrait-content i {
    font-size: 4rem;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(220, 38, 127, 0.5);
}

.cosmic-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(220, 38, 127, 0.2);
    border-radius: 50%;
    animation: aura-pulse 4s ease-in-out infinite;
}

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

@keyframes aura-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.8;
    }
}

/* Spell Categories */
.spell-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 127, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spell-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 127, 0.5);
    box-shadow: 0 10px 30px rgba(220, 38, 127, 0.2);
}

.spell-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(220, 38, 127, 0.3);
}

.spell-category-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.spell-category-card p {
    color: var(--text-silver);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.spell-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.spell-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.spell-features li::before {
    content: '❤️';
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(220, 38, 127, 0.3);
}

.process-step h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-silver);
    font-size: 0.95rem;
}

/* Love Testimonials */
.love-testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 127, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.love-testimonials .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 127, 0.4);
    box-shadow: 0 10px 30px rgba(220, 38, 127, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 38, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: love-glow 8s ease-in-out infinite;
}

/* Responsive Design for Love Spells Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .mystical-portrait-large {
        width: 250px;
        height: 250px;
    }
    
    .portrait-content i {
        font-size: 3rem;
    }
    
    .spell-category-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .mystical-portrait-large {
        width: 200px;
        height: 200px;
    }
    
    .portrait-content i {
        font-size: 2.5rem;
    }
    
    .spell-category-card {
        padding: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
}

/* Comprehensive Mobile-First Responsive Design */
/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    /* Typography */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    /* Cards and Components */
    .service-card,
    .testimonial-card,
    .spell-category-card,
    .love-spell-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card h4,
    .spell-category-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p,
    .spell-category-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-icon,
    .spell-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Image Responsiveness */
    .hero-portrait {
        width: 120px;
        height: 120px;
    }
    
    .service-portrait {
        width: 100px;
        height: 100px;
    }
    
    .spell-image {
        width: 90px;
        height: 90px;
    }
    
    .about-portrait,
    .biography-portrait {
        width: 100%;
        height: 100%;
    }
    
    .service-image-small {
        width: 50px;
        height: 50px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Forms */
    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.4rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
