/* Phoenix IT & Marketing - Main CSS */
/* التنسيقات الأساسية لموقع العنقاء */

/* CSS Variables */
:root {
    --primary-color: #00A887; /* Pantone Green C */
    --secondary-color: #99E6D8; /* Pantone Green 0921 C */
    --accent-color: #00A887;
    --text-color: #1e293b;
    --text-light: #64748b;
    --background-color: #ffffff;
    --background-light: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    --font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    padding-top: 100px; /* مسافة إضافية تحت الـ header */
}

/* إزالة padding-top من صفحات المصادقة وإخفاء الـ header */
.auth-container {
    padding-top: 0 !important;
}

/* إخفاء الـ header فقط في صفحات المصادقة */
body:has(.auth-container) .header {
    display: none !important;
}

/* إظهار الفوتير في صفحات المصادقة */
body:has(.auth-container) .footer {
    display: block !important;
}

body:has(.auth-container) {
    padding-top: 0 !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.2;
}

.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

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

.header-actions {
    display: flex; /* إظهار أزرار الدخول في الـ header العادي */
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

/* إخفاء أزرار الدخول المحمولة في الشاشة العادية */
.mobile-login-buttons {
    display: none;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

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

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.1);
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.hero-quote {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1.5rem auto;
    font-style: italic;
    position: relative;
    padding: 1rem 2rem;
}

.hero-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    right: 0;
    opacity: 0.3;
}

