@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

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

/* شريط التقدم */
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #3a86ff, #4CC9F0);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* الهيدر */
header {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 8px;
}

.logo span {
    color: #4CC9F0;
}

.advisor {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 11px;
    color: #4CC9F0;
    font-weight: 500;
}

.advisor span {
    color: #fff;
    font-weight: 400;
}

.mobile-advisor {
    display: none;
}

.desktop-advisor {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 8px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #4CC9F0;
    transform: translateX(-3px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: #4CC9F0;
    transition: width 0.3s;
}

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

.nav-links a i {
    margin-left: 6px;
    transition: transform 0.3s;
    font-size: 14px;
}

.nav-links a:hover i {
    transform: rotate(360deg);
}

.menu-toggle {
    display: none;
    color: white;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.menu-toggle .fa-times {
    display: none;
}

.btn {
    background-color: #4CC9F0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
    font-size: 15px;
}

.btn:hover {
    background-color: #3db4d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.4);
}

.btn i {
    margin-right: 6px;
}

/* تأثيرات الحركة */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* حركات الصور */
.img-zoom {
    transition: transform 0.5s ease;
}

.img-zoom:hover {
    transform: scale(1.05);
}

/* حركات الأزرار */
.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-hover:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle, #fff 10%, transparent 10.01%) no-repeat 50%;
    transform: scale(10,10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.btn-hover:active:after {
    transform: scale(0,0);
    opacity: .3;
    transition: 0s;
}

/* حركات البطاقات */
.card-hover {
    transition: all 0.3s ease;
}

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

/* حركات النص */
.text-fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* الصفحة الرئيسية */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 42, 58, 0.8), rgba(13, 27, 42, 0.9)), url('https://images.pexels.com/photos/917494/pexels-photo-917494.jpeg') no-repeat center center/cover;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    color: #fff;
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* الأقسام */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a2a3a;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #4CC9F0;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* بطاقات الضغوط النفسية */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: calc(33.33% - 20px);
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(76,201,240,0.2);
}

.card-img {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 12px;
}

.card-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

/* قسم الأعراض */
.symptoms {
    background-color: #f1f8fc;
}

.symptom-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.symptom-type {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    width: calc(50% - 15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.symptom-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.symptom-type h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.symptom-type h3 i {
    margin-left: 8px;
    color: #4CC9F0;
    font-size: 18px;
}

.symptom-type ul {
    list-style-type: none;
}

.symptom-type li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.symptom-type li:before {
    content: "•";
    color: #4CC9F0;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    margin-left: 5px;
}

/* تقنيات التخفيف */
.techniques {
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
}

.technique-box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.technique-img {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.technique-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.technique-box:hover .technique-img img {
    transform: scale(1.05);
}

.technique-content {
    width: 60%;
    padding: 25px;
}

.technique-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.technique-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.technique-points {
    margin-top: 15px;
}

.technique-points li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.technique-points li:before {
    content: "✓";
    color: #4CC9F0;
    font-weight: bold;
    margin-left: 8px;
}

/* قسم النشاط البدني */
.physical-activity {
    position: relative;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.activity-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.activity-img {
    height: 180px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.activity-content {
    padding: 20px;
}

.activity-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 12px;
}

.activity-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.benefit-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e6f7fe;
    color: #4CC9F0;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 12px;
}

/* الجانب الديني */
.religion-section {
    background-color: #f8f5f0;
}

.religion-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prayer-box, .quran-box {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.prayer-img, .quran-img {
    width: 40%;
}

.prayer-img img, .quran-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prayer-text, .quran-text {
    width: 60%;
    padding: 25px;
}

.quran-box {
    flex-direction: row-reverse;
}

.quran-verse {
    font-size: 16px;
    color: #4CC9F0;
    margin: 12px 0;
    font-weight: 500;
    line-height: 1.7;
}

.prayer-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 20px;
    color: #4CC9F0;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 12px;
}

.quran-benefits li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.quran-benefits i {
    color: #4CC9F0;
    margin-left: 8px;
    font-size: 14px;
}

.dua-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.dua-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #1a2a3a;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dua-section h3 i {
    color: #4CC9F0;
    margin-left: 10px;
}

.duas-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dua-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f7fe 100%);
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 15px);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dua-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 201, 240, 0.2);
}

.dua-card::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 50px;
    color: rgba(76, 201, 240, 0.1);
    z-index: 0;
}

.dua-text {
    font-size: 16px;
    color: #1a2a3a;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.dua-info {
    color: #4CC9F0;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

/* قسم الأسئلة الشائعة */
.faq {
    background-color: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 18px;
    text-align: right;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a3a;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f1f8fc;
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 14px;
}

.faq-answer {
    background: #fff;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 18px;
    max-height: 500px;
}

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

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
}

/* المزيد من التقنيات */
.more-techniques .cards {
    margin-top: 30px;
}

/* زر العودة للأعلى */
#back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background-color: #4CC9F0;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 999;
}

#back-to-top:hover {
    background-color: #3db4d8;
    transform: translateY(-3px);
}

/* تأثيرات الحركة */
[data-aos] {
    opacity: 0;
    transition: all 0.8s;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* تنسيق التوقيع */
.signature {
    text-align: center;
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
    font-weight: 300;
}

.signature span {
    color: #4CC9F0;
    font-weight: 500;
}

.signature .social-links {
    justify-content: center;
    margin-top: 12px;
}

.signature .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 5px;
    background-color: rgba(76, 201, 240, 0.1);
}

.signature .social-links a:hover {
    background-color: #4CC9F0;
}

/* الفوتر */
footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    color: #fff;
    padding: 50px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    width: calc(25% - 25px);
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: #4CC9F0;
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4CC9F0;
    padding-right: 5px;
}

