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

:root {
    --dark-navy: #1a1a2e;
    --deep-purple: #16213e;
    --cosmic-purple: #2d1b4e;
    --accent-pink: #d946a6;
    --accent-gold: #fbbf24;
    --accent-blue: #3b82f6;
    --light-text: #ffffff;
    --secondary-text: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light-text);
    background-color: var(--dark-navy);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 100%);
    border-bottom: 2px solid #ff006e;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.2);
    
    padding: 1.2rem 2rem;
    margin-bottom: 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}  font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-pink);
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.6)) drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
    transition: filter 0.3s ease;
}

.logo-icon:hover {
    filter: drop-shadow(0 0 16px rgba(251, 191, 36, 1)) drop-shadow(0 0 28px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 40px rgba(251, 191, 36, 0.5));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-pink);
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 5px;
}

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

.nav-social a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--accent-pink);
}

.cart-btn {
    background: var(--accent-pink);
    color: white !important;
    border: none;
    padding: 0.145rem 0.29rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    filter: brightness(1.2);
    font-size: 0.5rem;
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
    transform: translateY(-2px);
}

.cart-btn:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

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

.nav-menu-social {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--cosmic-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

#starsCanvas {
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

body:has(.contact-section) .hero-content {
    margin-left: 50px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--light-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

.hero-image {
    text-align: center;
}

.hero-photo {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(217, 70, 166, 0.3);
    border: 3px solid var(--accent-pink);
    animation: float 3s ease-in-out infinite;
}

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

/* Intentions Section */
.intentions {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 100%);
    padding: 5rem 0;
    text-align: center;
}

.intentions-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid var(--accent-pink);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(217, 70, 166, 0.15);
}

.intentions-main {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    line-height: 1.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.intentions-secondary {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-text);
    line-height: 1.8;
    font-style: italic;
}

.intentions-card .lotus-divider {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--deep-purple) 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lotus-divider {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--light-text);
}

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

.service-card {
    background: rgba(45, 27, 78, 0.6);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(217, 70, 166, 0.3);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a3e 100%);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, -2%); }
}

.newsletter .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.newsletter-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4, #da70d6, #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.4));
}

.newsletter h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff69b4, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.newsletter p {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 0.9rem;
    min-width: 260px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 105, 180, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.15), inset 0 0 20px rgba(255, 105, 180, 0.05);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff69b4, #da70d6, #9370db);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.newsletter-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.reading-info {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 1rem;
}

/* Inspiration Section */
.inspiration {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--deep-purple) 100%);
    padding: 4rem 0;
    text-align: center;
}

.inspiration-text {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin: 2rem 0;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Daily Wisdom Section */
.daily-wisdom {
    background: var(--dark-navy);
    padding: 4rem 0;
    text-align: center;
}

.daily-wisdom h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-pink);
}

.wisdom-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.wisdom-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.wisdom-button {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wisdom-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(217, 70, 166, 0.4);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--deep-purple) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-pink);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-text);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(45, 27, 78, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--accent-pink);
    backdrop-filter: blur(10px);
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

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

/* Ebook Section */
.ebook-section {
    background: var(--dark-navy);
    padding: 4rem 0;
}

.ebook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.ebook-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(217, 70, 166, 0.3);
    border: 3px solid var(--accent-pink);
}

.ebook-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-pink);
}

.ebook-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(217, 70, 166, 0.4);
}

/* Footer */
.footer {
    background: var(--deep-purple);
    color: var(--light-text);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--accent-pink);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Popups */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--deep-purple) 100%);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-pink);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: var(--accent-gold);
}

.popup-content h2 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popup-content input {
    padding: 0.75rem;
    border: 2px solid var(--accent-pink);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 1rem;
}

.popup-content input::placeholder {
    color: var(--secondary-text);
}

