/* ========================================
   Landing Page Styles - Cairo Font
   Bootstrap 5.3 + Custom Styles
   ======================================== */

/* Import Cairo Font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* Root Variables */
:root {
    --primary-color: #0F766E;
    --primary-light: #14B8A6;
    --primary-dark: #0D5F58;
    --secondary-color: #14B8A6;
    --accent-color: #F59E0B;
    --background: #F8FAFC;
    --dark-sidebar: #0F172A;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(15, 118, 110, 0.3);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    direction: rtl;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   Navbar Styles
   ======================================== */

.landing-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.landing-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 0;
    flex-shrink: 0;
}

.navbar-brand svg {
    width: 50px;
    height: 50px;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(15, 118, 110, 0.1);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ========================================
   Hero Section Styles
   ======================================== */

.hero-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2F1 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    min-width: 0;
    flex: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero-secondary {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-illustration {
    position: relative;
}

.hero-svg {
    width: 100%;
    max-width: 600px;
    animation: float 4s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   Features Section Styles
   ======================================== */

.features-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Card Themes for a Colorful, Premium Nursery Aesthetic */
.feature-card.theme-teal .feature-icon {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.15), rgba(20, 184, 166, 0.15));
}
.feature-card.theme-teal .feature-icon svg {
    color: #0F766E;
    fill: none;
}
.feature-card.theme-teal::before {
    background: linear-gradient(90deg, #0F766E, #14B8A6);
}

.feature-card.theme-coral .feature-icon {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15), rgba(251, 113, 133, 0.15));
}
.feature-card.theme-coral .feature-icon svg {
    color: #E11D48;
    fill: none;
}
.feature-card.theme-coral::before {
    background: linear-gradient(90deg, #E11D48, #FB7185);
}

.feature-card.theme-amber .feature-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(251, 191, 36, 0.15));
}
.feature-card.theme-amber .feature-icon svg {
    color: #D97706;
    fill: none;
}
.feature-card.theme-amber::before {
    background: linear-gradient(90deg, #D97706, #FBBF24);
}

.feature-card.theme-blue .feature-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(96, 165, 250, 0.15));
}
.feature-card.theme-blue .feature-icon svg {
    color: #2563EB;
    fill: none;
}
.feature-card.theme-blue::before {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

/* ========================================
   Statistics Section Styles
   ======================================== */

.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.statistics-section::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"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

.stat-card .stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.95;
    color: #ffffff !important;
}

/* ========================================
   Dashboard Preview Styles
   ======================================== */

.dashboard-section {
    padding: 100px 0;
    background: var(--background);
}

.dashboard-preview {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.dashboard-mockup {
    position: relative;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot-red {
    background: #EF4444;
}

.dashboard-dot-yellow {
    background: #F59E0B;
}

.dashboard-dot-green {
    background: #10B981;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    background: var(--dark-sidebar);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
}

.sidebar-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dashboard-card {
    background: var(--background);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.dashboard-card h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.dashboard-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ========================================
   Testimonials Section Styles
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    min-width: 350px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.testimonial-avatar svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 1rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

/* ========================================
   About Section Styles
   ======================================== */

.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    margin-bottom: 2rem;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.about-image {
    text-align: center;
}

.about-image svg {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

.vision-mission-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-mission-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vision-mission-card .icon-box svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.vision-mission-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.vision-mission-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Activities Section Styles
   ======================================== */

.activities-section {
    padding: 100px 0;
    background: var(--background);
}

.activity-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.activity-icon svg {
    width: 100%;
    height: 100%;
}

.activity-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Fees Section Styles
   ======================================== */

.fees-section {
    padding: 100px 0;
    background: white;
}

.fees-card {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), rgba(20, 184, 166, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.fees-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.fees-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.fees-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fees-body {
    margin-bottom: 2rem;
}

.fees-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.fees-item:last-child {
    border-bottom: none;
}

.fees-item.highlight {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.fees-label {
    font-weight: 600;
    color: var(--text-primary);
}

.fees-value {
    font-weight: 700;
    color: var(--primary-color);
}

.fees-footer {
    text-align: center;
}

.fees-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: right;
}

.fees-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fees-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.btn-fees {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-fees:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.payment-methods {
    background: var(--background);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.payment-methods h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.payment-item svg {
    width: 80px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.payment-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   Contact Section Styles
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: var(--background);
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.1);
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   Pricing Section Styles
   ======================================== */

.pricing-section {
    padding: 100px 0;
    background: var(--background);
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), rgba(20, 184, 166, 0.05));
}

.pricing-card.featured::before {
    content: 'الأكثر طلباً';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.btn-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   FAQ Section Styles
   ======================================== */

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--background);
    border: none;
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--text-primary);
    line-height: 1.8;
}

/* ========================================
   Footer Styles
   ======================================== */

.landing-footer {
    background: var(--dark-sidebar);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    min-width: 0;
}

.footer-brand svg {
    width: 50px;
    height: 50px;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* App Store Buttons */
.footer-app-stores {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-store-btn svg {
    display: block;
}

/* ========================================
   Animations
   ======================================== */

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(15, 118, 110, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(15, 118, 110, 0.6);
    }
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand svg {
        width: 40px;
        height: 40px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

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

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

    .testimonials-track {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .fees-card {
        padding: 2rem 1.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .landing-footer {
        padding: 2rem 0 1rem;
    }

    .footer-top {
        margin-bottom: 1rem;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand svg {
        width: 40px;
        height: 40px;
    }

    .footer-brand-text {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        font-size: 0.875rem;
    }

    .footer-app-stores {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-store-btn svg {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-track {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dashboard-main {
        grid-template-columns: 1fr;
    }

    .activities-section .activity-card {
        padding: 1.5rem;
    }

    .landing-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-top {
        margin-bottom: 1.5rem;
    }

    .footer-brand-text {
        font-size: 1.25rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-app-stores {
        gap: 0.5rem;
    }

    .app-store-btn svg {
        width: 110px;
        height: auto;
    }
}

/* Tablet (≤992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dashboard-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-footer {
        padding: 3rem 0 2rem;
    }

    .footer-top {
        margin-bottom: 2rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.glow-effect {
    box-shadow: var(--shadow-glow);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
