/* Styles specific to index.html */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    border: 2px solid rgba(109, 171, 210, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #97bd58 0%, #6dabd2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 16px rgba(109, 171, 210, 0.15),
        0 16px 40px rgba(109, 171, 210, 0.12);
    border-color: rgba(151, 189, 88, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
}

.benefit-card h3 {
    color: #344864;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: #fafbfc;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 171, 210, 0.12);
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(109, 171, 210, 0.12);
    border-color: rgba(109, 171, 210, 0.25);
}

.accordion-header {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #344864 0%, #3d5674 100%);
    color: white;
    font-weight: 600;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #3d5674 0%, #465a7a 100%);
}

.accordion-icon {
    transition: transform 0.3s;
    font-size: 1.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-content-inner {
    padding: 1.5rem;
    color: #555;
}

/* Inline styles converted to classes */
.paragraph-spacing {
    margin-top: 1rem;
}

.accordion-list {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.name-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.name-option {
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(109, 171, 210, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    color: #344864;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.name-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(151, 189, 88, 0.1), transparent);
    transition: left 0.5s ease;
}

.name-option:hover::before {
    left: 100%;
}

.name-option:hover {
    border-color: #97bd58;
    background: linear-gradient(135deg, #fafffe 0%, #f5fdf8 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 6px 20px rgba(151, 189, 88, 0.2),
        0 2px 8px rgba(151, 189, 88, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, #344864 0%, #2d3f58 100%);
    color: white;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 171, 210, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.cta-section h2 {
    color: white;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.cta-text-bold {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-question-text {
    margin-bottom: 1rem;
}

.contact-note-text {
    margin-top: 1.5rem;
    color: #666;
}

.footer-copyright-text {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Timeline for index.html (simple version without status modifiers) */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #97bd58 0%, #6dabd2 50%, #344864 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(109, 171, 210, 0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #97bd58 0%, #6dabd2 100%);
    border: 4px solid white;
    box-shadow: 
        0 0 0 2px #97bd58,
        0 0 0 4px rgba(151, 189, 88, 0.15),
        0 4px 12px rgba(109, 171, 210, 0.3);
}

.timeline-content {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(109, 171, 210, 0.12);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 12px rgba(109, 171, 210, 0.1);
    border-color: rgba(109, 171, 210, 0.25);
}

.timeline-content h3 {
    color: #344864;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Mobile styles for index.html */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 1rem;
        font-size: 0.95rem;
    }

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