.popup-note {
    font-size: 0.85rem;
    color: var(--secondary-text);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-container {
        padding: 0 10px;
    }

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

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

    .nav-social a {
        display: none !important;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .hamburger {
        margin-left: 0;
        display: flex !important;
    }

    .logo-icon {
        height: 35px !important;
        width: 35px !important;
        margin-right: 8px !important;
    }

    .logo-container span {
        font-size: 18px !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu-social {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0.5rem;
    }

    .nav-menu-social .social-icon {
        height: 28px !important;
        max-width: 28px !important;
    }

    .social-icon {
        height: 20px !important;
        max-width: 20px !important;
    }

    .cart-btn {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 0;
        min-width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: brightness(0) invert(1);
        margin-top: 4px;
        margin-right: 2px;
    }

    .cart-btn::before {
        content: '🛒';
        font-size: 1.5rem;
        filter: none;
    }

    .cart-btn span {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .ebook-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-connect {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-connect ul {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-connect ul li {
        margin-bottom: 0;
    }

    .wisdom-card {
        padding: 1.5rem;
    }

    .wisdom-quote {
        font-size: 1.1rem;
    }

    /* Hero section mobile - stack and center */
    .hero {
        height: auto;
        min-height: 400px;
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .hero-text p {
        text-align: center;
    }

    /* Intentions section mobile */
    .intentions-card {
        padding: 2rem 1.5rem;
    }

    .intentions-main {
        font-size: 1.2rem;
    }

    .intentions-secondary {
        font-size: 1.1rem;
    }

    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* CTA section mobile */
    .cta-content {
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    /* Ebook section mobile */
    .ebook-content {
        text-align: center;
    }

    .ebook-image {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .ebook-text {
        order: 2;
    }

    .ebook-image img {
        max-width: 200px;
        margin: 0 auto;
    }

    /* Testimonials grid mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Process grid mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-box {
        padding: 2rem 1.5rem;
    }

    /* Reading type cards mobile */
    .reading-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About page mobile */
    .about-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-intro-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .about-intro-text {
        order: 2;
    }

    .about-intro-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact page mobile */
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .contact-hero-text {
        order: 2;
    }

    .contact-hero-image .hero-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Store page mobile */
    .store-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .store-feature-card {
        padding: 1.5rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Readings page mobile */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .services-offered-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Coaching page mobile */
    .coaching-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coaching-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Articles page mobile */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Buttons touch-friendly */
    .btn, .cta-btn, button {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    /* General section padding mobile */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* How it works section mobile */
    .how-it-works h2 {
        font-size: 1.8rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }

    .popup-content {
        padding: 1.5rem;
    }

    /* Hero photo smaller on very small screens */
    .hero-photo {
        max-width: 220px;
    }

    /* Store features 1 column on very small screens */
    .store-features-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits grid 1 column on very small screens */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Footer two columns still but tighter */
    .footer-content {
        gap: 1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section li {
        font-size: 0.85rem;
    }

    /* Intentions card smaller padding */
    .intentions-card {
        padding: 1.5rem 1rem;
    }

    .intentions-main {
        font-size: 1.1rem;
    }

    .intentions-secondary {
        font-size: 1rem;
    }

    /* Process boxes smaller */
    .process-box {
        padding: 1.5rem 1rem;
    }

    .process-num {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    /* How it works heading */
    .how-it-works h2 {
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
    }

    /* Testimonials smaller */
    .testimonials h2 {
        font-size: 1.6rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Enhanced Testimonials */
.testimonials {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid #d946a6;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 70, 166, 0.3);
}

.testimonial-card::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    text-align: right;
}

/* Quote transition */
.wisdom-quote {
    transition: opacity 0.3s ease-in-out;
}

/* Reading Type Cards - Beautiful Dark Design */
.reading-type-card {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 100%);
    border: 2px solid #d946a6;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(217, 70, 166, 0.15);
}

.reading-type-card:hover {
    transform: translateY(-10px);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.25);
}

.reading-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.reading-type-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reading-type-card p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* How to Book Section - TRULY ELEGANT & BEAUTIFUL REDESIGN */
.how-it-works {
    background: linear-gradient(180deg, #f9f7f4 0%, #f0ebe4 50%, #e8dfd4 100%);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 166, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.how-it-works h2 {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 5rem;
    text-align: center;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #4a3575 100%);
    padding: 3.5rem 3rem;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    box-shadow: 0 20px 60px rgba(45, 27, 78, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    line-height: 1.3;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-box {
    background: linear-gradient(135deg, #ffffff 0%, #fffcfa 50%, #faf8f5 100%);
    border: 3px solid #d946a6;
    border-radius: 28px;
    padding: 3.5rem 2.8rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(217, 70, 166, 0.18), 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.process-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.05) 0%, rgba(251, 191, 36, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

.process-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.08) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.process-box:hover::after {
    opacity: 1;
}

.process-box:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: #ff006e;
    box-shadow: 0 40px 100px rgba(217, 70, 166, 0.3), 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #fffbfe 0%, #fff9fd 50%, #fff6fb 100%);
}

.process-num {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d946a6 0%, #ff006e 50%, #fbbf24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 auto 2.5rem;
    box-shadow: 0 15px 45px rgba(217, 70, 166, 0.5), 0 0 25px rgba(255, 0, 110, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.process-box h3 {
    color: #ffffff;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.process-box p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.4px;
}

/* About Hero Section - Stunning Design */
.about-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #16213e 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 70, 166, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d946a6 0%, #fbbf24 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(217, 70, 166, 0.6);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
    font-style: italic;
}

.about-hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-accent-bottom {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #d946a6 100%);
    margin: 2rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
}

/* Glowing Logo Icon Animation */
.logo-icon {
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.6)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3)) !important;
    animation: glow-icon 2s ease-in-out infinite;
}

@keyframes glow-icon {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.6)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8)) drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
    }
}


/* Beautiful Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #1a1a2e 100%) !important;
    border-top: 2px solid #ff006e;
    border-bottom: 2px solid #ff006e;
    padding: 5rem 2rem !important;
}

.philosophy-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
}

.philosophy-content {
    background: rgba(90, 74, 127, 0.3) !important;
    border: 2px solid #d946a6 !important;
    border-radius: 20px !important;
    padding: 3rem !important;
}

.philosophy-content p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

/* Beautiful Values Section */
.values-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #3d2563 100%) !important;
    padding: 5rem 2rem !important;
}

.values-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
    text-align: center !important;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.2) 0%, rgba(89, 74, 127, 0.3) 100%) !important;
    border: 2px solid #d946a6 !important;
    border-radius: 15px !important;
    padding: 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(217, 70, 166, 0.2) !important;
}

.value-card:hover {
    transform: translateY(-10px) !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3) !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(217, 70, 166, 0.2) 100%) !important;
}

.value-card h3 {
    color: #fbbf24 !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.value-card p {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}


/* Beautiful Readings Bottom Sections */
.mission-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #1a1a2e 100%) !important;
    border-top: 2px solid #ff006e;
    border-bottom: 2px solid #ff006e;
    padding: 5rem 2rem !important;
}

.mission-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
}

.mission-section p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

.fall-in-love-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #3d2563 100%) !important;
    padding: 5rem 2rem !important;
    border-bottom: 2px solid #ff006e;
}

