/* Pricing Page Specific Styles */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #0b2a6f 0%, #1f3a8a 100%);
    padding: 30px 5% 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,100 C250,0 750,0 1000,100 L1000,0 L0,0 Z" fill="%23ffffff" opacity="0.05"/></svg>');
    background-size: 100% 150px;
    background-position: top;
    background-repeat: no-repeat;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.billing-label.active {
    color: white;
    font-weight: 600;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label {
    background: #10b981;
}

.toggle-input:checked + .toggle-label .toggle-handle {
    transform: translateX(30px);
}

/* Service Selection */
.service-selection {
    padding: 80px 5%;
    background: #f9fbfe;
}

.service-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 30px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.service-tab i {
    font-size: 20px;
    color: #64748b;
    transition: all 0.3s ease;
}

.service-tab:hover {
    border-color: #1f3a8a;
    color: #1f3a8a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-tab:hover i {
    color: #1f3a8a;
}

.service-tab.active {
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 58, 138, 0.3);
}

.service-tab.active i {
    color: white;
}

/* Pricing Plans */
.pricing-plans {
    padding: 80px 5%;
    background: white;
}

.plans-section {
    animation: fadeIn 0.6s ease;
}

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

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.plan-card.featured {
    border-color: #1f3a8a;
    transform: scale(1.05);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 8px;
    right: 20px;
    background: #e2e8f0;
    color: #64748b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge {
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    color: white;
}

.plan-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.plan-header h3 {
    font-size: 24px;
    color: #162c6b;
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.plan-price {
    margin-top: 20px;
}

.amount {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #162c6b;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.plan-features {
    padding: 30px;
    flex-grow: 1;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #4a5568;
}

.plan-features li span {
    flex: 1;
}

.plan-features i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features .fa-check {
    background: #d1fae5;
    color: #059669;
}

.plan-features .fa-times {
    background: #fee2e2;
    color: #dc2626;
}

.plan-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #f9fbfe;
}

.plan-cta {
    display: block;
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 2px solid transparent;
}

.plan-cta:hover {
    background: transparent;
    color: #1f3a8a;
    border-color: #1f3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-cta {
    background: linear-gradient(135deg, #10b981, #059669);
}

.featured-cta:hover {
    background: transparent;
    color: #059669;
    border-color: #10b981;
}

.plan-note {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

/* Modern Premium Pricing Add-ons CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --maintenance-blue: #1e40af;
    --maintenance-light: #3b82f6;
    --seo-green: #059669;
    --seo-light: #10b981;
    --support-purple: #7c3aed;
    --support-light: #8b5cf6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-addon-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.pricing-addon-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark), #374151);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Grid Layout */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* Card Base Styles */
.addon-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 95%;
    overflow: hidden;
}

.addon-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transition: var(--transition);
}

.addon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

