/* ========================================
   PRICING PAGE ENHANCEMENTS
   Modern animations and interactive features
   All classes prefixed with .pricing-page to avoid conflicts
   ======================================== */

/* ========================================
   BASE STYLES - Override global body styles
   ======================================== */
body:has(.pricing-page) {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.pricing-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.pricing-page .page-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pricing-headerPulse 8s ease-in-out infinite;
}

@keyframes pricing-headerPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.pricing-page .page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-page .page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #ffffff;
    animation: pricing-fadeInDown 0.8s ease-out;
}

.pricing-page .page-header h1 i {
    color: #ff6b35;
}

/* ========================================
   Subtitle Styling - Improved Color + Readability
   ======================================== */
.pricing-page .page-header .subtitle {
    font-size: 1.3em;
    color: #9B3922; /* Warm deep orange for better contrast and brand match */
    font-weight: 500;
    opacity: 1;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center;
    animation: pricing-fadeInUp 0.8s ease-out 0.2s both;
}


.pricing-page .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95em;
    animation: pricing-fadeIn 1s ease-out 0.4s both;
}

.pricing-page .breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pricing-page .breadcrumb a:hover {
    opacity: 0.8;
}

.pricing-page .breadcrumb span {
    color: #666;
}

/* ========================================
   CONTAINER
   ======================================== */
.pricing-page .container {
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 40px 20px 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   BACK BUTTON
   ======================================== */
.pricing-page .back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #2d2d2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #3d3d3d;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.pricing-page .back-button:hover {
    background: #3d3d3d;
    transform: translateX(-5px);
    border-color: #ff6b35;
}

.pricing-page .back-button i {
    color: #ff6b35;
    transition: transform 0.3s;
}

.pricing-page .back-button:hover i {
    transform: translateX(-3px);
}

/* ========================================
   PRICING TOGGLE - Enhanced
   ======================================== */
.pricing-page .pricing-toggle {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-page .pricing-toggle h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeIn 0.6s ease-out;
}

.pricing-page .toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #2d2d2d;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #3d3d3d;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-page .toggle-option {
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
    user-select: none;
}

.pricing-page .toggle-option:hover {
    color: #ffffff;
    transform: scale(1.02);
}

.pricing-page .toggle-option.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: toggleSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toggleSlide {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Savings Badge with Bounce Animation */
.pricing-page .save-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-left: 10px;
    border: 1px solid #22c55e;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.pricing-page .toggle-option.active .save-badge {
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(34, 197, 94, 0);
    }
}

/* ========================================
   PRICING GRID
   ======================================== */
.pricing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* ========================================
   PRICING CARD - Enhanced with Flip Animation
   ======================================== */
.pricing-page .pricing-card {
    background: #2d2d2d;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #3d3d3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    overflow: visible;
}

.pricing-page .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-color: #ff6b35;
}

/* Popular Card with Glowing Border */
.pricing-page .pricing-card.popular {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #2d2d2d 0%, #2a2a2a 100%);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    position: relative;
    transform: scale(1.03);
}

.pricing-page .pricing-card.popular::before {
    /* Border animation disabled */
    display: none;
}

.pricing-page .pricing-card.popular:hover::before {
    /* Animation disabled */
}

.pricing-page .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

/* Recommended Badge with Pulse */
.pricing-page .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Plan Icon */
.pricing-page .plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    border: 2px solid #4d4d4d;
    transition: all 0.4s ease;
}

.pricing-page .pricing-card:hover .plan-icon {
    transform: scale(1.1);
}

.pricing-page .pricing-card.popular .plan-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-color: #ff6b35;
}

.pricing-page .plan-icon i {
    color: #ff6b35;
}

.pricing-page .pricing-card.popular .plan-icon i {
    color: white;
}

/* Plan Details */
.pricing-page .plan-name {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff;
}

