/* Rosary73 Website - Marian Color Scheme */
/* Global Styles with Virgin Mary's Colors */
:root {
    /* Marian Blue - Light Blue */
    --primary-blue: #5DADE2;
    --primary-dark: #3498DB;
    --primary-light: #AED6F1;
    
    /* Gold Accents */
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFF8DC;
    
    /* Pure White */
    --white: #FFFFFF;
    --white-soft: #FAFAFA;
    
    /* Supporting Colors */
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --background: #F8F9FA;
    --success: #27AE60;
    --warning: #F39C12;
    
    /* Design Elements */
    --border-radius: 16px;
    --box-shadow: 0 4px 20px rgba(93, 173, 226, 0.15);
    --box-shadow-hover: 0 8px 30px rgba(93, 173, 226, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-blue: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    line-height: 1.8;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Decorative Elements */
.holy-cross {
    display: inline-block;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 10px;
}

.rosary-divider {
    text-align: center;
    margin: 40px 0;
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 10px;
}

/* Buttons with Marian Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(93, 173, 226, 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-white:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Navigation with Marian Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(93, 173, 226, 0.1);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(93, 173, 226, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo {
    width: 45px;
    height: 45px;
    padding: 5px;
    background: var(--gradient-blue);
    border-radius: 50%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

/* Hero Section with Marian Theme */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✚';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 200px;
    color: rgba(255, 215, 0, 0.05);
    transform: rotate(15deg);
}

.hero::after {
    content: '❈';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 150px;
    color: rgba(93, 173, 226, 0.05);
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    color: var(--gold-dark);
    font-size: 2rem;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 32px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

.blessing-text {
    color: var(--gold-dark);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 30px;
    padding: 20px;
    background: var(--gold-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
    animation: fadeInUp 1.6s ease;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(93, 173, 226, 0.3);
    border: 2px solid var(--gold);
}

.floating-badge {
    position: absolute;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -30px;
    animation-delay: 1s;
    background: var(--gold-light);
    color: var(--gold-dark);
}

.badge-3 {
    bottom: 20%;
    right: -40px;
    animation-delay: 2s;
}

/* Features Section with Marian Style */
.features {
    padding: 100px 0;
    background: var(--white-soft);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(93, 173, 226, 0.1);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '✚';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 80px;
    color: rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(93, 173, 226, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 50%;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.feature-title {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works with Rosary Bead Style */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gold);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--white);
    color: var(--primary-blue);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.step-arrow {
    font-size: 32px;
    color: var(--gold);
    margin: 0 20px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.2);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-verse {
    margin-top: 12px;
    font-style: italic;
    color: var(--gold);
}

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 2px solid var(--gold);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .steps-container::before {
        left: 50%;
        top: 10%;
        bottom: 10%;
        width: 2px;
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}