.footer-links a i {
    margin-left: 6px;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #4CC9F0;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 25px 0 15px;
    margin-top: 40px;
    position: relative;
    color: #bbb;
    font-size: 15px;
    font-weight: 300;
    direction: rtl;
}

.copyright::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.5), transparent);
}

.copyright p {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background-color: #0d1b2a;
    z-index: 1;
}

.copyright span.heart {
    color: #ff4d4d;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
    margin: 0 5px;
}

.copyright a {
    color: #4CC9F0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

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

/* تأثير نبضات القلب */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* تأثيرات إضافية */
.copyright .year {
    color: #4CC9F0;
    font-weight: 500;
}

.copyright .company {
    color: #fff;
    font-weight: 400;
    text-decoration: underline dotted;
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .copyright {
        font-size: 13px;
        padding: 20px 0 10px;
    }
    
    .copyright::before {
        width: 90%;
    }
}

/* تنسيق قسم تواصل مع المرشدة للجوال */
.footer-contact {
    padding: 30px 20px; /* زيادة الحشو الداخلي */
    margin: 30px 0;    /* زيادة الهوامش الخارجية */
    background: rgba(255,255,255,0.05); /* لون خلفية */
    border-radius: 12px; /* زوايا مدورة */
    width: 90%;        /* عرض أكبر */
    max-width: 800px;  /* أقصى عرض */
    margin-left: auto;
    margin-right: auto;
}

.contact-box h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.whatsapp-btn, .call-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-btn {
    background: #4CC9F0;
    background: linear-gradient(135deg, #4CC9F0 0%, #2A93D5 100%);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i, .call-btn i {
    font-size: 28px;
    margin-bottom: 5px;
}

.whatsapp-btn span, .call-btn span {
    font-size: 14px;
    font-weight: 500;
}

.contact-number {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    direction: ltr;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

/* تأثيرات النقر */
.whatsapp-btn:active, .call-btn:active {
    transform: scale(0.95);
}

/* للشاشات الصغيرة جدًا */
@media (max-width: 380px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-btn i, .call-btn i {
        font-size: 24px;
    }
    
    .whatsapp-btn span, .call-btn span {
        font-size: 12px;
    }
    
    .contact-number {
        font-size: 14px;
    }
}

/* التصميم المتجاوب */
@media (max-width: 992px) {
    .card {
        width: calc(50% - 15px);
    }
    
    .technique-box {
        flex-direction: column;
    }
    
    .technique-img, .technique-content {
        width: 100%;
    }
    
    .symptom-type {
        width: 100%;
    }
    
    .footer-column {
        width: calc(50% - 15px);
    }
    
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prayer-box, .quran-box {
        flex-direction: column;
    }
    
    .prayer-img, .quran-img, .prayer-text, .quran-text {
        width: 100%;
    }
    
    .dua-card {
        width: 100%;
    }
    
    .prayer-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 80%;
        height: calc(100vh - 70px);
        background: #1a2a3a;
        flex-direction: column;
        padding: 20px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links a {
        padding: 10px;
        font-size: 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .card {
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .prayer-benefits {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .dua-text {
        font-size: 15px;
    }
    
    .technique-content {
        padding: 20px;
    }
    
    .mobile-advisor {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .desktop-advisor {
        display: none;
    }
    
    .advisor {
        position: static;
        font-size: 14px;
        margin: 5px 0;
    }
}

/* تحسينات خاصة لشاشات 380px وأصغر */
@media (max-width: 380px) {
    header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .advisor {
        font-size: 10px;
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .nav-links {
        top: 65px;
        padding: 10px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 5px;
    }
    
    .hero {
        margin-top: 65px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .symptom-type {
        padding: 18px;
    }
    
    .symptom-type h3 {
        font-size: 18px;
    }
    
    .symptom-type li {
        font-size: 13px;
    }
    
    .technique-title {
        font-size: 20px;
    }
    
    .technique-text {
        font-size: 13px;
    }
    
    .activity-grid {
        gap: 15px;
    }
    
    .activity-content {
        padding: 15px;
    }
    
    .activity-title {
        font-size: 16px;
    }
    
    .activity-text {
        font-size: 13px;
    }
    
    .prayer-text, .quran-text {
        padding: 18px;
    }
    
    .quran-verse {
        font-size: 15px;
    }
    
    .dua-section h3 {
        font-size: 20px;
    }
    
    .dua-card {
        padding: 15px;
    }
    
    .dua-text {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .benefit-tag, .dua-info {
        font-size: 11px;
    }
    
    .technique-box, .symptom-type, .activity-card, .prayer-box, .quran-box {
        margin-bottom: 15px;
    }
    
    .card-img, .activity-img {
        height: 150px;
    }
    
    .hero-content p br {
        display: none;
    }
    
    /* تعديلات إضافية للجوال الصغير */
    .technique-points li, .quran-benefits li {
        font-size: 13px;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .benefit-item i {
        font-size: 18px;
    }
    
    .benefit-item p {
        font-size: 11px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    #back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
    
    .dua-card::before {
        font-size: 40px;
    }
}

/* تحسين تنسيقات حقوق النشر للأجهزة المحمولة */
.copyright {
    text-align: center;
    padding: 20px 15px;
    background-color: var(--dark-bg);
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .copyright {
        margin-top: 0;
        padding: 15px 10px;
        position: relative;
        bottom: 0;
    }
    
    .copyright p {
        font-size: 12px;
        padding: 0 5px;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .copyright {
        padding: 12px 8px;
    }
    
    .copyright p {
        font-size: 11px;
    }
}