.fall-in-love-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
}

.fall-in-love-section p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

.testimonials-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #1a1a2e 100%) !important;
    padding: 5rem 2rem !important;
    border-bottom: 2px solid #ff006e;
}

.testimonials-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
    text-align: center !important;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.2) 0%, rgba(89, 74, 127, 0.3) 100%) !important;
    border: 2px solid #d946a6 !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(217, 70, 166, 0.2) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3) !important;
}

.testimonial-card p {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-style: italic !important;
}

.testimonial-author {
    color: #fbbf24 !important;
    font-weight: 600 !important;
    text-align: right !important;
}

.faq-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #3d2563 100%) !important;
    padding: 5rem 2rem !important;
}

.faq-section h2 {
    color: #fbbf24 !important;
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
    text-align: center !important;
}

.faq-item {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.2) 0%, rgba(89, 74, 127, 0.3) 100%) !important;
    border: 2px solid #d946a6 !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: #fbbf24 !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2) !important;
}

.faq-item h3 {
    color: #fbbf24 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

.faq-item p {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}


/* Divine Light Articles Hero Section */
.articles-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 20%, #fbbf24 40%, #f59e0b 60%, #d946a6 80%, #a855f7 100%) !important;
    padding: 8rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    border-bottom: none !important;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3) !important;
}

