@font-face {
    font-family: 'MiSansArabic';
    src: url('../webfonts/MiSansArabic-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
:root {
    --primary-800: #1a3c34;
    --primary-900: #132a24;
    --blue-500: #007bff;
    --blue-600: #0056b3;
    --blue-700: #004494;
    --red-500: #ff0019;
    --red-600: #cc0014;
    --red-700: #99000f;
    --accent-500: #ff6f61;
    --accent-600: #e55a4d;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --surface: #ffffff;
    --surface-light: #f8f9fa;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-full: 50px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --danger-600: #dc3545;
    --danger-700: #c82333;
    --success-500: #25D366;
    --success-600: #20B058;
    --telegram-500: #0088CC;
    --telegram-600: #006B9F;
    --surface-secondary: #f9fafb;
    --surface-hover: #f3f4f6;
    --telegram-color: #0088cc;
    --whatsapp-color: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MiSansArabic', sans-serif;
    background: var(--surface);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* NavBar Core */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 64px;
    background: var(--surface);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-decoration: none;
}

.nav-sections {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-sections a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-sections a.background {
    background-color: var(--surface-secondary);
}

.nav-sections a i {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-sections a.background:hover {
    background-color: var(--surface-hover);
    color: var(--text-primary);
}

.nav-sections a:hover i {
    color: var(--text-primary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-title-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-title-container i {
    font-size: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    padding: 8px;
    border-radius: 10px;
}

.sidebar-dalya-way-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.sidebar-dalya-way-toggle:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

/* Sidebar Coach Dalya Styles */
.sidebar-dalya-way {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-dalya-way.active {
    right: 0;
}

.sidebar-dalya-way-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-dalya-way-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.sidebar-dalya-way-close:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

.sidebar-dalya-way-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-dalya-way-content a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-dalya-way-content a i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.sidebar-dalya-way-content a:hover {
    background-color: var(--surface-hover);
    color: var(--text-primary);
}

.sidebar-dalya-way-content a:hover i {
    color: var(--text-primary);
}

body.sidebar-dalya-way-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sidebar-dalya-way-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
    }

    .nav-left {
        flex: 1;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .nav-title-container {
        order: 1;
    }

    .sidebar-dalya-way-toggle {
        order: 0;
    }
}

@media (max-width: 480px) {
    .sidebar-dalya-way {
        width: 250px;
    }

    .nav-title {
        font-size: 18px;
    }

    .nav-title-container i {
        font-size: 18px;
    }

    .sidebar-dalya-way-content a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .sidebar-dalya-way-content a i {
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background: var(--surface);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 45px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    will-change: transform, opacity;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    will-change: transform, opacity;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    will-change: transform, opacity;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--red-500);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    width: 200px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: white;
    box-shadow: var(--shadow-md);
    font-family: 'MiSansArabic';
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--surface-light);
    border-color: var(--red-500);
    color: var(--red-500);
}

.coach-avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.coach-avatar {
    width: 380px;
    height: 380px;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s ease;
}

.coach-avatar:hover {
    transform: scale(1.02);
}

.avatar-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--surface-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: right;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0;
    flex-shrink: 0;
}

.about-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    flex: 1;
}

.about-card-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background: var(--surface);
    overflow: hidden;
}

.certificates-container {
    text-align: center;
    margin-bottom: 50px;
}

.certificates-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
}

.certificates-slider-wrapper {
    overflow: hidden;
    width: 100%;
    direction: ltr;
}

.certificates-slider {
    display: flex;
    width: max-content;
    animation: infiniteSlide 40s linear infinite;
}

.certificates-slider:hover {
    animation-play-state: paused;
}

.certificate-item {
    flex: 0 0 400px;
    margin: 0 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.certificate-item:hover {
    transform: scale(0.9);
}

.certificate-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 4px solid transparent;
    transition: all 0.3s ease;
}

.certificate-item:hover img {
    border-color: var(--red-500);
    box-shadow: var(--shadow-xl);
}

@keyframes infiniteSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: var(--surface-light);
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    flex: 1;
}

.benefit-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

/* Success Stories Section */
.success-section {
    padding: 80px 20px;
    background: var(--surface);
}

.success-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    display: flex;
    align-items: flex-start;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    padding: 20px;
    gap: 20px;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.story-content {
    flex: 1;
    text-align: right;
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.story-date {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
}

.story-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 20px 80px;
    background: var(--surface);
    min-height: 100vh;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-us {
    background: var(--surface-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 50px;
    border: 2px solid var(--border-light);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--success-500), var(--success-600));
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    min-width: 225px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--success-600), #1A9046);
    transform: translateY(-3px);
}

