﻿

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
    }

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 5% 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .page-hero h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .page-hero p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        position: relative;
        z-index: 1;
    }

/* Billing Toggle */
.billing-toggle {
    text-align: center;
    margin: 40px 0;
}

.toggle-switch {
    display: inline-flex;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.toggle-option {
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

    .toggle-option.active {
        background: var(--primary);
        color: white;
    }

.save-badge {
    background: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 5% 80px;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(0,0,0,0.15);
    }

    .pricing-card.popular {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
        border: 2px solid var(--primary);
    }

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

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

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

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

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

    .price span {
        font-size: 16px;
        color: var(--gray);
        font-weight: 400;
    }

.price-period {
    color: var(--gray);
    font-size: 14px;
}

.card-body {
    padding: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

    .features-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .features-list i {
        width: 20px;
        color: var(--success);
        font-size: 14px;
    }

    .features-list .disabled {
        color: var(--gray);
        opacity: 0.5;
    }

        .features-list .disabled i {
            color: var(--gray);
        }

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-plan-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

    .btn-plan-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
    }

.btn-plan-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .btn-plan-outline:hover {
        background: var(--primary);
        color: white;
    }

/* Feature Comparison Table */
.comparison-section {
    padding: 80px 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background: var(--light);
    font-weight: 700;
    color: var(--dark);
}

td {
    color: var(--gray);
}

.check {
    color: var(--success);
    font-size: 18px;
}

.close {
    color: var(--danger);
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background: var(--light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

    .faq-question:hover {
        background: var(--light);
    }

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    line-height: 1.6;
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Trust Section */
.trust-section {
    padding: 40px 5%;
    text-align: center;
    background: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    text-align: center;
}

    .trust-item i {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 10px;
    }

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    color: white;
    padding: 80px 5%;
    text-align: center;
}

    .cta h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

/* Footer */
/*.footer {
    background: var(--dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

    .footer-col a:hover {
        color: var(--primary-light);
    }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}*/

/* Mobile Menu */
/*.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}*/

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            display: flex;
        }

    .page-hero h1 {
        font-size: 36px;
    }

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

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

        .pricing-card.popular:hover {
            transform: translateY(-10px);
        }

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

    th, td {
        padding: 12px;
        font-size: 14px;
    }
}

/* Money-back guarantee badge */
.guarantee-badge {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

    .guarantee-badge i {
        font-size: 30px;
        color: var(--primary);
        margin-bottom: 10px;
    }

/* ============================================ */
/* URDU LANGUAGE SPECIFIC STYLES - RTL SUPPORT */
/* FOR PRICING PAGE */
/* ============================================ */

/* Urdu Font Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;500;600;700&display=swap');

/* Main Urdu Container */
#lang-ur {
    font-family: 'Noto Nastaliq Urdu', 'Inter', sans-serif;
    direction: rtl;
    text-align: right;
}

    /* ===== NAVIGATION RTL ===== */
    #lang-ur .nav-links {
        flex-direction: row-reverse;
    }

    #lang-ur .nav-container {
        direction: rtl;
    }

    #lang-ur .logo {
        direction: ltr;
        display: inline-block;
    }

    /* ===== LANGUAGE DROPDOWN RTL ===== */
    #lang-ur .language-dropdown {
        direction: ltr;
    }

    #lang-ur .dropdown-content {
        right: auto;
        left: 0;
    }

    /* ===== PAGE HERO SECTION RTL ===== */
    #lang-ur .page-hero {
        direction: rtl;
    }

        #lang-ur .page-hero h1,
        #lang-ur .page-hero p {
            text-align: center;
        }

    /* ===== BILLING TOGGLE RTL ===== */
    #lang-ur .billing-toggle {
        direction: rtl;
    }

    #lang-ur .toggle-switch {
        direction: ltr;
    }

    #lang-ur .save-badge {
        margin-left: 0;
        margin-right: 10px;
    }

    /* ===== PRICING SECTION RTL ===== */
    #lang-ur .pricing-section {
        direction: rtl;
    }

    #lang-ur .pricing-grid {
        direction: rtl;
    }

    /* ===== PRICING CARDS RTL ===== */
    #lang-ur .pricing-card {
        text-align: right;
    }

    /* Popular badge positioning for RTL */
    #lang-ur .popular-badge {
        right: auto;
        left: -30px;
        transform: rotate(-45deg);
    }

    /* ===== CARD HEADER RTL ===== */
    #lang-ur .card-header {
        text-align: center;
    }

    #lang-ur .plan-name {
        text-align: center;
    }

    /* Keep prices LTR (left-to-right) */
    #lang-ur .price {
        direction: ltr;
        display: inline-block;
    }

    #lang-ur .price-period {
        text-align: center;
    }

    /* ===== CARD BODY RTL ===== */
    #lang-ur .card-body {
        text-align: right;
    }

    /* Features list - move check icons to right side */
    #lang-ur .features-list li {
        justify-content: flex-start;
        flex-direction: row;
    }

    #lang-ur .features-list i {
        margin-right: 0;
        margin-left: 12px;
    }

    #lang-ur .features-list .disabled {
        justify-content: flex-start;
    }

    /* ===== BUTTONS RTL ===== */
    #lang-ur .btn-plan {
        text-align: center;
    }

        #lang-ur .btn-plan i {
            margin-left: 0;
            margin-right: 8px;
        }

    /* ===== COMPARISON TABLE RTL ===== */
    #lang-ur .comparison-section {
        direction: rtl;
    }

    #lang-ur .section-title,
    #lang-ur .section-subtitle {
        text-align: center;
    }

    #lang-ur .comparison-table {
        direction: rtl;
    }

    #lang-ur table {
        direction: rtl;
    }

    #lang-ur th,
    #lang-ur td {
        text-align: right;
    }

        /* Keep checkmarks and close icons in center */
        #lang-ur td .check,
        #lang-ur td .close {
            display: inline-block;
        }

    /* ===== FAQ SECTION RTL ===== */
    #lang-ur .faq-section {
        direction: rtl;
    }

    #lang-ur .faq-grid {
        direction: rtl;
    }

    #lang-ur .faq-item {
        direction: rtl;
    }

    #lang-ur .faq-question {
        text-align: right;
        justify-content: space-between;
        flex-direction: row;
    }

        #lang-ur .faq-question i {
            transform: rotate(0deg);
        }

    #lang-ur .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    #lang-ur .faq-answer {
        text-align: right;
    }

    /* ===== TRUST SECTION RTL ===== */
    #lang-ur .trust-section {
        direction: rtl;
    }

    #lang-ur .trust-grid {
        direction: rtl;
    }

    #lang-ur .trust-item {
        text-align: center;
    }

    /* ===== CTA SECTION RTL ===== */
    #lang-ur .cta {
        direction: rtl;
        text-align: center;
    }

        #lang-ur .cta h2,
        #lang-ur .cta p {
            text-align: center;
        }

    /* ===== GUARANTEE BADGE RTL ===== */
    #lang-ur .guarantee-badge {
        direction: rtl;
        text-align: center;
    }

    /* ===== FOOTER RTL ===== */
    #lang-ur .footer {
        direction: rtl;
    }

    #lang-ur .footer-grid {
        direction: rtl;
    }

    #lang-ur .footer-col {
        text-align: right;
    }

    #lang-ur .footer-bottom {
        text-align: center;
    }

    /* ===== BUTTON ICONS RTL ===== */
    #lang-ur .btn-primary i,
    #lang-ur .btn-outline i {
        margin-left: 0;
        margin-right: 8px;
    }

    /* ===== KEEP NUMBERS, PRICES, EMAILS LTR ===== */
    #lang-ur .price,
    #lang-ur .stat-number,
    #lang-ur .footer-col a[href^="mailto:"],
    #lang-ur .footer-col a[href^="tel:"] {
        direction: ltr;
        display: inline-block;
    }