.articles-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%) !important;
    animation: divine-pulse 8s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes divine-pulse {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(10%, 10%) scale(1.1); opacity: 0.8; }
}

.articles-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

.articles-hero h1 {
    color: #7c3aed !important;
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 20px rgba(124, 58, 237, 0.4), 0 0 40px rgba(251, 191, 36, 0.3) !important;
    font-weight: 700 !important;
    font-family: 'Century Gothic', sans-serif !important;
    letter-spacing: 1px !important;
}

.articles-hero p {
    color: #6b21a8 !important;
    font-size: 1.4rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
}

.articles-hero-divider {
    width: 100px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #d946a6 0%, #fbbf24 50%, #d946a6 100%) !important;
    margin: 2rem auto !important;
    border-radius: 2px !important;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5) !important;
}

/* Elegant Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #1a1a2e 100%) !important;
    padding: 6rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    border-bottom: 2px solid #ff006e !important;
}

.contact-hero h1 {
    color: #fbbf24 !important;
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
    font-weight: 700 !important;
}

.contact-hero p {
    color: #e0e0e0 !important;
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

.contact-hero-divider {
    width: 100px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #d946a6 0%, #fbbf24 50%, #d946a6 100%) !important;
    margin: 2rem 0 !important;
    border-radius: 2px !important;
}
/* Force redeploy - Mon Jan 26 14:19:40 EST 2026 */


/* Store Hero Section - ELEGANT & BEAUTIFUL */
.store-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #3d2563 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.store-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(217, 70, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.store-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.store-hero .container {
    position: relative;
    z-index: 2;
}

.store-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1.2px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.store-hero p {
    font-size: 1.3rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-button-large {
    background: linear-gradient(135deg, #d946a6 0%, #ff006e 100%);
    color: #ffffff;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 45px rgba(217, 70, 166, 0.4), 0 0 20px rgba(255, 0, 110, 0.2);
    letter-spacing: 0.8px;
    display: inline-block;
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 70px rgba(217, 70, 166, 0.5), 0 0 30px rgba(255, 0, 110, 0.3);
}

/* Store Info Banner */
.store-info-banner {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
    padding: 4rem 2rem;
    border-top: 2px solid #d946a6;
    border-bottom: 2px solid #fbbf24;
}

.info-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 2rem;
}

.info-number {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.info-item p {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* WORLD-CLASS HERO SECTIONS */

.articles-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 15%, #fcd34d 30%, #fbbf24 45%, #f59e0b 60%, #f97316 70%, #ec4899 85%, #a855f7 100%) !important;
    padding: 5rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    border-bottom: none !important;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.4) !important;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.articles-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -100% !important;
    left: -100% !important;
    width: 300% !important;
    height: 300% !important;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 40%), radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 40%), radial-gradient(circle at 50% 30%, rgba(251, 191, 36, 0.3) 0%, transparent 50%) !important;
    animation: divine-rays 15s ease-in-out infinite !important;
    pointer-events: none !important;
}

.articles-hero::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 2px, transparent 2px), radial-gradient(circle, rgba(251, 191, 36, 0.6) 1px, transparent 1px) !important;
    background-size: 100px 100px, 150px 150px !important;
    background-position: 0 0, 50px 50px !important;
    animation: particles-float 20s linear infinite !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
}

