/* Pricing Page Specific CSS */

/* Active navigation state */
.nav-link.active {
    color: #93B47E !important;
    font-weight: 700;
}

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

/* Page Header with Dynamic Animated Background */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #2E3B2C 0%, #93B47E 100%);
    padding: 140px 0 60px;
    margin-top: 80px;
    text-align: center;
    overflow: hidden;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(147, 180, 126, 0.15);
    animation: float 20s ease-in-out infinite;
}

.page-header::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.page-header::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

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

.page-header-content h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.25rem;
    color: #F5F5F5;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Feature Navigation Buttons */
.feature-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-feature-nav {
    background: #FFFFFF;
    color: #93B47E;
    border: 2px solid #93B47E;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-feature-nav:hover {
    background: #93B47E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 180, 126, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    flex: 1;
    min-width: 320px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #93B47E;
}

.pricing-card.featured {
    border-color: #93B47E;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FBF6 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #93B47E;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-subtitle {
    color: #444444;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.pricing-cost {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #93B47E;
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 1rem;
    color: #444444;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-minimum {
    text-align: center;
    margin-bottom: 1.5rem;
}

.minimum-badge {
    background: #F5F5F5;
    color: #2E3B2C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkmark {
    color: #35A854;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #93B47E;
    color: white;
}

.btn-primary:hover {
    background: #7a9a67;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f8f9fa;
    color: #93B47E;
    border: 2px solid #93B47E;
}

.btn-secondary:hover {
    background: #93B47E;
    color: white;
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 80px 0;
    background: #F5F5F5;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-header p {
    font-size: 1.1rem;
    color: #444444;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

/* Header Row */
.comparison-table thead tr {
    background: #F5F5F5;
}

.comparison-table th {
    padding: 2rem 1.5rem;
    text-align: center;
    vertical-align: top;
}

.comparison-table th:first-child {
    text-align: left;
    width: 35%;
    background: #FFFFFF;
}

.plan-header {
    min-width: 200px;
}

.plan-name {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.featured-plan {
    background: linear-gradient(145deg, #F8FBF6 0%, #FFFFFF 100%);
    position: relative;
}

.featured-plan::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body */
.comparison-table tbody tr {
    border-bottom: 1px solid #F5F5F5;
}

.comparison-table tbody tr:hover {
    background: #FAFAFA;
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #2E3B2C;
}

/* Section Headers */
.section-header-row td {
    background: #2E3B2C;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    text-align: left;
}

.section-header-row:hover {
    background: #2E3B2C !important;
}

/* Checkmarks for comparison table */
.table-checkmark {
    color: #35A854;
    font-size: 1.5rem;
    font-weight: 700;
}

.not-included {
    color: #CCC;
    font-size: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #F5F5F5;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #444444;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93B47E, #35A854);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-content h4 {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-content p {
    color: #444444;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #93B47E;
}

.faq-item.active {
    border-color: #93B47E;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: #FFFFFF;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #F8FBF6;
}

.faq-question h4 {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin: 0;
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #93B47E;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #93B47E;
    color: #FFFFFF;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E3B2C 0%, #35A854 100%);
    color: #FFFFFF;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn-primary {
    background-color: #93B47E;
    color: #2E3B2C;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #2E3B2C;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        max-width: 1200px;
    }
    
    .pricing-card {
        max-width: 380px;
    }
    
    .price {
        font-size: 1.8rem;
    }

    .comparison-table th:first-child {
        width: 30%;
    }
    
    .plan-header {
        min-width: 180px;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        max-width: 900px;
    }
    
    .pricing-card {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2.25rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .btn-feature-nav {
        width: 250px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .pricing-card:hover {
        transform: translateY(-4px);
    }
    
    .price {
        font-size: 2.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .comparison-header h2 {
        font-size: 2rem;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 1.875rem;
    }
    
    .btn-feature-nav {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }

    .comparison-table th:first-child {
        width: 40%;
    }

    .plan-header {
        min-width: 150px;
    }

    .plan-name {
        font-size: 1.1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}