/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0a0f;
    --dark-secondary: #1a1a2e;
    --gold: #d4af37;
    --amethyst: #9966cc;
    --purple-glow: rgba(153, 102, 204, 0.3);
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --serif-font: 'Georgia', 'Times New Roman', serif;
    --sans-font: 'Arial', sans-serif;
}

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--gold);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: var(--dark-bg) !important;
    font-weight: bold;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px var(--gold-glow);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--gold-glow);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px var(--gold-glow); }
    50% { box-shadow: 0 4px 25px var(--gold-glow); }
}

/* Reading Progress Bar */
.reading-progress {
    background: linear-gradient(90deg, var(--amethyst) 0%, #7b3fa3 100%);
    padding: 0.8rem;
    text-align: center;
    color: white;
    font-weight: bold;
    border-top: 2px solid var(--gold);
}

.progress-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: monospace;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, var(--gold), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--amethyst), transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, var(--gold), transparent);
    background-size: 200% 200%;
    animation: sparkle 10s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-hero-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--gold) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 25px var(--purple-glow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.cta-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--purple-glow);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--dark-secondary);
}

.section-title {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px var(--gold-glow);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--amethyst);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--purple-glow);
    border-color: var(--gold);
}

.blog-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-card-link {
    color: var(--amethyst);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--gold);
}

/* About & Contact Sections */
.about-section, .contact-section {
    padding: 4rem 0;
    text-align: center;
}

.about-text, .contact-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Reading Form Section */
.reading-form-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.reading-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-family: var(--serif-font);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

.reading-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1rem;
}

.required {
    color: var(--gold);
}

.form-input, .form-textarea {
    background: var(--dark-bg);
    border: 2px solid var(--amethyst);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--amethyst);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

/* Tarot Card Selection */
.tarot-card-selection {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 2px solid var(--amethyst);
}

.card-selection-instruction {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.tarot-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tarot-card {
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #3a2a4e 100%);
    border: 3px solid var(--amethyst);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.tarot-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px var(--purple-glow);
    border-color: var(--gold);
}

.tarot-card.selected {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
}

.tarot-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.card-back, .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-progress {
    text-align: center;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.submit-button {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--gold) 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--purple-glow);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Result Section */
.result-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.result-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.result-title {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px var(--gold-glow);
}

.reading-message {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--amethyst);
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.tarot-cards-result {
    margin: 2rem 0;
}

.card-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1a3e 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--amethyst);
    text-align: center;
}

.result-card h3 {
    color: var(--gold);
    font-family: var(--serif-font);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-content {
    color: var(--text-light);
    font-size: 1.1rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-button.secondary {
    background: var(--dark-bg);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.action-button.secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.action-button.primary {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.error-message {
    color: #ff6b6b;
    text-align: center;
    font-size: 1.2rem;
    padding: 2rem;
}

/* Notification Popup */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--gold) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    cursor: pointer;
    animation: slideIn 0.5s ease;
    max-width: 350px;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text {
    font-weight: bold;
}

/* Blog Post Styles */
.blog-post-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.blog-post-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--amethyst);
}

.blog-post-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
    line-height: 1.3;
    margin: 0;
}

.blog-post-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-heading {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

.blog-post-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-post-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--amethyst);
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .tarot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-layout {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-wrapper {
        padding: 2rem;
    }

    .blog-post-heading {
        font-size: 1.5rem;
    }

    .blog-post-footer {
        flex-direction: column;
    }
}

/* AdSense Ad Styles */
.adsbygoogle-wrapper {
    margin: 1.5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border: 1px solid var(--amethyst);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.adsbygoogle-wrapper:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.adsbygoogle {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Header Banner Ad */
.header-banner-ad {
    width: 100%;
    max-width: 728px;
    margin: 1rem auto;
    padding: 0.5rem;
}

/* Sticky Footer Ad */
.sticky-footer-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border-top: 2px solid var(--gold);
    padding: 0.8rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sticky-footer-ad .close-ad-btn {
    background: var(--amethyst);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sticky-footer-ad .close-ad-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.sticky-footer-ad.hidden {
    display: none;
}

/* Sidebar Ads */
.sidebar-ad {
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

.sidebar-ad-wrapper {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border: 1px solid var(--amethyst);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Floating Sidebar Ad */
.floating-sidebar-ad {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border: 1px solid var(--amethyst);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.floating-sidebar-ad .close-ad-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--amethyst);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-sidebar-ad .close-ad-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.floating-sidebar-ad.hidden {
    display: none;
}

/* In-Feed Ad */
.in-feed-ad {
    grid-column: 1 / -1;
    margin: 2rem 0;
}

/* In-Article Ad */
.in-article-ad {
    margin: 2.5rem auto;
    max-width: 100%;
}

/* Large Banner Ad */
.large-banner-ad {
    width: 100%;
    max-width: 970px;
    margin: 2rem auto;
    padding: 1rem;
}

/* Medium Rectangle Ad */
.medium-rectangle-ad {
    width: 100%;
    max-width: 336px;
    margin: 1.5rem auto;
}

/* Small Rectangle Ad */
.small-rectangle-ad {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
}

/* Countdown Ad (Top Right) */
.countdown-ad {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border: 1px solid var(--amethyst);
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.countdown-ad .close-ad-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--amethyst);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.countdown-ad .close-ad-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.countdown-ad.hidden {
    display: none;
}

/* Responsive Ad Styles */
@media (max-width: 768px) {
    .sticky-footer-ad {
        padding: 0.5rem;
    }

    .sticky-footer-ad .adsbygoogle {
        max-width: 320px;
    }

    .floating-sidebar-ad {
        display: none !important;
    }

    .sidebar-ad {
        position: relative;
        top: 0;
    }

    .countdown-ad {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem auto;
    }

    .large-banner-ad {
        max-width: 100%;
    }

    .header-banner-ad .adsbygoogle {
        max-width: 320px;
    }

    .blog-post-section .container {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .floating-sidebar-ad {
        display: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-tagline {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, #2a1a3e 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    scroll-snap-align: start;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    transform: scale(1);
    filter: brightness(1);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }
.testimonial-card:nth-child(10) { animation-delay: 1s; }

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--purple-glow);
    border-color: var(--gold);
}

.testimonial-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-name {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--gold-glow);
}

.testimonial-message {
    font-family: var(--serif-font);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--gold) 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--purple-glow);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--amethyst);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 2.5rem;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
    }
    
    .testimonial-card {
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-arrow-left {
        left: 0.5rem;
    }
    
    .carousel-arrow-right {
        right: 0.5rem;
    }
}

