* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(145deg, #fff6e8 0%, #fef0df 100%);
    font-family: 'Segoe UI', 'Poppins', 'Noto Naskh Arabic', system-ui, -apple-system, sans-serif;
    color: #2d2b26;
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER SECTION ========== */
.site-header {
    padding: 1.2rem 0 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 2px solid rgba(180, 140, 100, 0.2);
    margin-bottom: 2rem;
    background: rgba(255, 250, 240, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-area {
    flex: 1;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.2);
}

/* Navigation Buttons - New Attractive Colors */
.nav-buttons-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.azkar-btn {
    border: none;
    background: linear-gradient(135deg, #B87333, #CD7F32);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.azkar-btn::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;
}

.azkar-btn:hover::before {
    left: 100%;
}

.azkar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 115, 51, 0.3);
    background: linear-gradient(135deg, #C47A3E, #DE8B4A);
}

.azkar-btn:active {
    transform: translateY(0);
}

/* Urdu text support */
.urdu-text {
    font-family: 'Noto Naskh Arabic', 'Urdu Typesetting', 'Jameel Noori Nastaleeq', serif;
    font-size: 1.2rem;
    direction: rtl;
    text-align: right;
    line-height: 2rem;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #B87333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .azkar-btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
}

.close-menu-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

/* ========== PAGE HEADER ========== */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border-radius: 30px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #8B5A2B;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #A67B45;
    font-size: 1rem;
}

/* ========== AZKAAR CARDS ========== */
.azkaar-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.azkaar-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0e2d4;
}

.azkaar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #f0e2d4;
    padding-bottom: 0.8rem;
}

.checkbox-square {
    width: 32px;
    height: 32px;
    background: #f5e8dc;
    border: 2px solid #C49A6C;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-square .checkmark {
    font-size: 20px;
    font-weight: bold;
    color: transparent;
}

.checkbox-square.checked {
    background: #4CAF50;
    border-color: #388E3C;
    animation: bounce 0.3s ease;
}

.checkbox-square.checked .checkmark {
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.azkaar-title h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B5A2B;
}

.arabic-badge {
    background: #FDF4E6;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #B87333;
    display: inline-block;
    margin-top: 0.3rem;
}

.arabic-text {
    background: #FEFAF5;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    text-align: center;
    direction: rtl;
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    color: #2c3e2a;
}

.transliteration, .translation {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    color: #5a4a38;
    line-height: 1.6;
}

.transliteration strong, .translation strong {
    color: #B87333;
}

.virtue-text {
    font-size: 0.9rem;
    color: #C49A6C;
    background: #FFF8F0;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.8rem;
}

/* ========== VIEW MORE BUTTONS ========== */
.view-more-container {
    text-align: center;
    margin: 2rem 0;
}

.view-more-btn, .daily-zikr-btn {
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 107, 77, 0.3);
    font-family: inherit;
}

.view-more-btn:hover, .daily-zikr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 107, 77, 0.4);
}

/* ========== 15 BUTTONS GRID (For View More Page) ========== */
.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-card-btn {
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border: 2px solid #C49A6C;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #8B5A2B;
    font-size: 1rem;
}

