/* Página de Venda - Oitava Rosado Benefícios */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #00756A, #44BABA);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-icon i {
    font-size: 3rem;
    color: #00756A;
}

.benefit-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    background: #f8f9fa;
}

.plan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border: 3px solid #00756A;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00756A;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,117,106,0.3);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00756A;
}

.plan-price .period {
    font-size: 1rem;
    color: #6c757d;
}

.plan-description {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.95rem;
}

.feature-list li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: #28a745;
}

/* Social Proof Section */
.social-proof-section {
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    border: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-rating {
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

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

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00756A 0%, #44BABA 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: #00756A;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background: #00756A;
    border-color: #00756A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #005a52;
    border-color: #005a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,117,106,0.3);
}

.btn-outline-primary {
    color: #00756A;
    border-color: #00756A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #00756A;
    border-color: #00756A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,117,106,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

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

.benefit-card,
.plan-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00756A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005a52;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-content {
    padding-right: 2rem;
}

.download-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.download-content .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-features {
    margin-bottom: 2rem;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.download-features .feature-item i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: #28a745;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.download-buttons .btn {
    transition: all 0.3s ease;
    border: 2px solid #333;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
}

.download-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background: #333;
    color: white;
}

.download-buttons .btn img {
    transition: all 0.3s ease;
}

.download-buttons .btn:hover img {
    filter: brightness(0) invert(1);
}

.download-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive adjustments for download section */
@media (max-width: 768px) {
    .download-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .download-content .section-title {
        font-size: 2rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-buttons .btn {
        margin-bottom: 1rem;
    }
} 



/* ===== PÁGINA EMPRESA ===== */

/* Hero Section */
.empresa-hero-section {
    background: linear-gradient(135deg, var(--kt-primary) 0%, #08746c 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.empresa-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/../images/site/bg_download.png) center/cover;
    opacity: 0.1;
    z-index: 1;
}

.empresa-hero-section .container {
    position: relative;
    z-index: 2;
}


@media (max-width: 576px) {
    .empresa-hero-section {
        padding: 60px 0;
    }
}

/* Página de Sindicatos - Oitava Rosado Benefícios */

/* Hero Section */
.sindicato-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.sindicato-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.sindicato-hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sindicatos Section */
.sindicatos-section {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Sindicato Cards */
.sindicato-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid #f8f9fa;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sindicato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00756A, #44BABA);
}

.sindicato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.sindicato-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.sindicato-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1rem;
}

.sindicato-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,117,106,0.1);
    border-radius: 10px;
}

.logo-placeholder i {
    font-size: 3rem;
    color: #00756A;
}

.sindicato-info {
    flex: 1;
}

.sindicato-sigla {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00756A;
    margin-bottom: 0.5rem;
}

.sindicato-nome {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.sindicato-email {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sindicato-email i {
    color: #00756A;
}

/* Benefits Section */
.sindicato-benefits {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefits-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.benefits-list li i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.sindicato-action {
    margin-top: auto;
}

.sindicato-action .btn {
    background: #00756A;
    border-color: #00756A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sindicato-action .btn:hover {
    background: #005a52;
    border-color: #005a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,117,106,0.3);
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-icon i {
    font-size: 3rem;
    color: #00756A;
}

.benefit-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00756A 0%, #44BABA 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sindicato-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .sindicato-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sindicato-card {
        padding: 1.5rem;
    }
    
    .sindicato-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .sindicato-logo {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .sindicato-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .sindicato-hero-section {
        padding: 60px 0;
    }
    
    .sindicato-card {
        padding: 1rem;
    }
    
    .sindicato-sigla {
        font-size: 1.5rem;
    }
    
    .sindicato-nome {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
    }
}

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

.sindicato-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00756A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005a52;
}

/* Loading states */
.sindicato-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.sindicato-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #00756A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
} 


/* Página de Contato - Oitava Rosado Benefícios */

/* Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid #f8f9fa;
    height: 100%;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.modern-form .form-group {
    margin-bottom: 1rem;
}

.modern-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-form .form-control:focus {
    border-color: #00756A;
    box-shadow: 0 0 0 0.2rem rgba(0,117,106,0.25);
    background: white;
}

.modern-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.modern-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.modern-form .btn {
    background: #00756A;
    border-color: #00756A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-form .btn:hover {
    background: #005a52;
    border-color: #005a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,117,106,0.3);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid #f8f9fa;
    height: 100%;
}

.info-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0,117,106,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #00756A;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
}

.map-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.map-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00756A 0%, #44BABA 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1rem;
    }
    
    .modern-form .form-control {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

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

.contact-form-card,
.contact-info-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00756A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005a52;
}

/* Form validation styles */
.modern-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

.modern-form .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

/* Loading state for form submission */
.modern-form.submitting .btn {
    opacity: 0.7;
    pointer-events: none;
}

.modern-form.submitting .btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 