/* ===== MOBILE RESPONSIVE RTL ===== */
@media (max-width: 768px) {
    #lang-ur .nav-links {
        flex-direction: column;
        text-align: center;
    }

    #lang-ur .dropdown-content {
        left: 50%;
        right: auto;
        transform: translateX(50%);
    }

    #lang-ur .pricing-grid {
        direction: rtl;
    }

    #lang-ur .pricing-card.popular {
        transform: scale(1);
    }

    #lang-ur .popular-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(0deg);
        top: -12px;
    }

    #lang-ur .footer-grid {
        direction: rtl;
    }

    #lang-ur .footer-col {
        text-align: center;
    }

    #lang-ur th,
    #lang-ur td {
        padding: 12px;
        font-size: 14px;
    }

    #lang-ur .faq-question {
        font-size: 16px;
        padding: 18px;
    }
}

/* ===== FIX TOGGLE SWITCH FOR RTL ===== */
#lang-ur .toggle-option:first-child {
    border-radius: 50px 0 0 50px;
}

#lang-ur .toggle-option:last-child {
    border-radius: 0 50px 50px 0;
}

/* ===== FIX PRICING CARD HOVER EFFECT ===== */
#lang-ur .pricing-card:hover {
    transform: translateY(-10px);
}

#lang-ur .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* ===== FIX COMPARISON TABLE RESPONSIVE ===== */
@media (max-width: 768px) {
    #lang-ur .comparison-table {
        overflow-x: auto;
        direction: ltr;
    }

    #lang-ur table {
        direction: ltr;
    }

    #lang-ur th,
    #lang-ur td {
        text-align: center;
    }
}

