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

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --accent-color: #FFB347;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --background-light: #FFFFFF;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-light: linear-gradient(135deg, #FFFACD 0%, #FFE4B5 100%);
    --shadow-soft: 0 10px 30px rgba(255, 215, 0, 0.2);
    --shadow-medium: 0 15px 35px rgba(255, 215, 0, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background: var(--primary-color);
    color: var(--text-dark) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/church-holy-sepulchre.jpg') no-repeat center;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    padding: 3rem 1rem;
}

.quote-icon {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.1;
}

.title-line-1 {
    color: #FFFFFF;
    display: block;
}

.title-line-2 {
    color: #FFD700;
    display: block;
    margin-top: -0.2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.hero-note {
    color: #FFD700;
    font-size: 0.9rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-weight: 500;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: #333333 !important;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #FFFFFF !important;
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--text-dark);
}

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

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

/* Force white background for all sections after hero */
.benefits-section,
.results-section,
.atmosphere-section,
.process-section,
.contact-section {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
    background: var(--white) !important;
    background-color: #FFFFFF !important;
    position: relative;
}

.benefits-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%) !important;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.benefit-card .card-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.benefit-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: #000000 !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Results Section */
.results-section {
    background: var(--white);
}

.results-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.result-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%) !important;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    display: none !important;
}

.result-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.result-card:hover::before {
    opacity: 0.05;
}

.result-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-card .card-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.icon-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #4285F4 0%, #1976D2 100%);
}

.icon-purple {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
}

.result-card:hover .card-icon {
    transform: scale(1.1);
}

