/* =============================================
   AgroPay Custom Styles
   ============================================= */

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    padding: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.25s ease;
    opacity: 0.45;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.15);
    border-color: rgba(158, 221, 5, 0.4);
}

.lang-btn.active {
    opacity: 1;
    border-color: #9edd05;
    transform: scale(1.05);
}

/* Page Banner */
.page-banner-area {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner-area .banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-banner-area .banner-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0 16px;
}

.page-banner-area .banner-content p {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .page-banner-area {
        padding: 80px 0 60px;
    }
    .page-banner-area .banner-content h1 {
        font-size: 28px;
    }
    .page-banner-area .banner-content p {
        font-size: 16px;
    }
}

/* Plans Page */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.billing-toggle {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #082720;
}

.billing-toggle.active {
    background: #082720;
    border-color: #082720;
    color: #fff;
}

.billing-toggle:hover:not(.active) {
    border-color: #9edd05;
    color: #082720;
}

.billing-save-badge {
    background: #9edd05;
    color: #082720;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.plan-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: #9edd05;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.plan-card.featured {
    background: #082720;
    border-color: #9edd05;
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(8,39,32,0.25);
}

.plan-card.featured:hover {
    transform: translateY(-12px);
}

.plan-badge {
    display: inline-block;
    background: #9edd05;
    color: #082720;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-card.featured .plan-name {
    color: #fff;
}

.plan-price-wrap {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.plan-card.featured .plan-price-wrap {
    border-color: rgba(255,255,255,0.15);
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #082720;
    line-height: 1;
}

.plan-card.featured .plan-price {
    color: #9edd05;
}

.plan-period {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.plan-card.featured .plan-period {
    color: rgba(255,255,255,0.6);
}

.plan-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.plan-card.featured .plan-desc {
    color: rgba(255,255,255,0.7);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.08);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #9edd05;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-card.featured .plan-features li i {
    color: #9edd05;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid #082720;
    color: #082720;
    background: transparent;
}

.plan-btn:hover {
    background: #082720;
    color: #9edd05;
}

.plan-card.featured .plan-btn {
    background: #9edd05;
    border-color: #9edd05;
    color: #082720;
}

.plan-card.featured .plan-btn:hover {
    background: #82c604;
    border-color: #82c604;
}

/* Process Steps - How it works */
.process-step {
    display: flex;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: #9edd05;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    opacity: 0.7;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #082720;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
        gap: 12px;
    }
    .step-number {
        font-size: 48px;
        width: auto;
    }
}

/* Team member cards */
.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    border-color: #9edd05;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.team-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-card-body {
    padding: 24px;
}

.team-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #082720;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 14px;
    color: #9edd05;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card-social {
    display: flex;
    gap: 10px;
}

.team-card-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #edf1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #082720;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.team-card-social a:hover {
    background: #9edd05;
    color: #082720;
}

/* Values cards */
.value-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #9edd05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #082720;
}

/* About stats */
.stat-card {
    text-align: center;
    padding: 32px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #9edd05;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

/* Contact form */
.contact-form-wrap {
    background: #fff;
    border-radius: 30px;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #f9fafb;
}

.contact-form-wrap .form-control:focus {
    border-color: #9edd05;
    box-shadow: 0 0 0 4px rgba(158, 221, 5, 0.12);
    background: #fff;
}

.contact-info-card {
    background: #082720;
    border-radius: 30px;
    padding: 48px 36px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(158, 221, 5, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9edd05;
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    margin: 0;
}

.contact-info-text a:hover {
    color: #9edd05;
}

/* Solutions page feature blocks */
.solution-block {
    padding: 80px 0;
    overflow: hidden;
}

.solution-block:nth-child(even) {
    background: #edf1ee;
}

/* Benefit cards */
.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border-left: 4px solid #9edd05;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 32px;
    color: #9edd05;
    margin-bottom: 16px;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #082720 0%, #0c3a30 100%);
    border-radius: 30px;
    padding: 60px 48px;
    text-align: center;
}

@media (max-width: 767px) {
    .contact-form-wrap {
        padding: 32px 24px;
    }
    .contact-info-card {
        padding: 32px 24px;
    }
    .cta-section {
        padding: 48px 24px;
    }
}
