/* ========================================
   VetSyCare Pricing Page Styles
   ======================================== */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #2F5855 0%, #1a3331 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 133, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 133, 114, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.toggle-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.125rem;
}

.save-badge {
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-left: 8px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #10B981;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2F5855;
    box-shadow: 0 8px 40px rgba(47, 88, 85, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 16px 60px rgba(47, 88, 85, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C98572 0%, #d9a090 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 133, 114, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 8px;
}

.card-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.discount-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #1E40AF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 12px;
}

.discount-badge.highlight {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.card-price {
    text-align: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: #2F5855;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #2F5855;
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

.card-billing {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E5E7EB;
}

.billing-info {
    display: block;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.savings {
    display: block;
    color: #10B981;
    font-weight: 700;
    font-size: 0.95rem;
}

.savings.highlight {
    color: #C98572;
    font-size: 1.05rem;
}

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

.features-list li {
    padding: 12px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-list li i {
    color: #10B981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-item {
    text-align: center;
    padding: 28px 20px;
}

.comparison-item i {
    font-size: 3rem;
    color: #2F5855;
    margin-bottom: 20px;
}

.comparison-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.comparison-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #F8F9FA;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2F5855;
    box-shadow: 0 4px 20px rgba(47, 88, 85, 0.1);
}

.faq-item h4 {
    color: #2F5855;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    font-size: 1.25rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Contact */
.footer-contact {
    margin-top: 16px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #C98572;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 4px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1000;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: #F8F9FA;
    color: #2F5855;
}

.dropdown-item i {
    margin-right: 8px;
    color: #64748b;
}

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 12px;
    }

    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 80px 20px 60px;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}