.nav-card-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #C49A6C, #B87333);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== CONTACT FORM ========== */
.contact-section {
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-section h3 {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0cfbe;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #C49A6C;
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    background: #2c2a24;
    color: #e0cfbe;
    padding: 2rem 1rem 1rem;
    border-radius: 30px 30px 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #C49A6C;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #e0b07a;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(224, 207, 190, 0.2);
    font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .nav-buttons-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .azkaar-title h3 {
        font-size: 1.1rem;
    }
    
    .arabic-text {
        font-size: 1rem;
    }
    
    .buttons-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .nav-card-btn {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ========== COMPLETION MESSAGE ========== */
.completion-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.completion-card {
    background: white;
    padding: 2rem;
    border-radius: 32px;
    text-align: center;
    max-width: 400px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.completion-icon {
    font-size: 3rem;
}

.reset-btn {
    background: #B87333;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
}

/* ========== DUAS PAGE STYLES ========== */
.dua-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dua-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border-left: 4px solid #C49A6C;
}

.dua-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.2rem;
    line-height: 2rem;
    direction: rtl;
    text-align: right;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.dua-transliteration {
    color: #6b5a4a;
    margin: 0.5rem 0;
    font-style: italic;
}

.dua-translation {
    color: #5a4a38;
    margin-top: 0.5rem;
}

/* Selection styling */
::selection {
    background: #C49A6C;
    color: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(145deg, #fff6e8 0%, #fef0df 100%);
    font-family: 'Segoe UI', 'Poppins', 'Noto Naskh Arabic', system-ui, -apple-system, sans-serif;
    color: #2d2b26;
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER SECTION ========== */
.site-header {
    padding: 1.2rem 0 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 2px solid rgba(180, 140, 100, 0.2);
    margin-bottom: 2rem;
    background: rgba(255, 250, 240, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-area {
    flex: 1;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.2);
}

/* Navigation Buttons - New Attractive Colors */
.nav-buttons-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.azkar-btn {
    border: none;
    background: linear-gradient(135deg, #B87333, #CD7F32);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.azkar-btn::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;
}

.azkar-btn:hover::before {
    left: 100%;
}

.azkar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 115, 51, 0.3);
    background: linear-gradient(135deg, #C47A3E, #DE8B4A);
}

.azkar-btn:active {
    transform: translateY(0);
}

/* Urdu text support */
.urdu-text {
    font-family: 'Noto Naskh Arabic', 'Urdu Typesetting', 'Jameel Noori Nastaleeq', serif;
    font-size: 1.2rem;
    direction: rtl;
    text-align: right;
    line-height: 2rem;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #B87333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .azkar-btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem;
    margin: 0.3rem 0;
}

.close-menu-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

/* ========== PAGE HEADER ========== */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border-radius: 30px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #8B5A2B;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #A67B45;
    font-size: 1rem;
}

/* ========== AZKAAR CARDS ========== */
.azkaar-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.azkaar-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0e2d4;
}

.azkaar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #f0e2d4;
    padding-bottom: 0.8rem;
}

.checkbox-square {
    width: 32px;
    height: 32px;
    background: #f5e8dc;
    border: 2px solid #C49A6C;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-square .checkmark {
    font-size: 20px;
    font-weight: bold;
    color: transparent;
}

.checkbox-square.checked {
    background: #4CAF50;
    border-color: #388E3C;
    animation: bounce 0.3s ease;
}

.checkbox-square.checked .checkmark {
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.azkaar-title h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B5A2B;
}

.arabic-badge {
    background: #FDF4E6;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #B87333;
    display: inline-block;
    margin-top: 0.3rem;
}

.arabic-text {
    background: #FEFAF5;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    text-align: center;
    direction: rtl;
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    color: #2c3e2a;
}

.transliteration, .translation {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    color: #5a4a38;
    line-height: 1.6;
}

.transliteration strong, .translation strong {
    color: #B87333;
}

.virtue-text {
    font-size: 0.9rem;
    color: #C49A6C;
    background: #FFF8F0;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.8rem;
}

/* ========== VIEW MORE BUTTONS ========== */
.view-more-container {
    text-align: center;
    margin: 2rem 0;
}

.view-more-btn, .daily-zikr-btn {
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 107, 77, 0.3);
    font-family: inherit;
}

.view-more-btn:hover, .daily-zikr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 107, 77, 0.4);
}

/* ========== 15 BUTTONS GRID (For View More Page) ========== */
.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-card-btn {
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border: 2px solid #C49A6C;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #8B5A2B;
    font-size: 1rem;
}

