/* Landing Page Specific Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #66BB6A 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.logo-background {
    display: inline-block;
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.company-logo {
    max-width: 200px;
    height: auto;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.green-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.green-card-badge i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Hero Access Button */
.btn-hero-access {
    display: inline-block;
    background: white;
    color: #2E7D32;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-hero-access:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-hero-access i {
    font-size: 1rem;
}

/* Green Card Section */
.green-card-section {
    background: #f8f9fa;
}

.card-preview img {
    transition: transform 0.3s ease;
}

.card-preview:hover img {
    transform: scale(1.05) rotate(2deg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1.2;
}

.title-highlight {
    color: #4CAF50;
    font-weight: 400;
}

/* Benefits List */
.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 15px;
    min-width: 30px;
    margin-top: 3px;
}

.benefit-item span {
    font-size: 1rem;
    color: #424242;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: white;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    position: relative;
    overflow: hidden;
}

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section .btn-light {
    background: white;
    color: #2E7D32;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.cta-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-3px);
}

/* Certifications Section */
.certifications-section {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.certification-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cert-badge {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #212121;
    color: #f8f9fa;
}

.footer h5 {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.footer-phone {
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-phone:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.footer i {
    color: #4CAF50;
}

.footer .text-info {
    color: #81C784 !important;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

    .logo-background {
        padding: 18px;
    }

    .company-logo {
        max-width: 160px;
    }

    .green-card-badge {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .btn-hero-access {
        font-size: 1rem;
        padding: 14px 35px;
    }

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

    .benefit-item {
        margin-bottom: 1rem;
        padding: 12px;
    }

    .benefit-item i {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .certification-badges {
        gap: 1.5rem;
    }

    .cert-badge {
        height: 40px;
    }

    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .logo-background {
        padding: 15px;
    }

    .company-logo {
        max-width: 140px;
    }

    .btn-hero-access {
        font-size: 1rem;
        padding: 12px 30px;
    }
}