/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8c42;
    --secondary-color: #6b7280;
    --accent-color: #ffa366;
    --text-color: #374151;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-color: #d1d5db;
    --grey-dark: #4b5563;
    --grey-medium: #9ca3af;
    --light-orange: #ffb88c;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--grey-dark);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 70px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0 80px;
    background: var(--bg-white);
    margin-top: 70px;
}

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

.welcome-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.welcome-intro {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.welcome-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-numbers {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.contact-numbers h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    color: var(--bg-white);
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.phone-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bg-white);
    background: var(--bg-light);
}

.phone-link i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.phone-link span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.additional-contact-link {
    margin-top: 1.5rem;
    text-align: center;
}

.additional-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.additional-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.additional-contact-btn i {
    font-size: 1.1rem;
}

/* AIOU Section */
.aiou-section {
    padding: 100px 0 80px;
    background: var(--bg-white);
    margin-top: 70px;
}

.aiou-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.pp-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.urdu-text {
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Nafees Web Naskh', 'Al Qalam Taj Nastaleeq', 'Jameel Noori Nastaleeq Kasheeda', 'Nafees', serif;
    font-size: 1.5rem;
    line-height: 2;
    direction: rtl;
    text-align: right;
    color: var(--text-color);
}

.aiou-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.aiou-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    direction: rtl;
}

.aiou-item:last-of-type {
    margin-bottom: 1.5rem;
}

.aiou-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aiou-item .urdu-text {
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    padding: 0;
    display: inline-block;
}

.aiou-text-with-logo {
    display: inline;
    white-space: nowrap;
    line-height: 1.5;
}