.pricing-page .plan-description {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Price with Transition */
.pricing-page .plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-page .price-amount {
    font-size: 3em;
    font-weight: 700;
    color: #ff6b35;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-page .pricing-card.price-updating .price-amount {
    animation: priceFlip 0.6s ease-in-out;
}

@keyframes priceFlip {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }
    50% {
        transform: rotateX(90deg);
        opacity: 0.3;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.pricing-page .currency {
    font-size: 0.5em;
    margin-top: 10px;
}

.pricing-page .price-period {
    color: #666666;
    font-size: 0.9em;
    margin-top: 5px;
}

.pricing-page .price-note {
    color: #a0a0a0;
    font-size: 0.85em;
    font-style: italic;
    margin-top: 5px;
}

/* ========================================
   FEATURES LIST with Animated Checkmarks
   ======================================== */
.pricing-page .features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-page .feature-item {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #3d3d3d;
    opacity: 0;
    animation: featureReveal 0.4s ease-out forwards;
}

@keyframes featureReveal {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-page .feature-item:nth-child(1) { animation-delay: 0.1s; }
.pricing-page .feature-item:nth-child(2) { animation-delay: 0.15s; }
.pricing-page .feature-item:nth-child(3) { animation-delay: 0.2s; }
.pricing-page .feature-item:nth-child(4) { animation-delay: 0.25s; }
.pricing-page .feature-item:nth-child(5) { animation-delay: 0.3s; }
.pricing-page .feature-item:nth-child(6) { animation-delay: 0.35s; }
.pricing-page .feature-item:nth-child(7) { animation-delay: 0.4s; }

.pricing-page .feature-item:last-child {
    border-bottom: none;
}

.pricing-page .feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.pricing-page .feature-icon i {
    color: #ff6b35;
    font-size: 0.75em;
    animation: checkmarkReveal 0.6s ease-out forwards;
}

@keyframes checkmarkReveal {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.pricing-page .feature-icon.disabled {
    background: rgba(128, 128, 128, 0.1);
}

.pricing-page .feature-icon.disabled i {
    color: #666666;
}

.pricing-page .feature-text {
    color: #e8e8e8;
    font-size: 0.95em;
    line-height: 1.5;
}

.pricing-page .feature-item.disabled .feature-text {
    color: #666666;
    text-decoration: line-through;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.pricing-page .cta-button {
    display: block;
    width: 80%;
    max-width: 250px;
    padding: 12px;
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s;
    border: 2px solid #4d4d4d;
    cursor: pointer;
    position: relative;
    /* Keep CTA tooltips visible (Issue #561) */
    overflow: visible;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.pricing-page .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    /* Keep ripple contained even though the button allows overflow for tooltips */
    clip-path: inset(0 round 10px);
}

.pricing-page .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.pricing-page .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.pricing-page .pricing-card.popular .cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-page .pricing-card.popular .cta-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

/* ========================================
   COMPARISON TABLE - Enhanced
   ======================================== */
.pricing-page .comparison-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 80px;
    background: #2d2d2d;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #3d3d3d;
    position: relative;
}

.pricing-page .comparison-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
}

.pricing-page .comparison-section h2 i {
    color: #ff6b35;
}

.pricing-page-comparison-table-wrapper {
    overflow-x: auto;
    position: relative;
}

.pricing-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
}

/* Sticky Header on Scroll */
.pricing-page .comparison-table thead {
    background: #252525;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-page .comparison-table th {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid #3d3d3d;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-page .comparison-table th:hover {
    background: rgba(255, 107, 53, 0.1);
}

.pricing-page .comparison-table .sort-icon {
    margin-left: 8px;
    font-size: 0.8em;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.pricing-page .comparison-table th:hover .sort-icon {
    opacity: 1;
}

.pricing-page .comparison-table th:first-child {
    text-align: left;
    background: #1a1a1a;
}

.pricing-page .comparison-table th.popular-col {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    position: relative;
}

.pricing-page .comparison-table td {
    padding: 18px 20px;
    border: 1px solid #3d3d3d;
    text-align: center;
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.pricing-page .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    background: #252525;
}

/* Highlight on Hover */
.pricing-page .comparison-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-page .comparison-table tbody tr:hover {
    background: #323232;
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.pricing-page .comparison-table tbody tr:hover td {
    color: #ffffff;
}

.pricing-page .check-icon {
    color: #4ade80;
    font-size: 1.2em;
    animation: iconPop 0.4s ease-out;
}

.pricing-page .cross-icon {
    color: #666666;
    font-size: 1.2em;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Expandable Sections for Mobile */
.pricing-page .comparison-section.mobile-view {
    padding: 30px 20px;
}

.pricing-page-comparison-mobile-card {
    display: none;
    background: #252525;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #3d3d3d;
}

.pricing-page-comparison-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.pricing-page-comparison-mobile-header h3 {
    color: #ff6b35;
    font-size: 1.2em;
}

.pricing-page-comparison-mobile-header i {
    transition: transform 0.3s ease;
}

.pricing-page-comparison-mobile-card.expanded .pricing-page-comparison-mobile-header i {
    transform: rotate(180deg);
}

.pricing-page-comparison-mobile-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pricing-page-comparison-mobile-card.expanded .pricing-page-comparison-mobile-content {
    max-height: 1000px;
    margin-top: 15px;
}

/* ========================================
   PRICE CALCULATOR WIDGET
   ======================================== */
.pricing-page .price-calculator {
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 2px solid #ff6b35;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.pricing-page .calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-page .calculator-header h2 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 10px;
}

.pricing-page .calculator-header h2 i {
    color: #ff6b35;
}

.pricing-page .calculator-header p {
    color: #c0c0c0;
    font-size: 1.05em;
}

.pricing-page .calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 20px;
}

.pricing-page .form-group {
    display: flex;
    flex-direction: column;
}

.pricing-page .form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.pricing-page .form-group label i {
    color: #ff6b35;
    margin-right: 8px;
}

.pricing-page .form-group input,
.pricing-page .form-group select {
    padding: 12px 16px;
    background: #1a1a1a;
    border: 2px solid #3d3d3d;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1em;
    transition: all 0.3s ease;
}

.pricing-page .form-group input:focus,
.pricing-page .form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.pricing-page .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.pricing-page #calculate-price-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-end;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-page #calculate-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.pricing-page #calculate-price-btn:active {
    transform: translateY(0);
}

.pricing-page .calculator-result {
    display: none;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 15px;
    margin-top: 20px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-page .calculator-result.error {
    border: 2px solid #ef4444;
    color: #ef4444;
    text-align: center;
    padding: 20px;
}

.pricing-page .price-breakdown h4 {
    color: #ff6b35;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-page .breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #3d3d3d;
    color: #e8e8e8;
}

.pricing-page .breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    margin-top: 15px;
    border-top: 2px solid #ff6b35;
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
}

.pricing-page .total-amount {
    color: #ff6b35;
    font-size: 1.3em;
}

.pricing-page .calculator-note {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9em;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

.pricing-page .calculator-note i {
    color: #ff6b35;
    margin-right: 5px;
}

.pricing-page .calc-book-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-page .calc-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.pricing-page .testimonials-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: #2d2d2d;
    border-radius: 20px;
    border: 1px solid #3d3d3d;
}

.pricing-page .testimonials-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
}

.pricing-page .testimonials-section h2 i {
    color: #ff6b35;
}

.pricing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-page .testimonial-card {
    background: #252525;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #3d3d3d;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-page .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #ff6b35;
}

.pricing-page .testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pricing-page .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    font-weight: 700;
}

.pricing-page .testimonial-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.pricing-page .testimonial-plan {
    color: #ff6b35;
    font-size: 0.85em;
    font-weight: 600;
}

.pricing-page .testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

.pricing-page .testimonial-text {
    color: #e8e8e8;
    line-height: 1.6;
    font-style: italic;
}

.pricing-page .testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3em;
    color: rgba(255, 107, 53, 0.1);
}

