/* Additional CSS for warmer CTAs */
.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(var(--accent-rgb), 0.4);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover::after {
    opacity: 1;
}

/* Pulsing effect for primary CTAs */
.primary-cta {
    animation: gentle-pulse 3s infinite;
}

@keyframes gentle-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(var(--accent-rgb), 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    }
}

/* Softer, secondary CTAs */
.secondary-cta {
    background: linear-gradient(135deg, var(--warm-sand-light) 0%, var(--warm-sand) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(var(--warm-sand-rgb), 0.3);
}

.secondary-cta::after {
    background: linear-gradient(135deg, var(--warm-sand) 0%, var(--warm-sand-dark) 100%);
}

.secondary-cta:hover {
    box-shadow: 0 7px 20px rgba(var(--warm-sand-rgb), 0.4);
}

/* Conversational CTAs with icons */
.chat-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chat-cta::before {
    content: '💬';
    font-size: 1.2em;
}

/* Explore CTAs with icons */
.explore-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.explore-cta::before {
    content: '🔍';
    font-size: 1.2em;
}

/* Family-focused CTAs */
.family-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.family-cta::before {
    content: '👨‍👩‍👧‍👦';
    font-size: 1.2em;
}

/* Floating CTA for mobile */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
}

/* CTA containers with enhanced styling */
.cta-container {
    background: linear-gradient(135deg, rgba(var(--warm-sand-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cta-container h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.cta-container p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

/* Step indicators for CTAs */
.step-cta {
    position: relative;
    padding-left: 50px;
    text-align: left;
    margin: 15px 0;
}

.step-cta::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Testimonial-backed CTAs */
.testimonial-cta-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--warm-sand-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-cta-container .testimonial {
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-cta-container .testimonial::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2em;
    color: var(--accent-color);
    line-height: 1;
}

.testimonial-cta-container .cta-button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .testimonial-cta-container {
        grid-template-columns: 1fr;
    }
}

/* Animated arrow for CTAs */
.arrow-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.arrow-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.arrow-cta:hover {
    gap: 12px;
}

.arrow-cta:hover::after {
    transform: translateX(3px);
}

/* Warm, inviting form submit buttons */
button.cta-button {
    cursor: pointer;
    width: auto;
    min-width: 150px;
}

/* CTA with countdown or limited time offer */
.limited-cta {
    position: relative;
    padding-top: 25px;
}

.limited-cta::before {
    content: 'Limited Time Offer';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    white-space: nowrap;
}

/* Subtle highlight for important CTAs */
.highlight-cta {
    position: relative;
}

.highlight-cta::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--accent-color);
    border-radius: 33px;
    opacity: 0.5;
    pointer-events: none;
    animation: dash-animation 15s linear infinite;
}

@keyframes dash-animation {
    to {
        stroke-dashoffset: 1000;
    }
}

/* Family journey CTAs */
.journey-cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.journey-step-number {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.journey-step-content {
    flex-grow: 1;
}

.journey-step-content h4 {
    margin: 0 0 5px 0;
}

.journey-step-content p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-light);
}

/* Final CTA with emphasis */
.final-cta {
    margin-top: 50px;
    text-align: center;
}

.final-cta .cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
}

.final-cta p {
    margin-bottom: 25px;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