.pp-logo-small {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.pp-logo-inline {
    display: inline-block;
    width: 80px;
    height: auto;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    margin-left: 0.15rem;
}

.aiou-cta {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    direction: rtl;
}

/* Pricing Table */
.pricing-table-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.pricing-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    direction: rtl;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    direction: rtl;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.pricing-table th {
    padding: 1.2rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table th.urdu-text {
    font-size: 1.3rem;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Nafees Web Naskh', 'Al Qalam Taj Nastaleeq', serif;
}

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.pricing-table td.urdu-text {
    font-size: 1.2rem;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Nafees Web Naskh', 'Al Qalam Taj Nastaleeq', serif;
}

.pricing-green-text {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.pricing-green-text div {
    margin-bottom: 0.3rem;
}

.pricing-green-text div:last-child {
    margin-bottom: 0;
}

/* Assignment Submission Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.schedule-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    direction: rtl;
}

.schedule-table-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    direction: rtl;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.schedule-table th {
    padding: 1.2rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-table th.urdu-text {
    font-size: 1.3rem;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Nafees Web Naskh', 'Al Qalam Taj Nastaleeq', serif;
}

.schedule-table tbody tr {
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background: var(--bg-light);
}

.schedule-table tbody tr:nth-child(even) {
    background: rgba(243, 244, 246, 0.5);
}

.schedule-table tbody tr:nth-child(even):hover {
    background: var(--bg-light);
}

.schedule-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.schedule-table td.urdu-text {
    font-size: 1.2rem;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Nafees Web Naskh', 'Al Qalam Taj Nastaleeq', serif;
}

/* Schedule Phone Numbers Section */
.schedule-phone-numbers {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.schedule-phone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.schedule-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.schedule-phone-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
    border-color: var(--bg-white);
}

.schedule-phone-link i {
    font-size: 1rem;
    color: var(--primary-color);
}

.schedule-phone-link span {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-section > .container > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.feature-category {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.feature-category:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-category h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature-category h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.program-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    color: var(--bg-white);
    text-align: center;
}

.get-started-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.get-started-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.get-started-cta {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.disclaimer-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.disclaimer-box h3 i {
    color: var(--primary-color);
}

.disclaimer-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.disclaimer-box p strong {
    color: var(--text-color);
    font-weight: 600;
}

.tagline {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.tagline strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Quick Action Buttons */
.quick-actions {
    padding: 40px 0;
    background: var(--bg-white);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--grey-dark);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.action-btn:hover {
    background: var(--grey-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.action-btn i {
    font-size: 1.2rem;
}

/* Facebook Section */
.facebook-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.facebook-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.facebook-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.facebook-text {
    text-align: center;
}

.facebook-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.facebook-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-facebook {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-facebook:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Assignments Section */
.assignments-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

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

.program-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-btn.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Guess Papers Section */
.guess-papers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    color: var(--bg-white);
}

.guess-papers-section .section-main-title {
    color: var(--bg-white);
}

.guess-papers-content {
    text-align: center;
}

.guess-papers-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.guess-papers-content .download-btn {
    background: var(--bg-white);
    color: var(--grey-dark);
}

.guess-papers-content .download-btn:hover {
    background: var(--bg-light);
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.order-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.order-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.order-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.order-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.order-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.order-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--grey-dark);
    color: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.dates-content {
    text-align: center;
}

.dates-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.dates-info {
    display: flex;
    justify-content: center;
}

.date-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

.date-card h3 {
    font-size: 1.8rem;
    color: var(--grey-dark);
    margin-bottom: 1rem;
}

.date-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Tutor Section */
.tutor-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.tutor-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.search-box input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-color);
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-btn {
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--accent-color);
}

.search-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--bg-white);
    padding: 40px 0 20px;
}

.footer-phone-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.footer-phone-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-phone-link i {
    font-size: 1.2rem;
}

.footer-phone-link span {
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-main-title {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .action-btn {
        justify-content: center;
    }

    .facebook-content {
        flex-direction: column;
        text-align: center;
    }

    .programs-grid,
    .order-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-phone-numbers {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-phone-link {
        width: 100%;
        justify-content: center;
    }

    .welcome-section {
        padding: 80px 0 60px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .welcome-intro {
        font-size: 1.1rem;
    }

    .welcome-description {
        font-size: 1rem;
    }

    .contact-numbers {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .contact-numbers h3 {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .phone-numbers {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-link {
        padding: 14px 24px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .why-choose-section > .container > h2,
    .testimonials-section h2,
    .get-started-section h2 {
        font-size: 2rem;
    }

    .feature-category {
        padding: 2rem 1.5rem;
    }

    .feature-category h3 {
        font-size: 1.3rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .disclaimer-box {
        padding: 2rem 1.5rem;
    }

    .schedule-title {
        font-size: 1.8rem;
    }

    .schedule-table-container {
        padding: 1.5rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.95rem;
    }

    .schedule-table th.urdu-text,
    .schedule-table td.urdu-text {
        font-size: 1rem;
    }

    .schedule-phone-numbers {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .schedule-phone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .schedule-phone-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .schedule-phone-link i {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-main-title {
        font-size: 1.75rem;
    }

    .program-card,
    .order-card {
        padding: 1.5rem;
    }

    .welcome-section h1 {
        font-size: 1.75rem;
    }

    .contact-numbers h3 {
        font-size: 1.3rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .phone-link {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .why-choose-section > .container > h2,
    .testimonials-section h2,
    .get-started-section h2 {
        font-size: 1.75rem;
    }

    .feature-category {
        padding: 1.5rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .urdu-text {
        font-size: 1.2rem;
    }

    .aiou-item .urdu-text {
        font-size: 1.1rem;
    }

    .aiou-cta {
        font-size: 1.2rem;
    }

    .pp-logo-small {
        width: 60px;
    }

    .pp-logo-inline {
        width: 60px;
        margin-left: 0.1rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.95rem;
    }

    .pricing-table th.urdu-text,
    .pricing-table td.urdu-text {
        font-size: 1rem;
    }

    .pp-logo {
        max-width: 150px;
    }

    .aiou-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .urdu-text {
        font-size: 1.1rem;
    }

    .aiou-item .urdu-text {
        font-size: 1rem;
    }

    .aiou-cta {
        font-size: 1.1rem;
    }

    .pp-logo-small {
        width: 50px;
    }

    .pp-logo-inline {
        width: 50px;
        margin-left: 0.08rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .pricing-table th.urdu-text,
    .pricing-table td.urdu-text {
        font-size: 0.9rem;
    }

    .pp-logo {
        max-width: 120px;
    }

    .aiou-info {
        padding: 1.2rem;
    }

    .aiou-item {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .aiou-arrow {
        align-self: flex-start;
    }

    .schedule-title {
        font-size: 1.5rem;
    }

    .schedule-table-container {
        padding: 1.2rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .schedule-table th.urdu-text,
    .schedule-table td.urdu-text {
        font-size: 0.9rem;
    }

    .schedule-phone-numbers {
        padding: 0.9rem;
        margin-top: 1.2rem;
    }

    .schedule-phone-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .schedule-phone-link {
        padding: 9px 12px;
        font-size: 0.85rem;
    }

    .schedule-phone-link i {
        font-size: 0.9rem;
    }
}