/* Testimonial Slider */
.pricing-page .testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.pricing-page .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.pricing-page .testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.pricing-page .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pricing-page .testimonial-prev,
.pricing-page .testimonial-next {
    background: #3d3d3d;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.pricing-page .testimonial-prev:hover,
.pricing-page .testimonial-next:hover {
    background: #ff6b35;
}

.pricing-page .testimonial-prev:disabled,
.pricing-page .testimonial-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.pricing-page .faq-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: #2d2d2d;
    border-radius: 20px;
    border: 1px solid #3d3d3d;
}

.pricing-page .faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
}

.pricing-page .faq-section h2 i {
    color: #ff6b35;
}

.pricing-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-page .faq-item {
    background: #252525;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #3d3d3d;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-page .faq-item:hover {
    border-color: #ff6b35;
}

.pricing-page .faq-item.active {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.pricing-page .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05em;
    user-select: none;
}

.pricing-page .faq-question:hover {
    color: #ff6b35;
}

.pricing-page .faq-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    color: #ff6b35;
}

.pricing-page .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.pricing-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.pricing-page .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.pricing-page .faq-answer p {
    color: #e8e8e8;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pricing-page .faq-answer ul {
    color: #e8e8e8;
    margin-left: 20px;
    line-height: 1.8;
}

.pricing-page .faq-answer ul li {
    margin-bottom: 5px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .pricing-page .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-page .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-page .comparison-table {
        font-size: 0.9em;
    }

    .pricing-page .comparison-section {
        padding: 40px 30px;
    }

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

    .pricing-page #calculate-price-btn {
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }

    .page-header .subtitle {
        font-size: 1.1em;
    }

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

    .pricing-page .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-page .comparison-section {
        padding: 30px 20px;
    }

    /* Show mobile card view */
    .pricing-page-comparison-table-wrapper {
        display: none;
    }

    .pricing-page-comparison-mobile-card {
        display: block;
    }

    .pricing-page .toggle-container {
        flex-direction: column;
        padding: 10px;
    }

    .pricing-page .toggle-option {
        width: 100%;
        text-align: center;
    }

    .pricing-page .price-calculator,
    .pricing-page .testimonials-section,
    .pricing-page .faq-section {
        padding: 30px 20px;
    }

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