/* === CONTACT PAGE MODERN 2025 === */

/* Hero Contact Modern */
.contact-hero-modern {
    position: relative;
    background: linear-gradient(135deg, #0f4d21, #156a2f, #1a8040, #156a2f);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-title-contact {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Form Card Modern */
.contact-form-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 106, 47, 0.1);
    transition: all 0.5s ease;
}

.contact-form-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(21, 106, 47, 0.3);
}

.card-header-modern {
    background: linear-gradient(135deg, #156a2f, #1a8040);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.card-header-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.header-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    backdrop-filter: blur(10px);
}

.card-header-modern h2,
.card-header-modern p {
    color: white;
    position: relative;
    z-index: 1;
}

.card-body-modern {
    padding: 2.5rem;
}

/* Modern Form Controls */
.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.label-icon-modern {
    color: #156a2f;
    font-size: 1.1rem;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: #156a2f;
    box-shadow: 0 0 0 4px rgba(21, 106, 47, 0.1);
    transform: translateY(-2px);
}

.form-control-modern::placeholder {
    color: #adb5bd;
}

.form-text-modern {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

.form-check-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem;
    background: rgba(21, 106, 47, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.form-check-modern:hover {
    background: rgba(21, 106, 47, 0.08);
}

.form-check-input-modern {
    width: 24px;
    height: 24px;
    border: 2px solid #156a2f;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-input-modern:checked {
    background-color: #156a2f;
    border-color: #156a2f;
}

.form-check-label-modern {
    cursor: pointer;
    color: #333333;
    line-height: 1.6;
}

/* Modern Submit Button */
.btn-submit-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(21, 106, 47, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(-2px);
}

/* Modern Alerts */
.alert-success-modern,
.alert-danger-modern {
    border-radius: 16px;
    border: none;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.alert-success-modern {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border-left: 4px solid #28a745;
}

.alert-danger-modern {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border-left: 4px solid #dc3545;
}

.alert-icon-modern {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-success-modern .alert-icon-modern {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger-modern .alert-icon-modern {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Contact Info Card Modern */
.contact-info-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 106, 47, 0.1);
    position: sticky;
    top: 100px;
}

.info-header-modern {
    background: linear-gradient(135deg, #1a8040, #156a2f);
    padding: 2rem;
    color: white;
}

.info-body-modern {
    padding: 2rem;
}

.info-item-modern {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(21, 106, 47, 0.03);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-item-modern:hover {
    background: rgba(21, 106, 47, 0.08);
    transform: translateX(5px);
}

.info-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.phone-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.email-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
}

.schedule-icon {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.info-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.info-item-modern:hover .info-icon-modern::before {
    transform: translate(-50%, -50%) scale(1);
}

.info-content-modern {
    flex: 1;
}

.info-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.info-desc-modern {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.75rem;
}

.info-link-modern {
    display: inline-block;
    color: #156a2f;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link-modern:hover {
    color: #1a8040;
    transform: translateX(5px);
}

.info-extra-modern {
    display: block;
    color: #666666;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.info-extra-modern i {
    color: #156a2f;
    margin-right: 4px;
}

.schedule-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(21, 106, 47, 0.1);
}

.schedule-day {
    font-weight: 600;
    color: #333333;
}

.schedule-time {
    font-weight: 700;
    color: #156a2f;
}

.quick-cta-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(240, 196, 25, 0.1), rgba(240, 196, 25, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(240, 196, 25, 0.3);
    margin-top: 1.5rem;
}

.quick-cta-modern i {
    font-size: 1.75rem;
    color: #f0c419;
}

.cta-link-modern {
    color: #156a2f;
    font-weight: 700;
    text-decoration: none;
}

.cta-link-modern:hover {
    text-decoration: underline;
}

/* Why Contact Modern */
.why-contact-modern {
    padding: 3rem 0;
}

.reason-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(21, 106, 47, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reason-card-modern:hover {
    transform: translateY(-10px);
    border-color: #156a2f;
    box-shadow: 0 20px 50px rgba(21, 106, 47, 0.2);
}

.reason-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #156a2f, #1a8040);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.reason-card-modern:hover .reason-icon-modern {
    transform: rotateY(360deg) scale(1.1);
}

.reason-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, #156a2f, #1a8040);
    padding: 5rem 0;
    position: relative;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(240, 196, 25, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-icon-modern {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-title-modern {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle-modern {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: white;
    color: #156a2f;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: #156a2f;
}

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

    .contact-form-card-modern,
    .contact-info-card-modern {
        border-radius: 20px;
    }

    .card-body-modern,
    .info-body-modern {
        padding: 1.5rem;
    }

    .contact-info-card-modern {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .info-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .cta-title-modern {
        font-size: 1.75rem;
    }
}