@keyframes divine-rays {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    33% { transform: translate(10%, 5%) rotate(5deg) scale(1.05); opacity: 0.8; }
    66% { transform: translate(-5%, 10%) rotate(-3deg) scale(1.03); opacity: 0.7; }
}

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

.articles-hero .container {
    position: relative !important;
    z-index: 10 !important;
    max-width: 900px !important;
}

.articles-hero h1 {
    color: #4c1d95 !important;
    font-size: 2.8rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(124, 58, 237, 0.3) !important;
    font-weight: 700 !important;
    font-family: 'Century Gothic', sans-serif !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
}

.articles-hero p {
    color: #581c87 !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.articles-hero-lotus {
    font-size: 3rem !important;
    margin-bottom: 2rem !important;
    animation: lotus-glow 3s ease-in-out infinite !important;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) !important;
}

@keyframes lotus-glow {
    0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
    50% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 30px rgba(251, 191, 36, 1)); }
}

.articles-hero-sparkle {
    font-size: 2rem !important;
    margin-top: 2rem !important;
    animation: sparkle-twinkle 2s ease-in-out infinite !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) !important;
}

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.store-hero {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 20%, #7c3aed 40%, #6b21a8 60%, #581c87 80%, #3b0764 100%) !important;
    padding: 4rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    border-bottom: none !important;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5) !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.store-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.3) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 30%), radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 40%) !important;
    animation: magical-glow 10s ease-in-out infinite !important;
    pointer-events: none !important;
}

.store-hero::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle, rgba(251, 191, 36, 0.6) 3px, transparent 3px), radial-gradient(circle, rgba(236, 72, 153, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px) !important;
    background-size: 120px 120px, 80px 80px, 60px 60px !important;
    background-position: 0 0, 40px 40px, 20px 20px !important;
    animation: orbs-rise 25s linear infinite !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
}

@keyframes magical-glow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 1; }
}

@keyframes orbs-rise {
    0% { transform: translateY(0); }
    100% { transform: translateY(-120px); }
}

.store-hero .container {
    position: relative !important;
    z-index: 10 !important;
    max-width: 1000px !important;
}

.store-hero h1 {
    color: #ffffff !important;
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 4px 30px rgba(251, 191, 36, 0.6), 0 8px 50px rgba(236, 72, 153, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
    font-family: 'Century Gothic', sans-serif !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
}

@keyframes title-shimmer {
    0%, 100% { text-shadow: 0 4px 30px rgba(251, 191, 36, 0.8), 0 8px 50px rgba(236, 72, 153, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 40px rgba(251, 191, 36, 1), 0 8px 60px rgba(236, 72, 153, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3); }
}

.store-hero p {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
    line-height: 1.7 !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 4px 25px rgba(251, 191, 36, 0.3) !important;
    font-weight: 500 !important;
    font-style: italic !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.store-hero .hero-cta {
    margin-top: 3rem !important;
}

.store-hero .cta-button-large {
    display: inline-block !important;
    padding: 1.5rem 4rem !important;
    background: linear-gradient(135deg, #ec4899 0%, #d946a6 50%, #c026d3 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5), 0 0 40px rgba(251, 191, 36, 0.3), inset 0 -2px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
    animation: cta-pulse 3s ease-in-out infinite !important;
}

.store-hero .cta-button-large:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.7), 0 0 60px rgba(251, 191, 36, 0.5), inset 0 -2px 10px rgba(0, 0, 0, 0.2) !important;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5), 0 0 40px rgba(251, 191, 36, 0.3), inset 0 -2px 10px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 10px 35px rgba(236, 72, 153, 0.7), 0 0 50px rgba(251, 191, 36, 0.5), inset 0 -2px 10px rgba(0, 0, 0, 0.2); }
}

@media (max-width: 768px) {
    .articles-hero h1, .store-hero h1 { font-size: 2rem !important; }
    .articles-hero p, .store-hero p { font-size: 1rem !important; }
    .articles-hero, .store-hero { padding: 4rem 1.5rem !important; min-height: 250px !important; }
}