/* Ribbon Styling */
.card-ribbon {
    position: absolute;
    top: 26px;
    right: -40px;
    background: var(--maintenance-blue);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.seo-card .card-ribbon {
    background: var(--seo-green);
}

.support-card .card-ribbon {
    background: var(--support-purple);
}

.card-ribbon i {
    font-size: 0.75rem;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: -25px auto 28px;
    position: relative;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    opacity: 0.1;
    transition: var(--transition);
}

.maintenance-card .icon-wrapper::before {
    background: var(--maintenance-blue);
}

.seo-card .icon-wrapper::before {
    background: var(--seo-green);
}

.support-card .icon-wrapper::before {
    background: var(--support-purple);
}

.icon-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.maintenance-card .icon-container {
    background: linear-gradient(135deg, var(--maintenance-blue), var(--maintenance-light));
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.seo-card .icon-container {
    background: linear-gradient(135deg, var(--seo-green), var(--seo-light));
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.2);
}

.support-card .icon-container {
    background: linear-gradient(135deg, var(--support-purple), var(--support-light));
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.icon-container i {
    font-size: 20px;
    color: white;
    transition: var(--transition);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-tagline {
    font-size: 1rem;
    text-align:initial;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* Pricing Section */
.card-pricing {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    align-self: flex-start;
}

.price {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Card Content */
.card-content {
    flex-grow: 1;
    margin-bottom: 10px;
}

.card-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Feature Section */
.feature-section {
    margin-top: 20px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: -5px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--bg-light);
    border-color: var(--border-light);
    transform: translateX(4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.maintenance-card .feature-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--maintenance-blue);
}

.seo-card .feature-icon {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--seo-green);
}

.support-card .feature-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--support-purple);
}

.feature-icon i {
    font-size: 1rem;
}

.feature-text {
    flex-grow: 1;
}

.feature-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Card Footer */
.card-footer {
    margin-top: auto;
}

.addon-btn {
    width: 100%;
    padding: 14px 14px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.addon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.maintenance-card .addon-btn {
    background: linear-gradient(135deg, var(--maintenance-blue), var(--maintenance-light));
    color: white;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

.seo-card .addon-btn {
    background: linear-gradient(135deg, var(--seo-green), var(--seo-light));
    color: white;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.support-card .addon-btn {
    background: linear-gradient(135deg, var(--support-purple), var(--support-light));
    color: white;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 16px;
    font-weight: 400;
}

/* Hover Effects */
.addon-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.addon-card:hover::before {
    height: 6px;
}

.maintenance-card:hover::before {
    background: linear-gradient(90deg, var(--maintenance-blue), var(--maintenance-light));
}

.seo-card:hover::before {
    background: linear-gradient(90deg, var(--seo-green), var(--seo-light));
}

.support-card:hover::before {
    background: linear-gradient(90deg, var(--support-purple), var(--support-light));
}

.addon-card:hover::after {
    opacity: 1;
}

.addon-card:hover .icon-wrapper::before {
    transform: scale(1.1);
}

.addon-card:hover .icon-container {
    transform: rotate(10deg) scale(1.05);
}

.addon-card:hover .icon-container i {
    transform: scale(1.1);
}

.addon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.addon-btn:hover::before {
    opacity: 1;
}

.addon-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .addon-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }
    
    .addon-card {
        padding: 40px 32px;
    }
}

@media (max-width: 1024px) {
    .pricing-addon-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .price {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .addon-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .pricing-addon-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .icon-container i {
        font-size: 36px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .addon-card {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .addon-card {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-container i {
        font-size: 32px;
    }
    
    .addon-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 12px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



.addon-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Optional: Add floating animation on hover */

/* Testimonials */
.pricing-testimonials {
    padding: 80px 5%;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content i {
    color: #eef5ff;
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    color: #162c6b;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.rating {
    color: #fbbf24;
    font-size: 14px;
}

/* FAQ Section - New Design */
.faq-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f9fbfe 0%, #eef5ff 100%);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-icon i {
    color: white;
    font-size: 18px;
}

.faq-header h3 {
    font-size: 18px;
    color: #162c6b;
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle i {
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    border-color: #1f3a8a;
    background: #f8fafc;
}

.faq-toggle:hover i {
    color: #1f3a8a;
}

.faq-item.active .faq-toggle {
    background: #1f3a8a;
    border-color: #1f3a8a;
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-item.active .faq-header h3 {
    color: #1f3a8a;
}

.faq-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    padding: 0 30px 30px 110px;
    max-height: 500px;
}

.faq-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* FAQ Contact CTA */
.faq-cta {
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

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

.cta-content i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}
.icon-wrap i {
  font-size: 20px;   /* icon size */
  color: #000;       /* icon color */
}
.icon-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-top: 15px
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1f3a8a;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.faq-contact-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-contact-btn i {
    font-size: 16px;
    margin: 0;
    display: inline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-header {
        padding: 20px;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        margin-right: 15px;
    }
    
    .faq-header h3 {
        font-size: 16px;
    }
    
    .faq-content p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 20px 20px 71px; /* 36px icon + 15px margin + 20px padding */
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-header {
        padding: 15px;
    }
    
    .faq-icon {
        display: none;
    }
    
    .faq-header h3 {
        padding-right: 50px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 15px 15px 15px;
    }
    
    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* CTA Section */
.pricing-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1f3a8a, #0b2a6f);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.primary-btn {
    background: white;
    color: #1f3a8a;
}

.primary-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #1f3a8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -5px;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #162c6b;
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto -40px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.featured {
        order: -1;
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 5% 60px;
    }
    
    .pricing-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tab {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 15px;
        padding: 15px 25px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}