.btn-telegram {
    background: linear-gradient(135deg, var(--telegram-500), var(--telegram-600));
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    min-width: 225px;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, var(--telegram-600), #005580);
    transform: translateY(-3px);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    font-size: 16px;
    min-width: 200px;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Certificate Modal */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.certificate-modal.active {
    display: flex;
}

.certificate-modal-content {
    max-width: 90%;
    max-height: 90vh;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalShow 0.3s ease-out;
}

.certificate-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}

.certificate-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-600);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.certificate-modal-close:hover {
    background: var(--danger-700);
    transform: rotate(90deg) scale(1.1);
}

@keyframes modalShow {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .coach-avatar-container {
        order: 1;
        justify-content: center;
    }
    
    .coach-avatar {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .coach-avatar {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .avatar-badge {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .certificate-item {
        flex: 0 0 300px;
        margin: 0 15px;
    }
    
    .certificate-item img {
        height: 220px;
    }
    
    @keyframes infiniteSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .benefits-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons,
    .contact-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .btn {
        min-width: 180px;
        max-width: 180px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .btn-whatsapp,
    .btn-telegram,
    .btn-login {
        min-width: 225px;
        max-width: 225px;
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .coach-avatar {
        width: 240px;
        height: 240px;
    }
    
    .avatar-badge {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .about-card,
    .benefit-card {
        padding: 30px;
    }
    
    .certificate-item {
        flex: 0 0 250px;
        margin: 0 10px;
    }
    
    .certificate-item img {
        height: 180px;
    }
    
    @keyframes infiniteSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .hero-buttons,
    .contact-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        min-width: 160px;
        max-width: 160px;
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .btn-whatsapp,
    .btn-telegram,
    .btn-login {
        min-width: 160px;
        max-width: 160px;
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* FAQ Specific Styles */
.faqs-section {
    padding: 120px 20px 80px;
    background: var(--surface);
    min-height: 100vh;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faqs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    text-align: right;
}

.faq-item {
    background: var(--surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--red-500);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--red-500);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--surface-light);
}

.faq-item.active .faq-question {
    background: var(--surface-light);
    border-bottom: 2px solid var(--border-light);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    text-align: right;
    line-height: 1.5;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--surface);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 25px 30px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

/* Feedback Form */
.feedback-section {
    padding: 120px 20px 80px;
    background: var(--surface);
    min-height: 100vh;
    font-family: 'MISansArabic';
}

.feedback-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.feedback-header {
    text-align: center;
    margin-bottom: 30px;
}

.feedback-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feedback-form {
    background: var(--surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-color: var(--red-500);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--surface-light);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'MiSansArabic';
}

.form-control:focus {
    outline: none;
    border-color: var(--red-500);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Contact CTA */
.faq-contact-cta {
    background: var(--surface-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 50px;
    border: 2px solid var(--border-light);
}

.faq-contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.faq-contact-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .faqs-section {
        padding: 100px 15px 60px;
    }

    .faq-question {
        padding: 20px 25px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .faq-question-text {
        font-size: 16px;
        text-align: right;
        flex: 1;
    }

    .faq-icon {
        margin-left: 0;
        width: 35px;
        height: 35px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .faq-answer-content {
        padding: 20px 25px 25px;
        font-size: 15px;
    }

    .faq-contact-cta {
        padding: 30px 25px;
    }

    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer-content {
        padding: 18px 20px 22px;
    }

    .faq-contact-cta {
        padding: 25px 20px;
    }
}

/* Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'MiSansArabic', Arial, sans-serif;
}

.main-contact-btn {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.main-contact-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.main-contact-btn:active {
    transform: scale(0.95);
}

.main-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-contact-btn:hover::before {
    opacity: 1;
}

.contact-text {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.3s ease-out;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-text:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.social-buttons {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-buttons.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 200px;
    height: 55px;
    border-radius: var(--radius-full);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.social-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 ease;
}

.social-btn:hover::before {
    left: 100%;
}

.btn-telegram {
    background: linear-gradient(135deg, var(--telegram-color), #006bb3);
    animation-delay: 0.1s;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #1ebf5a);
    animation-delay: 0.2s;
}

.social-btn:hover {
    transform: translateX(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.social-btn:active {
    transform: translateX(-5px) scale(0.98);
}

.social-btn .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-btn:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.social-buttons.show .social-btn {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .main-contact-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .social-btn {
        width: 180px;
        height: 50px;
        font-size: 14px;
    }
    
    .contact-text {
        right: 70px;
        font-size: 12px;
    }
}

.site-name {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 2px;
}

img, canvas {
  -webkit-user-drag: none;
  user-select: none;
}

.swal2-confirm {
    background-color: var(--red-600) !important;
    border: none;
    font-weight: bold;
    font-family: 'MiSansArabic', sans-serif !important;
}