/* Contact page specific hero image sizing */
.contact-hero-image .hero-photo {
    max-width: 450px !important;
    width: 90% !important;
}

@media (max-width: 768px) {
    .contact-hero-image .hero-photo {
        max-width: 360px !important;
    }
}

/* Override yellow text to white on Contact and Store pages */
.contact-section h2,
.contact-form-wrapper h2,
.contact-section h3,
.contact-section label,
.form-group label {
    color: #ffffff !important;
}

.store-info-banner h3,
.store-section h2,
.store-section h3 {
    color: #ffffff !important;
}

/* Override yellow text to white on About, Readings, and Coaching pages */
.about-hero-subtitle,
.philosophy-section h2,
.values-section h2,
.value-card h3,
.mission-section h2,
.fall-in-love-section h2,
.testimonials-section h2,
.testimonial-author,
.faq-section h2,
.faq-item h3,
.reading-type-card h3,
.process-box h3,
.readings-section h2,
.coaching-section h2,
.coaching-approach h3,
.coaching-benefits h3 {
    color: #ffffff !important;
}

/* Override yellow hover effects to white/light colors */
.value-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.reading-type-card:hover {
    border-color: #ffffff !important;
}

/* FAQ section on Contact page - change yellow to white */
.contact-faq-section h2,
.contact-faq-section h3,
.faq-section.contact-faq h2,
.faq-section.contact-faq h3 {
    color: #ffffff !important;
}

/* Store page service titles and pricing - change yellow to white */
.readings-section h2,
.readings-section h3,
.category-title,
.reading-header h3,
.reading-price,
.price-amount,
.reading-card h3,
.reading-card h4 {
    color: #ffffff !important;
}

/* Readings page - What You'll Receive section - change yellow to white */
.readings-benefits h2,
.readings-benefits h3,
.benefit-box h3,
.benefit-icon {
    color: #ffffff !important;
}


/* Comprehensive yellow to white overrides for Readings and Coaching pages */
.coaching-hero h1,
.coaching-section h2,
.coaching-programs h2,
.coaching-process h2,
.coaching-transformations h2,
.what-is-coaching h2,
.coaching-card h3,
.program-card h3,
.process-step h3,
.coaching-benefit h3,
.spiritual-coaching-section h1,
.coaching-programs-section h2,
.coaching-process-section h2,
.client-transformations h2,
.program-title,
.step-title,
.transformation-title,
.benefit-title,
.readings-hero h2,
.what-youll-receive h2,
.readings-process h2 {
    color: #ffffff !important;
}


/* Readings page mission text - black, not bold, larger */
.mission-text {
    color: #000000 !important;
    font-weight: normal !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.mission-highlight {
    color: #000000 !important;
    font-weight: normal !important;
    font-size: 1.1rem !important;
}

.mission-closing {
    color: #000000 !important;
    font-weight: normal !important;
    font-size: 1.1rem !important;
}


/* Coaching page - specific yellow headings to white */
.coaching-cta h2,
.ready-to-transform h2,
.coaching-process-section h3,
.process-card h3,
.client-transformations-section h2,
.what-is-coaching-section h2,
.coaching-benefit-card h3 {
    color: #ffffff !important;
}


/* My Romania Page Styles */
.romania-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d1b4e 50%, #4a1942 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.romania-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(217, 70, 166, 0.15) 0%, transparent 50%);
    animation: gentleGlow 8s ease-in-out infinite;
}

.romania-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
}

.romania-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.romania-content {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.romania-story {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    line-height: 1.9;
    color: #2c3e50;
}

.story-section {
    margin-bottom: 3rem;
}

.story-opening {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a1942;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-section h2 {
    font-size: 1.8rem;
    color: #2d1b4e;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.story-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a1942;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
}

.story-closing {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(217, 70, 166, 0.1) 100%);
    border-radius: 15px;
}

.story-closing p {
    font-size: 1.4rem;
    color: #2d1b4e;
    font-weight: 500;
    margin: 0.5rem 0;
}

.romania-cta {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a1942 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 166, 0.4);
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 70, 166, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .romania-hero h1 {
        font-size: 2.2rem;
    }
    
    .romania-subtitle {
        font-size: 1.1rem;
    }
    
    .story-section h2 {
        font-size: 1.5rem;
    }
    
    .story-section p {
        font-size: 1.05rem;
    }
    
    .story-opening {
        font-size: 1.3rem;
    }
}