.nav-card-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #C49A6C, #B87333);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== CONTACT FORM ========== */
.contact-section {
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-section h3 {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0cfbe;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #C49A6C;
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    background: #2c2a24;
    color: #e0cfbe;
    padding: 2rem 1rem 1rem;
    border-radius: 30px 30px 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #C49A6C;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #e0b07a;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(224, 207, 190, 0.2);
    font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .nav-buttons-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .azkaar-title h3 {
        font-size: 1.1rem;
    }
    
    .arabic-text {
        font-size: 1rem;
    }
    
    .buttons-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .nav-card-btn {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ========== COMPLETION MESSAGE ========== */
.completion-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.completion-card {
    background: white;
    padding: 2rem;
    border-radius: 32px;
    text-align: center;
    max-width: 400px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.completion-icon {
    font-size: 3rem;
}

.reset-btn {
    background: #B87333;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
}

/* ========== DUAS PAGE STYLES ========== */
.dua-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dua-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border-left: 4px solid #C49A6C;
}

.dua-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.2rem;
    line-height: 2rem;
    direction: rtl;
    text-align: right;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.dua-transliteration {
    color: #6b5a4a;
    margin: 0.5rem 0;
    font-style: italic;
}

.dua-translation {
    color: #5a4a38;
    margin-top: 0.5rem;
}

/* Selection styling */
::selection {
    background: #C49A6C;
    color: white;
}

/* ========== NEW STYLES FOR IMPROVED HEADER & CARDS ========== */

/* Improved Header for PC */
@media (min-width: 769px) {
    .nav-buttons-desktop {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-buttons-desktop .azkar-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-buttons-desktop .azkar-btn.more {
        background: linear-gradient(135deg, #B87333, #CD7F32);
    }
}

/* Better Cards for Homepage */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(196, 154, 108, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C49A6C, #B87333);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #C49A6C;
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #8B5A2B;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: #8b7355;
    margin-bottom: 1.2rem;
}

.feature-btn {
    background: linear-gradient(135deg, #8B6B4D, #C49A6C);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.feature-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.3);
}

/* Popular Duas Section */
.popular-duas {
    background: linear-gradient(135deg, #fff9f0, #fff5e8);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem 0;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.popular-item {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #f0e2d4;
}

.popular-item:hover {
    background: linear-gradient(135deg, #C49A6C, #B87333);
    transform: translateX(5px);
}

.popular-icon {
    font-size: 1.5rem;
}

.popular-info {
    flex: 1;
}

.popular-title {
    font-weight: 600;
    color: #8B5A2B;
    font-size: 0.95rem;
}

.popular-desc {
    font-size: 0.75rem;
    color: #a68b6f;
}

.popular-item:hover .popular-title,
.popular-item:hover .popular-desc {
    color: white;
}

/* All Duas Button */
.all-duas-btn {
    text-align: center;
    margin: 2rem 0;
}

.all-duas-btn button {
    background: linear-gradient(135deg, #2c5e2a, #3d7e31);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(60, 94, 42, 0.2);
}

.all-duas-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 94, 42, 0.3);
}

/* Checklist Preview */
.checklist-preview {
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #f0e2d4;
}

.checklist-preview h3 {
    color: #8B5A2B;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5e8, #ffefdf);
    border-radius: 40px;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 2rem;
    color: #8B5A2B;
}

.hero-section p {
    color: #A67B45;
}

/* Mobile Menu Scroll Fix */
@media (max-width: 768px) {
    .mobile-menu {
        overflow-y: auto;
        padding: 2rem;
    }
    
    .mobile-menu .azkar-btn {
        width: 90%;
        max-width: 300px;
        font-size: 1rem;
        padding: 0.9rem;
        margin: 0.3rem 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-item {
        padding: 0.8rem 1rem;
    }
    
    .all-duas-btn button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
}
/* ========== MOBILE MENU FIX ========== */
@media (max-width: 768px) {
    /* Mobile Menu Container Fix */
    .mobile-menu {
        padding: 2rem 1rem;
        gap: 1rem;
        justify-content: flex-start;
        padding-top: 4rem;
        overflow-y: auto;
    }
    
    /* Mobile Menu Buttons Fix */
    .mobile-menu .azkar-btn {
        width: 90%;
        max-width: 320px;
        min-width: 260px;
        text-align: center;
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
        margin: 0.2rem 0;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
        height: auto;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* HR Line Fix */
    .mobile-menu hr {
        width: 85%;
        margin: 0.5rem auto;
    }
    
    /* Close button area */
    .close-menu-bg {
        position: fixed;
    }
    
    /* Body scroll fix */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Additional Fix for Very Small Screens */
@media (max-width: 480px) {
    .mobile-menu .azkar-btn {
        width: 95%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.8rem 0.8rem;
        min-height: 48px;
    }
    
    .mobile-menu {
        padding: 2rem 0.5rem;
        padding-top: 3rem;
    }
}

/* Ensure text doesn't overflow */
.azkar-btn {
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}
/* ========== UPDATED HERO SECTION & CARDS STYLES ========== */

/* Hero Section - Dark Cream Background */
.hero-section {
    background: linear-gradient(135deg, #e8d9c8, #ddceb9, #d2c0a8) !important;
    border: 2px solid #5a3a2a !important;
    box-shadow: 0 15px 35px rgba(90, 58, 42, 0.15) !important;
}

/* Hero Section Arabic Title */
.hero-section .arabic-title {
    color: #5a3a2a !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

/* Hero Section H1 (Daily Azkaar) */
.hero-section h1 {
    background: linear-gradient(135deg, #5a3a2a, #8B5A2B, #5a3a2a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Hero Section Paragraph */
.hero-section p {
    color: #5a3a2a !important;
    font-weight: 500;
}

/* ========== FEATURE CARDS (3 Cards Below Hero) ========== */
.feature-card {
    background: linear-gradient(135deg, #e8d9c8, #ddceb9, #d2c0a8) !important;
    border: 2px solid #5a3a2a !important;
    border-radius: 28px !important;
    box-shadow: 0 10px 30px rgba(90, 58, 42, 0.1) !important;
    transition: all 0.4s ease !important;
}

.feature-card:hover {
    transform: translateY(-8px) !important;
    border-color: #3d251a !important;
    box-shadow: 0 20px 40px rgba(90, 58, 42, 0.2) !important;
}

/* Feature Card Heading */
.feature-card h3 {
    color: #5a3a2a !important;
}

/* Feature Card Paragraph */
.feature-card p {
    color: #6b4a35 !important;
}

/* Feature Button */
.feature-btn {
    background: linear-gradient(135deg, #5a3a2a, #8B5A2B) !important;
}

.feature-btn:hover {
    background: linear-gradient(135deg, #6b4a35, #9b6a3b) !important;
    box-shadow: 0 5px 15px rgba(90, 58, 42, 0.4) !important;
}

/* ========== REMOVE EMOJIS FROM CARDS - ADD SILVER ICONS ========== */
.feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}

/* Replace emojis with silver icons using pseudo-elements */
.feature-card:nth-child(1) .feature-icon {
    content: "🌅";
    display: inline-block;
    filter: grayscale(0.3) brightness(0.9) sepia(0.3) saturate(0.5);
}

.feature-card:nth-child(2) .feature-icon {
    content: "🌙";
    display: inline-block;
    filter: grayscale(0.3) brightness(0.9) sepia(0.3) saturate(0.5);
}

.feature-card:nth-child(3) .feature-icon {
    content: "🛡️";
    display: inline-block;
    filter: grayscale(0.3) brightness(0.9) sepia(0.3) saturate(0.5);
}

/* Alternative: If you want to completely remove emojis and use Font Awesome or text icons */
.feature-card .feature-icon {
    background: none !important;
    text-shadow: none !important;
}

/* You can also add SVG icons if you prefer - here's a CSS-only silver icon style */
.feature-icon {
    color: #a8a8a8 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-card:hover .feature-icon {
    color: #c0c0c0 !important;
    transform: scale(1.1);
    transition: all 0.3s;
}

/* ========== SURAH YASEEN CARD ========== */
.surah-highlight-card {
    background: linear-gradient(135deg, #2c5e2a, #3d7e31) !important;
    border: 2px solid #1a3a18 !important;
}

.surah-card-title {
    color: white !important;
}

.surah-card-subtitle {
    color: #d4e6d0 !important;
}

.surah-card-arabic {
    color: #d4e6d0 !important;
}

.surah-card-badge {
    background: #1a3a18 !important;
}

/* ========== DAILY RECITATION SECTION ========== */
.daily-recitation {
    background: linear-gradient(135deg, #fff9f0, #fff5e8) !important;
    border: 1px solid #5a3a2a !important;
}

.daily-recitation h2 {
    color: #5a3a2a !important;
}

/* ========== QUICK LINKS ========== */
.link-item {
    border-color: #ddceb9 !important;
    color: #5a3a2a !important;
}

.link-item:hover {
    background: linear-gradient(135deg, #5a3a2a, #8B5A2B) !important;
    color: white !important;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(135deg, #fff5e8, #ffefdf) !important;
    border: 1px solid #ddceb9 !important;
}

.contact-section h3 {
    color: #5a3a2a !important;
}

.submit-btn {
    background: linear-gradient(135deg, #5a3a2a, #8B5A2B) !important;
}

/* ========== FOOTER ========== */
.footer {
    background: #2c2a24 !important;
}

.footer-links a {
    color: #C49A6C !important;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.2rem !important;
    }
    
    .feature-icon {
        font-size: 2rem !important;
    }
}
/* ========== UPDATED DARK BROWN HEADER & MOBILE STYLES ========== */

/* Header Title - Dark Brown */
.site-title {
    background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
    color: #fef5e6 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(90, 58, 42, 0.3) !important;
}

/* ========== MOBILE BACKGROUND - MEDIUM CREAM ========== */
@media (max-width: 768px) {
    body {
        background: #f5e6d3 !important;  /* Medium Cream - Not too light, not too dark */
    }
    
    .container {
        padding: 0 0.8rem !important;
    }
    
    /* ========== MOBILE FEATURE CARDS - RECTANGULAR (Short Width, Long Length) ========== */
    .featured-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .feature-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.8rem 1rem !important;
        width: 100% !important;
        min-height: 80px !important;
        background: linear-gradient(135deg, #e8d9c8, #ddceb9) !important;
        border: 1px solid #5a3a2a !important;
        border-radius: 16px !important;
        text-align: left !important;
        gap: 1rem !important;
    }
    
    .feature-card::before,
    .feature-card::after {
        display: none !important;
    }
    
    .feature-icon {
        font-size: 1.8rem !important;
        margin-bottom: 0 !important;
        min-width: 45px !important;
        text-align: center !important;
        filter: grayscale(0.2) brightness(0.8) sepia(0.2) !important;
    }
    
    .feature-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.2rem !important;
        color: #5a3a2a !important;
    }
    
    .feature-card p {
        font-size: 0.7rem !important;
        margin-bottom: 0 !important;
        color: #6b4a35 !important;
        display: none !important; /* Hide description on mobile for compact look */
    }
    
    /* Mobile Card Info Container */
    .card-info {
        flex: 1 !important;
    }
    
    /* Small Green Button on Mobile Cards */
    .feature-btn {
        background: linear-gradient(135deg, #2c5e2a, #3d7e31) !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.7rem !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        min-width: 100px !important;
        text-align: center !important;
    }
    
    .feature-btn:hover {
        transform: scale(1.02) !important;
        background: linear-gradient(135deg, #3d7e31, #4c9f3d) !important;
    }
    
    /* Hero Section on Mobile */
    .hero-section {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-section .arabic-title {
        font-size: 1.2rem !important;
    }
    
    .hero-section p {
        font-size: 0.8rem !important;
    }
    
    /* Surah Yaseen Card on Mobile */
    .surah-highlight-card {
        padding: 0.8rem 1rem !important;
    }
    
    .surah-card-icon {
        font-size: 1.8rem !important;
    }
    
    .surah-card-title {
        font-size: 1rem !important;
    }
    
    .surah-card-subtitle {
        font-size: 0.7rem !important;
    }
    
    .surah-card-arabic {
        font-size: 0.8rem !important;
    }
    
    .surah-card-badge {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Daily Recitation on Mobile */
    .daily-recitation {
        padding: 1rem !important;
    }
    
    .daily-recitation h2 {
        font-size: 1.2rem !important;
    }
    
    .surah-btn-card {
        padding: 0.8rem !important;
    }
    
    .surah-btn-icon {
        font-size: 1.5rem !important;
    }
    
    .surah-btn-title {
        font-size: 0.9rem !important;
    }
    
    /* Quick Links on Mobile */
    .quick-links h3 {
        font-size: 1.1rem !important;
    }
    
    .link-item {
        padding: 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Contact Form on Mobile */
    .contact-section {
        padding: 1rem !important;
    }
    
    .contact-section h3 {
        font-size: 1.2rem !important;
    }
    
    .contact-form input, 
    .contact-form textarea {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Footer on Mobile */
    .footer {
        padding: 1rem 0.5rem 0.5rem !important;
    }
    
    .footer-links {
        gap: 1rem !important;
    }
    
    .footer-links a {
        font-size: 0.7rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.65rem !important;
    }
}

/* ========== DESKTOP VIEW - Original Card Style with Small Green Button ========== */
@media (min-width: 769px) {
    /* Keep original card style but update button */
    .feature-btn {
        background: linear-gradient(135deg, #2c5e2a, #3d7e31) !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .feature-btn:hover {
        background: linear-gradient(135deg, #3d7e31, #4c9f3d) !important;
    }
    
    /* Button text change on desktop */
    .feature-card:nth-child(1) .feature-btn {
        content: "View Morning Azkaar" !important;
    }
}

/* ========== HEADER TITLE DARK BROWN (Desktop) ========== */
.site-title {
    background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
    color: #fef5e6 !important;
}

/* ========== HERO SECTION BORDER DARK BROWN ========== */
.hero-section {
    border: 2px solid #5a3a2a !important;
}

/* ========== FEATURE CARDS BORDER DARK BROWN ========== */
.feature-card {
    border: 2px solid #5a3a2a !important;
}

/* ========== MAKE BUTTON TEXT CUSTOMIZABLE ========== */
/* For desktop, button shows "Read Now" */
/* For mobile, button shows "View Dua of Forgiveness" on the third card only? */
.feature-card:nth-child(3) .feature-btn {
    background: linear-gradient(135deg, #2c5e2a, #3d7e31) !important;
}
/* ========== BUTTON COLORS - DARK BROWN (NOT GREEN) ========== */

/* Feature Cards Button - Dark Brown */
.feature-btn {
    background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
    color: #fef5e6 !important;
    border: none !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 40px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.feature-btn:hover {
    background: linear-gradient(135deg, #6b4a35, #4a2d1e) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(90, 58, 42, 0.4) !important;
    color: #ffffff !important;
}

/* Mobile View Buttons - Dark Brown */
@media (max-width: 768px) {
    .feature-btn {
        background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.7rem !important;
        color: #fef5e6 !important;
    }
    
    .feature-btn:hover {
        background: linear-gradient(135deg, #6b4a35, #4a2d1e) !important;
    }
}

/* ========== SURAH YASEEN CARD - LIGHT GREEN ========== */
.surah-highlight-card {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
    border: 1px solid #a5d6a7 !important;
    box-shadow: 0 5px 20px rgba(100, 150, 80, 0.15) !important;
}

.surah-highlight-card:hover {
    background: linear-gradient(135deg, #d4edda, #b8dfc0) !important;
    box-shadow: 0 15px 30px rgba(100, 150, 80, 0.25) !important;
}

.surah-card-title {
    color: #2c5e2a !important;
}

.surah-card-subtitle {
    color: #4c7a3a !important;
}

.surah-card-arabic {
    color: #3d6b2f !important;
}

.surah-card-badge {
    background: #2c5e2a !important;
    color: white !important;
}

/* ========== READ MORE BUTTON TEXT COLOR - OFF WHITE ========== */
.feature-btn {
    color: #fef5e6 !important;
}

/* Desktop View Button Text */
@media (min-width: 769px) {
    .feature-btn {
        color: #fef5e6 !important;
        font-weight: 500 !important;
    }
}

/* ========== ENSURE NO GREEN ON ANY BUTTON EXCEPT SURAH CARD ========== */
/* Override any previous green button styles */
.daily-zikr-btn,
.view-more-btn,
.submit-btn {
    background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
    color: #fef5e6 !important;
}

.daily-zikr-btn:hover,
.view-more-btn:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, #6b4a35, #4a2d1e) !important;
    color: white !important;
}

/* Surah Yaseen card badge remains green (that's okay) */
.surah-card-badge {
    background: #2c5e2a !important;
}

/* Quick links - keep original */
.link-item {
    background: white !important;
    color: #5a3a2a !important;
    border-color: #ddceb9 !important;
}

.link-item:hover {
    background: linear-gradient(135deg, #5a3a2a, #3d251a) !important;
    color: white !important;
}