.result-card h4 {
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.result-card p {
    color: #666666 !important;
    line-height: 1.6;
    margin: 0;
}



/* Atmosphere Section */
.atmosphere-section {
    background: var(--white);
    padding: 5rem 0;
}

.video-carousel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.carousel-container {
    position: relative;
    width: 100%;
}

.video-slide {
    display: none;
    width: 100%;
}

.video-slide.active {
    display: block;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    object-fit: cover;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.prayer-note-image {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.image-caption h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.image-caption p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 15px 15px;
}

.carousel-btn {
    background: #4A90E2;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #357ABD;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4A90E2;
    transform: scale(1.2);
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.process-arrow {
    color: #FFD700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-arrow 2s infinite;
    flex-shrink: 0;
    width: 30px;
}

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

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.4);
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-content h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.pricing-note {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: #FFFFFF !important;
    padding: 5rem 0;
}

.contact-card {
    background: #FFFFFF !important;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid #E0E0E0;
}

.contact-icon {
    font-size: 4rem;
    color: var(--primary-color) !important;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.contact-form .form-floating {
    margin-bottom: 1rem;
}

.contact-form .form-control {
    background: #FFFFFF;
    border: 2px solid #FFD700;
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1rem;
    color: #000000;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: #FFFFFF;
    border-color: #FFA500;
    color: #000000;
    box-shadow: 0 0 0 0.3rem rgba(255, 215, 0, 0.4);
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form .form-label {
    color: #000000;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: #F8F9FA;
    padding: 5rem 0;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    flex: 1;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-text {
    color: #666666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    border-top: 1px solid #E9ECEF;
    padding-top: 1rem;
    margin-top: auto;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: #2C3E50;
    font-size: 1rem;
    font-weight: 600;
}

.author-info span {
    color: #7F8C8D;
    font-size: 0.85rem;
}

/* Guarantees Section */
.guarantees-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.guarantee-card {
    padding: 2rem 1rem;
}

.guarantee-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto;
}

.icon-circle.green {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.icon-circle.blue {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

.icon-circle.dark {
    background: linear-gradient(135deg, #424242 0%, #616161 100%);
}

.guarantee-title {
    color: #2C3E50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
}





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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-card,
    .result-card {
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number::before {
        width: 70px;
        height: 70px;
        top: -5px;
        left: -5px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        background: #FFFFFF !important;
        color: #333333 !important;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .benefits-row {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 250px;
    }

    .results-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .result-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 280px;
    }

    .process-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
        width: auto;
    }

    .process-step {
        max-width: 100%;
        min-width: auto;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
        background: #FFFFFF !important;
        color: #333333 !important;
    }

    .benefits-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .benefit-card {
        flex: none;
        min-width: auto;
        max-width: none;
        padding: 2rem 1rem;
    }

    .results-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .result-card {
        flex: none;
        min-width: auto;
        max-width: none;
        padding: 2rem 1rem;
    }

    .contact-card {
        padding: 2rem 1rem;
    }

    .video-placeholder {
        height: 300px;
    }

    .video-content {
        max-width: 250px;
    }

    .video-content i {
        font-size: 3rem;
    }

    .process-row {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .process-step {
        padding: 1.2rem 0.8rem;
        min-width: auto;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .process-arrow {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066cc;
        --secondary-color: #009900;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #ffffff;
        --text-light: #cccccc;
        --background-light: #1a1a1a;
        --white: #2d2d2d;
    }

    .navbar {
        background: rgba(45, 45, 45, 0.95);
    }

    .benefit-card,
    .result-card,
    .contact-card {
        background: #2d2d2d;
        border-color: #404040;
    }

    .form-control {
        background: #2d2d2d;
        border-color: #404040;
        color: #ffffff;
    }

    .feature-item {
        background: #FFFFFF !important;
        color: #333333 !important;
        border-color: rgba(255, 215, 0, 0.2) !important;
    }

    .feature-item:hover {
        background: #FFFFFF !important;
        color: #333333 !important;
    }
}


/* Pricing Block Styles - Override */
.pricing-block {
    position: relative;
    margin: 2rem 0;
}

.pricing-badge-special {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: #FFFFFF !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border: 3px solid #FFD700 !important;
    position: relative !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.old-price-block {
    background: #FFD700 !important;
    color: #FFFFFF !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    text-align: center !important;
    position: relative !important;
    min-width: 120px !important;
}

.old-price {
    font-size: 2rem !important;
    font-weight: 900 !important;
    display: block !important;
    margin-bottom: 0 !important;
    color: #FFFFFF !important;
}

.strike-line {
    position: absolute !important;
    top: 50% !important;
    left: 10% !important;
    right: 10% !important;
    height: 4px !important;
    background: #000000 !important;
    transform: translateY(-50%) rotate(-15deg) !important;
    z-index: 2 !important;
}

.new-price-block {
    flex: 1 !important;
    text-align: left !important;
}

.discount-info {
    color: #FF4444 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
}

.new-price {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.price-text {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #333333 !important;
    margin-top: 0.25rem !important;
}

.pricing-note {
    text-align: center !important;
    margin-top: 1.5rem !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
    font-weight: 500 !important;
}

/* Modern Pricing Block */
.pricing-block-modern {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pricing-container {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid #e9ecef;
    position: relative;
    max-width: 450px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s;
}

.pricing-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(255, 165, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-container:hover::before {
    left: 100%;
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.discount-emoji {
    margin-right: 0.3rem;
    font-size: 1rem;
}

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

.pricing-content {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price-section {
    margin-bottom: 1.5rem;
}

.old-price-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.old-price-crossed {
    position: relative;
    display: inline-block;
}

.old-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #adb5bd;
    opacity: 0.8;
}

.cross-line {
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #ff3742);
    transform: translateY(-50%) rotate(-8deg);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
}

.current-price-section {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.current-price-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    margin-right: 0.2rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #2d3436;
    line-height: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-description {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.savings {
    background: rgba(255, 255, 255, 0.9);
    color: #00b894;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.2);
    position: relative;
    z-index: 2;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item-price {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border-left: 4px solid #00b894;
}

.feature-item-price i {
    color: #00b894;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item-price span {
    font-weight: 600;
    color: #2d3436;
}

.price-footer {
    text-align: center;
    border-top: 2px dashed #e9ecef;
    padding-top: 1.5rem;
}

.price-per-person {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.8rem;
}

.urgency-text {
    font-size: 0.9rem;
    color: #e17055;
    font-weight: 700;
    animation: blink-urgency 2s infinite;
}

@keyframes blink-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .price-features {
        gap: 0.6rem;
    }

    .feature-item-price {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Extended Pricing Block */
.pricing-block-extended {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.pricing-container-wide {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid #e9ecef;
    position: relative;
    max-width: 900px;
    width: 100%;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-container-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 1s;
}

.pricing-container-wide:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(255, 165, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-container-wide:hover::before {
    left: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    font-weight: 500;
    margin: 0;
}

.pricing-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.price-comparison-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.arrow-section {
    padding: 1rem 0;
}

.price-arrow {
    font-size: 2rem;
    color: #00b894;
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); color: #00b894; }
    50% { transform: scale(1.2); color: #00a085; }
}

.value-proposition {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    border: 2px dashed #ddd;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
}

.value-header i {
    color: #ffd700;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.feature-item-extended {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #00b894;
    transition: all 0.3s ease;
}

.feature-item-extended:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 700;
    color: #2d3436;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.feature-description {
    font-size: 0.85rem;
    color: #636e72;
}

.pricing-footer-extended {
    border-top: 2px dashed #e9ecef;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.guarantee-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.guarantee-section i {
    color: #28a745;
    font-size: 1.2rem;
}

.price-breakdown {
    text-align: center;
    padding: 1rem;
}

.breakdown-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.3rem;
}

.breakdown-calculation {
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

.urgency-section {
    text-align: center;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.2rem;
    border-radius: 15px;
    border: 2px solid #ffd93d;
}

.urgency-text {
    display: block;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
    animation: urgency-pulse 3s infinite;
}

.social-proof {
    font-size: 0.95rem;
    color: #6c5ce7;
    font-weight: 600;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container-wide {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .pricing-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .offer-title {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .pricing-footer-extended {
        gap: 1rem;
    }

    .guarantee-section,
    .urgency-section {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Simple Footer Styles */
.simple-footer {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-simple {
    display: flex;
    gap: 4rem;
}

.link-group h5 {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffd700;
}

.footer-stats-simple {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.stat-simple {
    text-align: center;
}

.stat-number-simple {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.stat-label-simple {
    font-size: 0.85rem;
    color: #b2bec3;
}

.footer-bottom-simple {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom-simple p {
    margin: 0.3rem 0;
    color: #b2bec3;
    font-size: 0.9rem;
}

.blessing {
    color: #ffd700 !important;
    font-style: italic;
    font-weight: 500;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-btn i {
        margin: 0;
        font-size: 28px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-simple {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-stats-simple {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number-simple {
        font-size: 1.5rem;
    }
}

/* Form Select Styles */
.form-select {
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
}

.form-select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.form-select option {
    padding: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    background: #FFFFFF;
}