/* Coaching page - make all text white */
.what-is-coaching-section p,
.coaching-benefit-card p,
.process-card p,
.coaching-intro-text,
.spiritual-coaching-intro {
    color: #ffffff !important;
}

/* Coaching page - numbered circles and descriptions */
.coaching-benefit-card .number-circle,
.process-card .number-circle {
    color: #ffffff !important;
}


/* What is Spiritual Coaching section - white heading */
.coaching-what h2 {
    color: #ffffff !important;
}


/* Social Media Icons */
.social-icon {
    height: 24px;
    width: auto;
    max-width: 24px;
    border-radius: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: contain;
    transform: translateY(2px);
}

.nav-social a[href*="instagram"] .social-icon {
    height: 22px;
    max-width: 22px;
    transform: translateY(1px);
}

.social-icon:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    transform: scale(1.1) translateY(-3px);
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Cart button heart styling */
.cart-btn {
    font-size: 0.91rem;
    transform: translateY(-4px);
}

.cart-btn::first-letter {
    font-size: 1.14em;
    text-shadow: 
        -1px -1px 0 var(--accent-gold),
        1px -1px 0 var(--accent-gold),
        -1px 1px 0 var(--accent-gold),
        1px 1px 0 var(--accent-gold),
        0 0 3px var(--accent-gold);
}


/* Featured Ebook Section - Homepage */
.ebook-section-featured {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.ebook-section-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ebook-featured-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ebook-featured-image {
    position: relative;
}

.ebook-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.ebook-featured-image:hover img {
    transform: scale(1.03);
}

.ebook-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(236, 72, 153, 0.3));
    border-radius: 15px;
    z-index: -1;
    filter: blur(25px);
    animation: ebookGlow 4s ease-in-out infinite alternate;
}

@keyframes ebookGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.ebook-featured-text {
    color: #fff;
}

.ebook-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.ebook-featured-text h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.ebook-featured-text h3 {
    font-size: 1.5rem;
    color: #ec4899;
    margin-bottom: 20px;
    font-style: italic;
}

.ebook-featured-text > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ebook-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ebook-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 8px 0;
    line-height: 1.5;
}

.ebook-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #1a0a2e !important;
    font-weight: 700 !important;
    padding: 16px 35px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease !important;
}

.ebook-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.ebook-note {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive for Ebook Section */
@media (max-width: 768px) {
    .ebook-featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ebook-featured-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .ebook-featured-text h2 {
        font-size: 1.8rem;
    }
    
    .ebook-benefits {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }
}


/* ===== ENHANCED NEWSLETTER SECTION ===== */
.newsletter-enhanced {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.newsletter-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.85) 0%, 
        rgba(75, 35, 95, 0.8) 50%, 
        rgba(26, 26, 46, 0.85) 100%);
    z-index: 2;
}

.newsletter-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
    padding: 2rem;
}

.newsletter-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(236, 72, 153, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #f9a8d4;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.newsletter-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

.newsletter-title .highlight {
    background: linear-gradient(135deg, #ec4899, #a855f7, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.newsletter-form-enhanced {
    max-width: 550px;
    margin: 0 auto 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #ec4899;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.newsletter-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
    background: linear-gradient(135deg, #f472b6, #c084fc);
}

.newsletter-promise {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Mobile responsive for enhanced newsletter */
@media (max-width: 768px) {
    .newsletter-enhanced {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.6rem;
    }
    
    .newsletter-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .newsletter-content {
        padding: 1rem;
    }
}