.hero-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    bottom: -30px;
    left: 0;
    opacity: 0.3;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-feature {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hero-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    color: var(--success-color);
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    background: var(--background-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.stat-item:hover::after {
    width: 100px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.about-card {
    background: var(--background-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    overflow: hidden;
}

.about-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.about-icon:hover::before {
    left: 100%;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--background-light);
}

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

/* Service Cards */
.service-card {
    background: var(--background-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-icon:hover::before {
    left: 100%;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-right: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

/* Process Section */
.process-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.process-step h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    background: var(--background-color);
    padding: 80px 0;
}

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

.project-card {
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-category {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.project-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

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

/* Team Section */
.team-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.team-card {
    background: var(--background-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: var(--transition);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--text-light);
    line-height: 1.6;
}

.team-description {
    margin-top: 3rem;
    text-align: center;
}

.team-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--text-color);
}

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

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

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-position {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 135, 0.3);
}

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

.btn-secondary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

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

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    clear: both;
}

/* Ensure no white background appears under footer */
body {
    background: var(--background-color);
}

main {
    background: var(--background-color);
}

/* Fix any potential white space issues */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-color);
    z-index: -1;
}

.footer-top {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.footer-link {
    color: #64748b;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-desc {
    color: #64748b;
    max-width: 400px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #64748b;
}

.footer-copyright,
.footer-credit-link {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-credit-link {
    color: var(--primary-color);
}

.footer-credit-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-credit-link a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-right: 1.5rem;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* About Content */
.about-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-content h3 i {
    color: var(--primary-color);
}

.about-highlight {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    border-right: 4px solid var(--primary-color);
}

.about-highlight i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-highlight p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .header-logo {
        order: 1;
    }
    
    .header-nav {
        order: 3;
        position: fixed;
        top: 72px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--background-color);
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-login-buttons {
        display: flex !important; /* إظهار أزرار الدخول المحمولة في الشاشات الصغيرة فقط */
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 2rem 3rem 2rem;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .mobile-login-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
    }
    
    .header-actions {
        display: none; /* إخفاء أزرار الدخول في الـ header العادي */
        order: 2;
    }
    
    .mobile-toggle {
        display: flex;
        order: 3;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-quote::before,
    .hero-quote::after {
        font-size: 2rem;
    }
    
    .brand-desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-quote {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .hero-quote::before,
    .hero-quote::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .project-card,
    .team-card {
        margin: 0 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .header-actions .btn {
        display: none; /* إخفاء أزرار الدخول في الـ header العادي */
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Card Hover Effects */
.service-card,
.project-card,
.team-card,
.testimonial-card {
    transition: all 0.3s ease;
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Stats */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item::after {
    transition: all 0.3s ease;
}

.stat-item:hover::after {
    width: 100px;
}

/* Enhanced Service Icons */
.service-icon {
    transition: all 0.3s ease;
}

.service-icon::before {
    transition: left 0.5s;
}

.service-icon:hover::before {
    left: 100%;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} /* Phoenix IT & Marketing - RTL Styles */
/* تنسيقات خاصة باللغة العربية */

/* Base RTL Direction */
body {
    direction: rtl;
    text-align: right;
}

/* Typography RTL */
h1, h2, h3, h4, h5, h6 {
    text-align: right;
}

/* Navigation RTL */
/* تم إلغاء row-reverse من .nav-menu حتى لا تعكس ترتيب القوائم في الهيدر */
/* .nav-menu {
    flex-direction: row-reverse;
} */

.nav-link {
    flex-direction: row-reverse;
}

.dropdown-icon {
    transform: rotate(180deg);
}

.dropdown.active .dropdown-icon {
    transform: rotate(0deg);
}

/* Dropdown Menu RTL */
.dropdown-menu {
    right: auto;
    left: 0;
}

/* Service Features RTL */
.service-features li {
    padding-right: 0;
    padding-left: 1.5rem;
}

.service-features li::before {
    right: auto;
    left: 0;
}

/* Hero Features RTL */
.hero-feature {
    flex-direction: row-reverse;
}

/* Hero Actions RTL */
.hero-actions {
    flex-direction: row-reverse;
}

/* Service Link RTL */
.service-link {
    flex-direction: row-reverse;
}

/* Footer Links RTL */
.footer-links {
    text-align: right;
}

/* Contact Info RTL */
.contact-item {
    flex-direction: row-reverse;
}

.contact-icon {
    margin-left: 0.75rem;
    margin-right: 0;
}

/* Language Switcher RTL */
.language-switcher {
    left: 1rem;
    right: auto;
}

.lang-btn {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Back to Top Button RTL */
.back-to-top {
    left: 2rem;
    right: auto;
}

/* Mobile Menu RTL */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    
    .hero-feature {
        flex-direction: row-reverse;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .service-link {
        flex-direction: row-reverse;
    }
}

/* Form Elements RTL */
input, textarea, select {
    text-align: right;
}

/* Button Icons RTL */
.btn {
    flex-direction: row-reverse;
}

/* Dropdown Arrow RTL */
.dropdown .nav-link::after {
    content: '\f053'; /* FontAwesome left arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    margin-left: 0;
}

/* Service Card Icons RTL */
.service-icon {
    margin-left: 0;
    margin-right: 0;
}

/* Footer Logo RTL */
.footer-logo {
    flex-direction: row-reverse;
}

/* Social Links RTL */
.social-links {
    flex-direction: row-reverse;
}

/* Stats Grid RTL */
.stats-grid {
    direction: rtl;
}

/* About Grid RTL */
.about-grid {
    direction: rtl;
}

/* Services Grid RTL */
.services-grid {
    direction: rtl;
}

/* Footer Grid RTL */
.footer-grid {
    direction: rtl;
}

/* Utility Classes RTL */
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Margin and Padding RTL Adjustments */
.mr-auto { margin-right: auto; margin-left: 0; }
.ml-auto { margin-left: auto; margin-right: 0; }

.pr-0 { padding-right: 0; }
.pl-0 { padding-left: 0; }

/* Flex Direction RTL */
.flex-row-reverse { flex-direction: row-reverse; }
.flex-row { flex-direction: row; }

/* Justify Content RTL */
.justify-start { justify-content: flex-end; }
.justify-end { justify-content: flex-start; }

/* Align Items RTL */
.items-start { align-items: flex-end; }
.items-end { align-items: flex-start; }

/* Border RTL */
.border-r { border-right: none; border-left: 1px solid; }
.border-l { border-left: none; border-right: 1px solid; }

/* Shadow RTL */
.shadow-r { box-shadow: 2px 0 4px rgba(0,0,0,0.1); }
.shadow-l { box-shadow: -2px 0 4px rgba(0,0,0,0.1); }

/* Transform RTL */
.translate-x-r { transform: translateX(1rem); }
.translate-x-l { transform: translateX(-1rem); }

/* Animation RTL */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

/* Print Styles RTL */
@media print {
    body {
        direction: rtl;
        text-align: right;
    }
    
    .container {
        direction: rtl;
    }
    
    .nav-menu {
        flex-direction: row-reverse;
    }
} 

/* ===== ENHANCED FOOTER STYLES ===== */
.footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-brand-desc {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.footer-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-whatsapp {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border: 1px solid #25D366;
    border-radius: 25px;
}

.whatsapp-link:hover {
    color: white;
    background: #25D366;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--primary-color);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-section a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    text-align: right;
    flex-direction: row-reverse; /* عكس الترتيب للأيقونة على اليمين */
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-right: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-2px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    order: 2; /* الأيقونة في النهاية (اليمين) */
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    order: 1; /* النص في البداية (اليسار) */
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #e0e0e0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* تحسينات إضافية لقسم معلومات الاتصال */
.footer-section:first-child h4 {
    color: var(--primary-color);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-section:first-child h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #fff);
    border-radius: 2px;
}

/* تحسين المسافات في قسم معلومات الاتصال */
.footer-section:first-child .contact-info {
    padding-top: 0.5rem;
}

/* تحسين عرض العناوين الطويلة */
.contact-value {
    word-break: break-word;
    hyphens: auto;
}

/* تحسين خاص للعناوين متعددة الأسطر */
.contact-item:has(.contact-value) {
    min-height: 60px;
    align-items: center;
}

/* تحسين قسم المشاريع */
.projects-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.project-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.projects-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
}

.projects-actions p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* تحسين الأيقونات */
.contact-item i.fa-map-marker-alt {
    color: #ff6b6b;
}

.contact-item i.fa-phone {
    color: #4ecdc4;
}

.contact-item i.fa-envelope {
    color: #45b7d1;
}

.contact-item i.fa-clock {
    color: #f9ca24;
}

/* ======================================== */
/* Phoenix IT & Marketing - RTL Styles */
/* تنسيقات خاصة باللغة العربية */
/* ======================================== */

/* Base RTL Direction */
body {
    direction: rtl;
    text-align: right;
}

/* Typography RTL */
h1, h2, h3, h4, h5, h6 {
    text-align: right;
}

/* Navigation RTL */
.nav-link {
    flex-direction: row-reverse;
}

.dropdown-icon {
    transform: rotate(180deg);
}

.dropdown.active .dropdown-icon {
    transform: rotate(0deg);
}

/* Dropdown Menu RTL */
.dropdown-menu {
    right: auto;
    left: 0;
}

/* Service Features RTL */
.service-features li {
    padding-right: 0;
    padding-left: 1.5rem;
}

.service-features li::before {
    right: auto;
    left: 0;
}

/* Hero Features RTL */
.hero-feature {
    flex-direction: row-reverse;
}

/* Hero Actions RTL */
.hero-actions {
    flex-direction: row-reverse;
}

/* Service Link RTL */
.service-link {
    flex-direction: row-reverse;
}

/* Footer Links RTL */
.footer-links {
    text-align: right;
}

/* Contact Info RTL */
.contact-item {
    flex-direction: row-reverse;
}

.contact-icon {
    margin-left: 0.75rem;
    margin-right: 0;
}

/* Language Switcher RTL */
.language-switcher {
    left: 1rem;
    right: auto;
}

.lang-btn {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Back to Top Button RTL */
.back-to-top {
    left: 2rem;
    right: auto;
}

/* Mobile Menu RTL */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    
    .hero-feature {
        flex-direction: row-reverse;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .service-link {
        flex-direction: row-reverse;
    }
}

/* Form Elements RTL */
input, textarea, select {
    text-align: right;
}

/* Button Icons RTL */
.btn {
    flex-direction: row-reverse;
}

/* Dropdown Arrow RTL */
.dropdown .nav-link::after {
    content: '\f053'; /* FontAwesome left arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    margin-left: 0;
}

/* Service Card Icons RTL */
.service-icon {
    margin-left: 0;
    margin-right: 0;
}

/* Footer Logo RTL */
.footer-logo {
    flex-direction: row-reverse;
}

/* Social Links RTL */
.social-links {
    flex-direction: row-reverse;
}

/* Stats Grid RTL */
.stats-grid {
    direction: rtl;
}

/* About Grid RTL */
.about-grid {
    direction: rtl;
}

/* Services Grid RTL */
.services-grid {
    direction: rtl;
}

/* Footer Grid RTL */
.footer-grid {
    direction: rtl;
}

/* Utility Classes RTL */
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Margin and Padding RTL Adjustments */
.mr-auto { margin-right: auto; margin-left: 0; }
.ml-auto { margin-left: auto; margin-right: 0; }

.pr-0 { padding-right: 0; }
.pl-0 { padding-left: 0; }

/* Flex Direction RTL */
.flex-row-reverse { flex-direction: row-reverse; }
.flex-row { flex-direction: row; }

/* Justify Content RTL */
.justify-start { justify-content: flex-end; }
.justify-end { justify-content: flex-start; }

/* Align Items RTL */
.items-start { align-items: flex-end; }
.items-end { align-items: flex-start; }

/* Border RTL */
.border-r { border-right: none; border-left: 1px solid; }
.border-l { border-left: none; border-right: 1px solid; }

/* Shadow RTL */
.shadow-r { box-shadow: 2px 0 4px rgba(0,0,0,0.1); }
.shadow-l { box-shadow: -2px 0 4px rgba(0,0,0,0.1); }

/* Transform RTL */
.translate-x-r { transform: translateX(1rem); }
.translate-x-l { transform: translateX(-1rem); }

/* Animation RTL */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

/* Print Styles RTL */
@media print {
    body {
        direction: rtl;
        text-align: right;
    }
    
    .container {
        direction: rtl;
    }
    
    .nav-menu {
        flex-direction: row-reverse;
    }
}

/* تحسين باقي أقسام الفوتير بنفس تنسيق معلومات الاتصال */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-right: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    flex-direction: row-reverse; /* أيقونة على اليمين */
}

.footer-section ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-2px);
    color: #fff;
}

/* أيقونات للروابط */
.footer-section ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    order: 2; /* الأيقونة على اليمين */
}

/* تحسين العناوين لجميع الأقسام */
.footer-section h4 {
    color: var(--primary-color);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    border-radius: 2px;
}

/* ألوان مختلفة لكل قسم */
.footer-section:nth-child(2) h4::after { /* الخدمات */
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.footer-section:nth-child(3) h4::after { /* الشركة */
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.footer-section:nth-child(4) h4::after { /* الدعم */
    background: linear-gradient(90deg, #f9ca24, #f0932b);
}

/* تحسين خاص للروابط المهمة */
.footer-section ul li a[href*="contact"],
.footer-section ul li a[href*="support"],
.footer-section ul li a[href*="agent-join"] {
    border-right-color: #ff6b6b;
}

.footer-section ul li a[href*="contact"]::before,
.footer-section ul li a[href*="support"]::before,
.footer-section ul li a[href*="agent-join"]::before {
    background: #ff6b6b;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.contact-value {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

.contact-value a {
    color: #64748b;
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright p,
.footer-credits p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-credits a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-credits a:hover {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand-text {
        text-align: center;
    }
    
    .footer-whatsapp {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-brand-name {
        font-size: 1.25rem;
    }
    
    .footer-brand-desc {
        font-size: 0.9rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
}

/* Exchange Rates in Footer */
.exchange-rates {
    margin-bottom: 1rem;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.currency {
    font-weight: 600;
    color: #00A887;
    font-size: 0.9rem;
    min-width: 40px;
}

.rate {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.currency-name {
    color: #cccccc;
    font-size: 0.8rem;
    text-align: left;
    flex: 1;
    margin-left: 0.5rem;
}

.rate-update {
    text-align: center;
    margin: 1rem 0;
    color: #888;
}

.converter-link {
    text-align: center;
    margin-top: 1rem;
}

.converter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.converter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    background: linear-gradient(135deg, #008A6B 0%, #7DD3C0 100%);
}

/* Responsive Exchange Rates */
@media (max-width: 768px) {
    .rate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .currency {
        min-width: auto;
    }
    
    .currency-name {
        margin-left: 0;
    }
}

/* Footer Currency Converter Button */
.footer-converter {
    margin-top: 1.5rem;
    text-align: center;
}

.converter-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    min-width: 160px;
}

.converter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4);
    background: linear-gradient(135deg, #008A6B 0%, #7DD3C0 100%);
    color: white;
    text-decoration: none;
}

.converter-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.converter-btn span {
    font-size: 1rem;
    font-weight: 700;
}

.converter-btn small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Footer Converter */
@media (max-width: 768px) {
    .footer-converter {
        margin-top: 1rem;
    }
    
    .converter-btn {
        padding: 0.8rem 1.2rem;
        min-width: 140px;
    }
    
    .converter-btn i {
        font-size: 1.3rem;
    }
    
    .converter-btn span {
        font-size: 0.9rem;
    }
    
    .converter-btn small {
        font-size: 0.7rem;
    }
}


/* ===== GENERAL LAYOUT IMPROVEMENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center all sections */
.hero,
.services-section,
.packages-section,
.about-section,
.team-section,
.testimonials-section,
.agents-section {
    text-align: center;
}

/* Improve section spacing */
section {
    padding: 80px 0;
}

/* Center grid items */
.services-grid,
.packages-grid,
.team-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

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

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

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

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

/* Center cards */
.service-card,
.package-card,
.team-card,
.testimonial-card {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

/* Improve client logos */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .packages-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .client-logos {
        gap: 1rem;
    }
    
    .client-logo {
        padding: 0.5rem;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}


/* ===== AGENTS SECTION STYLES ===== */
.agents-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.agents-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.agents-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.agents-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.agents-actions .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.agents-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.agents-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .agents-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .agents-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .agents-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .agents-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    right: 10px;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -20px;
    left: 10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-info {
    text-align: right;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-actions {
    text-align: center;
}

.testimonial-actions .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.testimonial-actions .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-info {
        text-align: center;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.team-card {
    background-color: var(--light-bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-light);
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-desc {
    color: var(--text-color-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-actions {
    text-align: center;
    margin-top: 2rem;
}

.team-actions p {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-actions .btn {
    margin: 0 0.75rem;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
    background-color: var(--light-bg-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.project-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 168, 135, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.project-desc {
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--light-bg-color);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.projects-actions {
    text-align: center;
    margin-top: 2rem;
}

.projects-actions p {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.projects-actions .btn {
    margin: 0 0.75rem;
}

/* Responsive Projects Section */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin: 0 1rem;
    }
    
    .project-content {
        padding: 1.25rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-actions .btn {
        flex: none;
        width: 100%;
    }
}

/* ======================================== */
/* Homepage Specific Styles */
/* تنسيقات خاصة بالصفحة الرئيسية */
/* ======================================== */

/* إصلاح قسم الإحصائيات والعملاء */
.stats-section {
    background: #f8f9fa !important;
    padding: 4rem 0 !important;
    color: #333 !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.stat-item {
    text-align: center !important;
    padding: 1.5rem !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #00A887 !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    font-size: 1.1rem !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* إصلاح صور العملاء */
.client-logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
    margin: 2rem 0 !important;
}

.client-logo {
    background: white !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.client-logo:hover {
    transform: translateY(-5px) !important;
}

.client-logo img {
    max-width: 120px !important;
    height: 60px !important;
    width: auto !important;
    filter: none !important;
    transition: filter 0.3s ease !important;
    opacity: 1 !important;
    object-fit: contain !important;
    display: block !important;
}

.client-logo:hover img {
    filter: none !important;
    opacity: 0.8 !important;
}

/* إصلاح قسم الشهادات */
.testimonials-preview {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.testimonial-item {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
}

.testimonial-content p {
    color: #333 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-style: italic !important;
}

.testimonial-author strong {
    color: #00A887 !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.testimonial-author span {
    color: #666 !important;
    font-size: 0.9rem !important;
}

.testimonial-actions {
    margin-top: 1rem !important;
    text-align: center !important;
}

.testimonial-actions .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.testimonial-actions .btn-outline {
    background: transparent !important;
    color: #00A887 !important;
    border: 2px solid #00A887 !important;
}

.testimonial-actions .btn-outline:hover {
    background: #00A887 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* تحسين المسافات في قسم الوكلاء */
.agents-section {
    padding: 4rem 0 !important;
    background: #f8f9fa !important;
}

.agents-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.agents-text h2 {
    font-size: 2.5rem !important;
    color: #00A887 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
}

.agents-text p {
    font-size: 1.2rem !important;
    color: #333 !important;
    line-height: 1.8 !important;
    margin-bottom: 2.5rem !important;
}

.agents-why {
    margin-bottom: 2.5rem !important;
}

.agents-why h3 {
    font-size: 1.5rem !important;
    color: #00A887 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600 !important;
}

.agents-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.agents-benefits li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 1.2rem !important;
    padding: 1rem !important;
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
    line-height: 1.8 !important;
    gap: 0.5rem !important;
}

.agents-benefits li:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.agents-benefits li i {
    color: #00A887 !important;
    font-size: 1.2rem !important;
    margin-left: 1rem !important;
    margin-top: 0.2rem !important;
    flex-shrink: 0 !important;
}

.agents-benefits li strong {
    color: #00A887 !important;
    font-weight: 600 !important;
    margin-bottom: 0.3rem !important;
    display: block !important;
}

.agents-benefits li {
    line-height: 1.8 !important;
}

.agents-benefits li strong {
    margin-left: 0.3rem !important;
}

.agents-actions {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.agents-actions .btn {
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.agents-actions .btn-primary {
    background: #00A887 !important;
    color: white !important;
    border: 2px solid #00A887 !important;
}

.agents-actions .btn-primary:hover {
    background: #008F73 !important;
    border-color: #008F73 !important;
    transform: translateY(-2px) !important;
}

.agents-actions .btn-outline {
    background: transparent !important;
    color: #00A887 !important;
    border: 2px solid #00A887 !important;
}

.agents-actions .btn-outline:hover {
    background: #00A887 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.agents-stats {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.agents-stats .stat-item {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    padding: 1rem !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

.agents-stats .stat-item:last-child {
    margin-bottom: 0 !important;
}

.agents-stats .stat-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #00A887 !important;
    margin-bottom: 0.5rem !important;
}

.agents-stats .stat-label {
    font-size: 1rem !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* Package Tabs Styles */
.packages-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.package-tab {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-tab:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.package-tab.active {
    background: var(--primary-color);
    color: white;
}

.packages-category {
    display: none;
}

.packages-category.active {
    display: block;
}

@media (max-width: 768px) {
    .agents-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .agents-text h2 {
        font-size: 2rem !important;
    }
    
    .agents-text p {
        font-size: 1.1rem !important;
    }
    
    .agents-actions {
        flex-direction: column !important;
    }
    
    .agents-actions .btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    .packages-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .package-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ======================================== */
/* Services Page Specific Styles */
/* تنسيقات خاصة بصفحة الخدمات */
/* ======================================== */

/* إصلاح النصوص البيضاء في قسم الخدمات المتخصصة */
.services-specialized {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.services-specialized .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .services-specialized .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-specialized {
        padding: 2rem 1rem;
    }
}

.services-subtitle {
    color: #00A887 !important;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.services-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00A887, #99E6D8);
    border-radius: 2px;
}

.service-item {
    background: white !important;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #00A887;
}

.service-icon-wrapper {
    background: linear-gradient(135deg, #00A887, #99E6D8) !important;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4);
}

.service-item-title {
    color: #1f2937 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-item-desc {
    color: #6b7280 !important;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.section-title {
    color: #00A887 !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00A887, #99E6D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 168, 135, 0.15);
    display: inline-block;
    max-width: 100%;
    position: relative;
    line-height: 1.2;
}

/* إصلاح النص في قسم CTA */
.cta-title {
    color: #00A887 !important;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-description {
    color: #333 !important;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ======================================== */
/* Projects Page Specific Styles */
/* تنسيقات خاصة بصفحة المشاريع */
/* ======================================== */

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

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

.projects-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.projects-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 1;
    line-height: 1.6;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 500;
}

.projects-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.project-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.projects-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.projects-section:nth-child(even) {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: #00A887 !important;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

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

.project-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #00A887;
}

.project-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #00A887;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 1rem;
    text-align: center;
}

.project-client {
    font-size: 1rem;
    color: #00A887 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.project-desc {
    font-size: 1rem;
    color: #6c757d !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-meta span {
    font-size: 0.9rem;
    color: #6c757d !important;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.project-link {
    display: inline-block;
    background: #00A887;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-link:hover {
    background: #008F73;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 135, 0.3);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* تحسين وضوح النصوص */
.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.section-subtitle {
    color: #666 !important;
    font-weight: 500;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-hero-title {
        font-size: 2rem;
    }
    
    .projects-hero-desc {
        font-size: 1rem;
    }
    
    .projects-stats {
        gap: 1.5rem;
    }
    
    .project-stat {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        padding: 2rem 1.5rem;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        padding: 3rem 0;
    }
    
    .projects-hero-title {
        font-size: 1.8rem;
    }
    
    .projects-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .project-stat {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .project-card {
        padding: 1.5rem 1rem;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-meta {
        gap: 0.3rem;
    }
    
    .project-meta span {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* ======================================== */
/* Contact Page Specific Styles */
/* تنسيقات خاصة بصفحة الاتصال */
/* ======================================== */

/* إصلاح النصوص البيضاء في نموذج الاتصال */
.contact-form-title {
    color: #00A887 !important;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.form-label {
    color: #333 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-input, .form-textarea {
    color: #333 !important;
    background-color: #fff !important;
    border: 2px solid #e9ecef !important;
}

.form-input:focus, .form-textarea:focus {
    border-color: #00A887 !important;
    box-shadow: 0 0 0 3px rgba(0, 168, 135, 0.1) !important;
}

.btn-primary {
    background: #00A887 !important;
    color: white !important;
    border: 2px solid #00A887 !important;
}

.btn-primary:hover {
    background: #038a73 !important;
    border-color: #038a73 !important;
}

/* إصلاح النصوص في قسم لماذا تختار العنقاء */
.values-list li {
    color: #333 !important;
    margin-bottom: 0.5rem;
}

.hero-content p {
    color: #666 !important;
}

/* ======================================== */
/* Packages Page Specific Styles */
/* تنسيقات خاصة بصفحة الباقات */
/* ======================================== */

/* Packages Page Styles */
.packages-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00A887 !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d !important;
    font-weight: 500;
}

.hero-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-note p {
    margin: 0;
    color: #6c757d !important;
    font-size: 1rem;
    line-height: 1.6;
}

.service-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.category-title {
    font-size: 2.2rem;
    color: #00A887 !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-subtitle {
    font-size: 1.1rem;
    color: #6c757d !important;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    color: #00A887 !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d !important;
    max-width: 600px;
    margin: 0 auto;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border-color: #00A887;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #00A887;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00A887, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #6c757d !important;
    font-weight: 500;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00A887 !important;
}

.period {
    font-size: 1rem;
    color: #6c757d !important;
    font-weight: 500;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #333 !important;
}

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

.features-list li i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

.package-footer .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.package-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Comparison Table */
.comparison-section {
    background: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin: 2rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #00A887;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table .feature-column {
    text-align: right;
    background: #f8f9fa !important;
    font-weight: 600;
    color: #333 !important;
}

.comparison-table .feature-value {
    font-weight: 500;
}

.comparison-table .feature-value.basic {
    color: #6c757d !important;
}

.comparison-table .feature-value.premium {
    color: #00A887 !important;
    font-weight: 600;
}

.comparison-table .feature-value.royal {
    color: #FF6B35 !important;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: #00A887;
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin-top: 2rem;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: white;
    color: #00A887;
    border: 2px solid white;
}

.cta-actions .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-outline:hover {
    background: white;
    color: #00A887;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* ======================================== */
/* Team Page Specific Styles */
/* تنسيقات خاصة بصفحة الفريق */
/* ======================================== */

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

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

.team-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.team-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-section:nth-child(even) {
    background: white;
}

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

.department-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.department-title {
    font-size: 2.5rem;
    color: #00A887;
    font-weight: 700;
    margin-bottom: 1rem;
}

.department-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #00A887;
}

.leadership-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #00A887;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00A887, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 135, 0.3);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.cta-section {
    background: #00A887;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #00A887;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #00A887;
}

/* Responsive Design for Team */
@media (max-width: 768px) {
    .team-hero-title {
        font-size: 2rem;
    }
    
    .team-hero-desc {
        font-size: 1rem;
    }
    
    .team-stats {
        gap: 1.5rem;
    }
    
    .team-stat {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .department-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-hero {
        padding: 3rem 0;
    }
    
    .team-hero-title {
        font-size: 1.8rem;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .team-stat {
        width: 100%;
        max-width: 200px;
    }
    
    .department-title {
        font-size: 1.8rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .team-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
}

/* ======================================== */
/* About Page Specific Styles */
/* تنسيقات خاصة بصفحة من نحن */
/* ======================================== */

/* إصلاح النصوص البيضاء في صفحة من نحن */
.hero-desc {
    color: #333 !important;
    font-weight: 500;
    opacity: 1 !important;
}

.about-company-title {
    color: #00A887 !important;
    font-weight: 700;
}

.about-description {
    color: #333 !important;
    line-height: 1.8;
}

.vision-title, .mission-title {
    color: #00A887 !important;
    font-weight: 700;
}

.vision-description, .mission-description {
    color: #333 !important;
    line-height: 1.8;
}

.branch-header h3 {
    color: #00A887 !important;
    font-weight: 700;
}

.branch-details p {
    color: #333 !important;
}

.branch-details strong {
    color: #00A887 !important;
}

.company-highlight {
    color: #00A887 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #00A887 !important;
    text-shadow: none !important;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.year-highlight {
    color: #FF6B35 !important;
    background: rgba(255, 107, 53, 0.2) !important;
    border: 2px solid rgba(255, 107, 53, 0.4) !important;
    text-shadow: none !important;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.cta-content h2 {
    color: #00A887 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.cta-content p {
    color: #333 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* إصلاح النصوص البيضاء في قسم Timeline */
.section-title {
    color: #00A887 !important;
    font-weight: 700;
}

.timeline-item h3 {
    color: #00A887 !important;
    font-weight: 700;
}

.timeline-content p {
    color: #333 !important;
    line-height: 1.8;
}

.timeline-year {
    color: #FF6B35 !important;
    font-weight: 700;
}

.registration-details {
    color: #333 !important;
    background: #f8f9fa !important;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

.registration-details strong {
    color: #00A887 !important;
    font-weight: 600;
}

/* إصلاح زر تعرف على خدماتنا */
.btn-outline {
    background: transparent !important;
    color: #00A887 !important;
    border: 2px solid #00A887 !important;
}

.btn-outline:hover {
    background: #00A887 !important;
    color: white !important;
    border-color: #00A887 !important;
}

/* ======================================== */
/* Agent Join Page Specific Styles */
/* تنسيقات خاصة بصفحة انضم كوكيل */
/* ======================================== */

/* Hover Effects */
.commission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 135, 0.1);
    outline: none;
}

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

.btn-white:hover {
    background: var(--primary-light) !important;
    color: var(--primary-color) !important;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4) !important;
}

/* Phoenix Brand Colors */
:root {
    --phoenix-primary: #00A887;
    --phoenix-secondary: #99E6D8;
    --phoenix-accent: #FF6B35;
    --phoenix-light: #E6F7F3;
    --phoenix-lighter: #F0FDFA;
}

/* Responsive Design for Agent Join */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ======================================== */
/* Privacy Page Specific Styles */
/* تنسيقات خاصة بصفحة الخصوصية */
/* ======================================== */

.privacy-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.privacy-section-block {
    margin-bottom: 40px;
}

.privacy-section-block h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-section-block h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.privacy-section-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section-block ul {
    padding-right: 20px;
    margin-bottom: 15px;
}

.privacy-section-block li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Responsive Design for Privacy */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 25px;
        margin: 0 15px;
    }
}

/* ======================================== */
/* Support Page Specific Styles */
/* تنسيقات خاصة بصفحة الدعم */
/* ======================================== */

.support-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0 60px 0;
}

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

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
}

.contact-link:hover {
    background: var(--accent-color);
}

.emergency-support {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
}

.emergency-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Support */
@media (max-width: 768px) {
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ======================================== */
/* Terms Page Specific Styles */
/* تنسيقات خاصة بصفحة الشروط */
/* ======================================== */

.terms-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.terms-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.terms-section-block {
    margin-bottom: 40px;
}

.terms-section-block h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.terms-section-block ul {
    padding-right: 1.5rem;
    color: #555;
    margin-bottom: 15px;
}

.terms-section-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design for Terms */
@media (max-width: 600px) {
    .terms-content { 
        padding: 15px; 
    }
    .hero-title { 
        font-size: 1.5rem; 
    }
}

/* ======================================== */
/* FAQ Page Specific Styles */
/* تنسيقات خاصة بصفحة الأسئلة الشائعة */
/* ======================================== */

.faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0 60px 0;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.faq-category:hover,
.faq-category.active {
    background: var(--primary-color);
    color: white;
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-right: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ======================================== */
/* Notification Styles */
/* تنسيقات الإشعارات */
/* ======================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    font-weight: 500;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
    font-family: 'Cairo', sans-serif;
}

.notification-success {
    background: #10b981;
}

.notification-error {
    background: #ef4444;
}

.notification-info {
    background: #3b82f6;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ======================================== */
/* Authentication Pages Styles */
/* تنسيقات خاصة بصفحات المصادقة */
/* ======================================== */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 2rem 1rem;
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.auth-container::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.2);
    padding: 4rem 3.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.3);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00A887, #99E6D8, #00A887);
    border-radius: 28px 28px 0 0;
}

.auth-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.auth-logo {
    display: none !important;
}


.auth-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00A887, #1f2937);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    color: #64748b;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1.4rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.8);
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #00A887;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(0, 168, 135, 0.2), 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-input.error + .form-error {
    display: block;
}

.form-success {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-input.success + .form-success {
    display: block;
}

.password-strength {
    margin-top: 0.75rem;
}

.strength-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-bar.strength-weak .strength-fill {
    width: 25%;
    background: #ef4444;
}

.strength-bar.strength-fair .strength-fill {
    width: 50%;
    background: #f59e0b;
}

.strength-bar.strength-good .strength-fill {
    width: 75%;
    background: #3b82f6;
}

.strength-bar.strength-strong .strength-fill {
    width: 100%;
    background: #10b981;
}

.strength-text {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
}

.remember-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #00A887;
}

.forgot-password {
    color: #00A887;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #007a6b;
    text-decoration: underline;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00A887;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.terms-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    font-weight: 400;
}

.terms-text a {
    color: #00A887;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-text a:hover {
    color: #007a6b;
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    background: linear-gradient(135deg, #00A887, #99E6D8);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    text-transform: none;
    box-shadow: 0 12px 35px rgba(0, 168, 135, 0.4);
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.auth-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 168, 135, 0.6);
    background: linear-gradient(135deg, #007a6b, #7dd3c0);
}

.auth-button:active {
    transform: translateY(-1px);
}

.auth-button.loading {
    pointer-events: none;
}

.auth-button.loading .button-text {
    opacity: 0;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.auth-button.loading .loading-spinner {
    display: block;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.auth-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: white;
    padding: 0 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-auth {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    text-decoration: none;
    color: #374151;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
}

.social-button:hover {
    border-color: #00A887;
    background: rgba(240, 253, 244, 0.9);
    color: #00A887;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 168, 135, 0.25);
}

.social-button i {
    font-size: 1.3rem;
}

.auth-link {
    text-align: center;
    margin-top: 2rem;
}

.auth-link p {
    color: #6b7280;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

.auth-link a {
    color: #00A887;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.auth-link a:hover {
    color: #007a6b;
    background: rgba(0, 168, 135, 0.1);
    transform: translateY(-1px);
}

/* Responsive Design for Auth */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }
    
    .auth-card {
        padding: 3rem 2rem;
        border-radius: 24px;
        margin: 0.5rem;
        max-width: 100%;
    }
    
    .auth-title {
        font-size: 2.4rem;
    }
    
    .auth-subtitle {
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-auth {
        flex-direction: column;
        gap: 1rem;
    }
    
    .auth-options {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .form-input {
        padding: 1.3rem 1.4rem;
        font-size: 1.1rem;
    }
    
    .auth-button {
        padding: 1.4rem 1.8rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2.5rem 1.5rem;
        margin: 0.5rem;
        border-radius: 20px;
    }
    
    .auth-title {
        font-size: 2.2rem;
    }
    
    .auth-subtitle {
        font-size: 1.1rem;
    }
    
    .form-input {
        padding: 1.2rem 1.3rem;
        font-size: 1rem;
    }
    
    .auth-button {
        padding: 1.3rem 1.6rem;
        font-size: 1.1rem;
    }
}

/* ======================================== */
/* Dashboard Page Specific Styles */
/* تنسيقات خاصة بصفحة لوحة التحكم */
/* ======================================== */

.dashboard-container {
    min-height: 100vh;
    background: var(--bg-lighter);
    padding: var(--space-lg);
}

.dashboard-header {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.dashboard-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
    margin: 0;
}

.dashboard-subtitle {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin: var(--space-xs) 0 0 0;
}

.dashboard-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-bold);
}

.user-details h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--text-sm);
}

.user-details p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--text-xs);
}

.logout-btn {
    background: var(--error-color);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.logout-btn:hover {
    background: #e53e3e;
    transform: translateY(-1px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.dashboard-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    margin: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-lighter);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--text-light);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

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

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-lighter);
    transition: var(--transition-fast);
}

.project-item:hover {
    background: var(--bg-lighter);
}

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

.project-info h4 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-dark);
    font-size: var(--text-base);
}

.project-info p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--text-sm);
}

.project-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.status-active {
    background: var(--success-light);
    color: var(--success-color);
}

.status-pending {
    background: var(--warning-light);
    color: var(--warning-color);
}

.status-completed {
    background: var(--info-light);
    color: var(--info-color);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
    cursor: pointer;
}

.action-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-lighter);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.action-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
}

.action-text h4 {
    margin: 0 0 var(--space-xs) 0;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
}

.action-text p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.recent-activities {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-lighter);
}

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

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-lighter);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.activity-content h5 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-dark);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.activity-content p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--text-xs);
}

.activity-time {
    color: var(--text-muted);
    font-size: var(--text-xs);
    margin-top: var(--space-xs);
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        padding: var(--space-md);
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .dashboard-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   Register Page Styles (from register.php)
   ====================================== */
.register-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    color: #333;
    margin: 0 0 0.5rem 0;
}

.register-header p {
    color: #666;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    background: #dc3545;
}

.strength-bar.strength-weak .strength-fill {
    width: 25%;
    background: #dc3545;
}

.strength-bar.strength-fair .strength-fill {
    width: 50%;
    background: #ffc107;
}

.strength-bar.strength-good .strength-fill {
    width: 75%;
    background: #17a2b8;
}

.strength-bar.strength-strong .strength-fill {
    width: 100%;
    background: #28a745;
}

.strength-text {
    font-size: 0.75rem;
    color: #666;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.terms-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.25rem;
}

/* ======================================
   Profile Page Styles (from profile.php)
   ====================================== */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 16px;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    color: #00A887;
    background: #f8f9fa;
}

.tab-button.active {
    color: #00A887;
    border-bottom-color: #00A887;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.card-title {
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.role-display {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    font-weight: 600;
    color: #00A887;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ======================================
   ERP Import Styles (from views/admin/erp-import.php)
   ====================================== */
.system-card {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.system-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.system-card.selected {
    border-color: var(--primary-color);
    background-color: #f0f9ff;
}

.system-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.import-progress {
    display: none;
}

.import-result {
    margin-top: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.success-count {
    color: #28a745;
    font-weight: bold;
}

.error-count {
    color: #dc3545;
    font-weight: bold;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background-color: #f0f9ff;
}

.json-editor {
    min-height: 300px;
    font-family: 'Courier New', monospace;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.step.active .step-number {
    background-color: var(--primary-color);
}

.step.completed .step-number {
    background-color: #28a745;
}

/* ======================================
   POS Report Styles (from views/pos/report.php)
   ====================================== */
.report-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 1.1rem;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.table-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-print {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-print:hover {
    background: #008f73;
    color: white;
}

.payment-method-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.payment-method-name {
    font-weight: 600;
}

.payment-method-amount {
    color: var(--primary-color);
    font-weight: bold;
}

@media print {
    .no-print {
        display: none !important;
    }
    
    .report-header {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .stat-card, .chart-container, .table-container {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
}

/* ======================================
   POS Main Styles (from views/pos/index.php)
   ====================================== */
.pos-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.pos-sidebar {
    width: 300px;
    background: white;
    border-left: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.pos-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

.pos-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: between;
    align-items: center;
}

.pos-content {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.products-section {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-section {
    width: 400px;
    background: white;
    border-left: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.product-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card.selected {
    border-color: var(--primary-color);
    background-color: #f0f9ff;
}

.product-image {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6c757d;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

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

.product-stock {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-btn:hover {
    background: #f8f9fa;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.25rem;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-checkout {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-checkout:hover {
    background: #008f73;
}

.search-box {
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.category-filter {
    margin-bottom: 1rem;
}

.category-btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.low-stock-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.payment-modal .modal-content {
    border-radius: 12px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
}

.payment-method.selected {
    border-color: var(--primary-color);
    background-color: #f0f9ff;
}

.payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pos-container {
        flex-direction: column;
    }
    
    .pos-sidebar {
        width: 100%;
        height: 200px;
        border-left: none;
        border-bottom: 1px solid #dee2e6;
    }
    
    .cart-section {
        width: 100%;
        height: 300px;
        border-left: none;
        border-top: 1px solid #dee2e6;
    }
}

/* ======================================
   Enhanced Packages Section Styles
   ====================================== */
.packages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.packages-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.package-tab {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.package-tab i {
    font-size: 1.3rem;
}

.package-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,168,135,0.2);
}

.package-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #99E6D8 100%);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 16px rgba(0,168,135,0.3);
}

.packages-category {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.packages-category.active {
    display: block;
}

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

.packages-category-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
    font-weight: 700;
}

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

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.package-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
    font-size: 1rem;
    position: relative;
    padding-right: 2rem;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #99E6D8 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,168,135,0.2);
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,168,135,0.3);
    color: white;
}

.package-cta.featured {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5e 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.package-cta.featured:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-section {
        padding: 60px 20px;
    }
    
    .packages-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .package-tab {
        width: 100%;
        justify-content: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .packages-category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .package-header {
        padding-bottom: 1rem;
    }
    
    .package-title {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
}

/* ======================================
   Agent Register Page Styles (from agent/register.php)
   ====================================== */
.agent-badge {
    background: linear-gradient(135deg, #48bb78, #229954);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.agent-register-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 600px;
    margin: 20px;
}

.agent-register-header h1 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 28px;
}

/* ======================================
   Photography Service Styles (from services/photography.php)
   ====================================== */
.photography-hero {
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.photography-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photography-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.photography-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border-color: #00A887;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 168, 135, 0.4);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 168, 135, 0.3);
    transition: all 0.3s ease;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.service-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

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

.service-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f3f4f6;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #00A887;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-action {
    margin-top: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    margin: 0 auto;
}

.service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 135, 0.4);
    background: linear-gradient(135deg, #007a6b 0%, #7dd3c0 100%);
    color: white;
}

/* Featured Service */
.featured-service {
    border: 3px solid #00A887;
    transform: scale(1.05);
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #00A887, #99E6D8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.service-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-title {
    color: #00A887;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.featured-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00A887;
    margin-bottom: 0.5rem;
}

.featured-period {
    color: #6b7280;
    font-size: 1rem;
}

.featured-btn {
    background: linear-gradient(135deg, #00A887, #99E6D8) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4) !important;
}

.featured-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 168, 135, 0.5) !important;
}

/* ======================================
   Currency Converter Styles (from currency-converter.php)
   ====================================== */
.converter-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
}

.converter-title {
    text-align: center;
    color: #00A887;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.converter-title i {
    margin-left: 1rem;
    color: #FF6B35;
}

.converter-form {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.convert-btn {
    background: linear-gradient(135deg, #00A887 0%, #99E6D8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 60px;
}

.convert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4);
    background: linear-gradient(135deg, #008A6B 0%, #7DD3C0 100%);
}

.convert-btn:active {
    transform: translateY(0);
}

.convert-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.convert-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #00A887;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #00A887;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.1);
}

.result i {
    margin-left: 0.5rem;
    color: #28a745;
    font-size: 1.5rem;
}

.currency-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.currency-info h3 {
    color: #00A887;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.currency-info h3 i {
    margin-left: 0.5rem;
    color: #FF6B35;
}

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

.currency-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.currency-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.currency-item strong {
    display: block;
    color: #00A887;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.currency-item span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,168,135,0.1);
}

.swap-button {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5e 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.swap-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.result-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-text {
    color: #666;
    font-size: 1.1rem;
}

/* ======================================
   Payment Page Styles (from payment.php)
   ====================================== */
.payment-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.payment-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-header p {
    color: #666;
    font-size: 1.1rem;
}

.payment-form-group {
    margin-bottom: 20px;
}

.payment-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.payment-form-group input,
.payment-form-group select,
.payment-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.payment-form-group input:focus,
.payment-form-group select:focus,
.payment-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.payment-method-card.selected {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.payment-method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-method-name {
    font-weight: 600;
    color: #333;
}

.payment-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #99E6D8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.payment-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Payment */
@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .converter-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .convert-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .result {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .currency-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .currency-item {
        padding: 0.8rem;
    }
    
    .swap-button {
        transform: rotate(90deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .photography-hero h1 {
        font-size: 2rem;
    }
    
    .converter-title {
        font-size: 2rem;
    }
    
    .result-amount {
        font-size: 2rem;
    }
}

/* ======================================
   Project Detail Page Styles (from views/projects/detail.php)
   ====================================== */
.project-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-detail-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.project-detail-grid {
    display: grid;
}

/* ======================================
   Dashboard Styles (from dashboard/index.php)
   ====================================== */
.employee-dashboard {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    color: white;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

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

.dashboard-main {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-sidebar {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.recent-activities {
    list-style: none;
    padding: 0;
}

.recent-activities li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-activities li:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.activity-time {
    color: #666;
    font-size: 0.9rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.quick-action-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #99E6D8 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,168,135,0.3);
    color: white;
}

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

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Page Styles */
.services-hero {
    padding: 100px 0 60px 0;
}

.service-action {
    margin-top: 2rem;
}

/* إصلاح العناوين البيضاء */
.hero-title,
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color) !important;
}

.hero-title {
    color: var(--text-color) !important;
    font-weight: 800;
}

/* العناوين الرئيسية تحتفظ بالخلفية الملونة */
.section-title {
    color: white !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    font-weight: 700;
}

/* إصلاح العناوين في الصفحة الرئيسية */
.hero-content .hero-title {
    color: var(--text-color) !important;
}

/* إصلاح العناوين في جميع الصفحات */
.page-title,
.main-title,
.content-title {
    color: var(--text-color) !important;
}

/* توسيط العنوان الرئيسي */
.hero-content {
    text-align: center !important;
}

.hero-title {
    text-align: center !important;
    margin: 0 auto !important;
}

.hero-desc {
    text-align: center !important;
    margin: 0 auto !important;
}

/* إصلاح تضارب CSS في جميع الصفحات */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6 !important;
    color: var(--text-color) !important;
    background-color: var(--background-color) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ضمان أن جميع الصفحات تستخدم نفس CSS */
.hero, .section, .container, .hero-content, .hero-title, .hero-desc {
    display: block !important;
    width: 100% !important;
}

/* إصلاح CSS للصفحات المختلفة */
.services-hero, .packages-hero, .team-hero, .projects-hero {
    padding: 100px 0 60px 0 !important;
}

/* ضمان أن CSS يعمل في جميع الصفحات */
@media screen and (min-width: 1px) {
    .hero-title, .section-title, h1, h2, h3, h4, h5, h6 {
        color: var(--text-color) !important;
        font-weight: 700 !important;
    }
    
    .section-title {
        color: var(--primary-color) !important;
    }
}