/* ===== FIX FAQ ICON TRANSITION ===== */
#lang-ur .faq-question i {
    transition: transform 0.3s ease;
}

/* ===== FIX BUTTON PLAN HOVER ===== */
#lang-ur .btn-plan-primary:hover,
#lang-ur .btn-plan-outline:hover {
    transform: translateY(-2px);
}

/* ===== FIX POPULAR BADGE TEXT ===== */
#lang-ur .popular-badge {
    white-space: nowrap;
}

/* ===== FIX PRICE SPAN ALIGNMENT ===== */
#lang-ur .price span {
    direction: ltr;
    display: inline-block;
}

/* ===== FIX FEATURES LIST ALIGNMENT ===== */
#lang-ur .features-list li span {
    flex: 1;
}

/* ===== FIX SCROLLBAR FOR RTL (Optional) ===== */
#lang-ur ::-webkit-scrollbar {
    width: 10px;
}

#lang-ur ::-webkit-scrollbar-track {
    background: var(--light);
}

#lang-ur ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* ===== FIX DROPDOWN CONTENT POSITION ===== */
#lang-ur .dropdown-content {
    text-align: right;
}

    #lang-ur .dropdown-content a {
        justify-content: flex-start;
    }

/* ===== FIX LANGUAGE BUTTON DROPDOWN ARROW ===== */
#lang-ur .language-btn .fa-chevron-down {
    transform: rotate(0deg);
}

/* ===== ENSURE PROPER WORD WRAPPING ===== */
#lang-ur .plan-name,
#lang-ur .price,
#lang-ur .features-list li,
#lang-ur .faq-question,
#lang-ur .faq-answer,
#lang-ur .guarantee-badge p,
#lang-ur .footer-col a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== FIX COMPARISON TABLE HEADER ALIGNMENT ===== */
#lang-ur th {
    text-align: center;
}

#lang-ur td {
    text-align: center;
}

    /* ===== FIX TABLE FIRST COLUMN ALIGNMENT ===== */
    #lang-ur td:first-child,
    #lang-ur th:first-child {
        text-align: right;
    }

@media (max-width: 768px) {
    #lang-ur td:first-child,
    #lang-ur th:first-child {
        text-align: center;
    }
}