/* QarzMitra FAQ Page Styles */
:root {
    --primary-color: #4DEEDC; /* Mint green / Teal color from the app */
    --primary-dark: #33B3A5;
    --primary-light: #A1F4EB;
    --secondary-color: #0A2342; /* Dark blue for text and accents */
    --accent-color: #FFD700; /* Gold accent for highlights */
    --text-color: #333333;
    --text-light: #666666;
    --light-text: #FFFFFF;
    --background-light: #F8F9FA;
    --background-gray: #F0F2F5;
    --border-color: #E1E4E8;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --card-radius: 16px;
    --button-radius: 50px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.QarzMitra-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-text);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

.QarzMitra-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.QarzMitra-logo {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.QarzMitra-logo img {
    max-width: 100%;
    margin-right: 10px;
    height: auto;
}

.QarzMitra-menu ul {
    display: flex;
}

.QarzMitra-menu li {
    margin: 0 15px;
}

.QarzMitra-menu a {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 0;
    position: relative;
}

.QarzMitra-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.QarzMitra-menu a:hover::after,
.QarzMitra-menu .active a::after {
    width: 100%;
}

.QarzMitra-language-toggle {
    display: flex;
}

.QarzMitra-lang-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-lang-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Hero Section */
.QarzMitra-faq-hero {
    padding: 120px 0 60px;
    background-color: var(--background-light);
    position: relative;
}

.QarzMitra-faq-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--gradient-primary);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.QarzMitra-faq-hero-text {
    flex: 1;
}

.QarzMitra-faq-hero-text h1 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.QarzMitra-faq-hero-text p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.QarzMitra-email {
    font-weight: 700;
    color: var(--secondary-color);
}

.QarzMitra-download-button {
    margin-top: 30px;
}

.QarzMitra-store-link img {
    width: 200px;
    height: auto;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-store-link:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.QarzMitra-faq-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.QarzMitra-faq-hero-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* FAQ Section */
.QarzMitra-faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.QarzMitra-faq-wrapper {
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 40px;
    overflow: hidden;
}

.QarzMitra-faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.QarzMitra-category-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: var(--button-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-category-btn:hover,
.QarzMitra-category-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.QarzMitra-faq-category {
    display: none;
}

.QarzMitra-faq-category.active {
    display: block;
}

.QarzMitra-faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.QarzMitra-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    transition: color var(--transition-speed) ease;
}

.QarzMitra-faq-question:hover h3 {
    color: var(--primary-dark);
}

.QarzMitra-faq-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-faq-item.active .QarzMitra-faq-icon {
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.QarzMitra-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-speed) ease;
    padding: 0 0;
}

.QarzMitra-faq-item.active .QarzMitra-faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 0 20px;
}

.QarzMitra-faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer Styles */
.QarzMitra-footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.QarzMitra-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.QarzMitra-footer-logo {
    flex: 1;
    min-width: 300px;
}

.QarzMitra-footer-logo .QarzMitra-logo {
    width: 180px;
    height: 60px;
    margin-bottom: 15px;
}

.QarzMitra-footer-logo .QarzMitra-logo img {
    max-width: 100%;
    height: auto;
}

.QarzMitra-footer-contact {
    margin-top: 20px;
}

.QarzMitra-footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.QarzMitra-footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.QarzMitra-footer-menu {
    flex: 1;
    min-width: 150px;
}

.QarzMitra-footer-menu h4 {
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.QarzMitra-footer-menu h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.QarzMitra-footer-menu ul li {
    margin-bottom: 10px;
}

.QarzMitra-footer-menu ul li a {
    color: var(--light-text);
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.QarzMitra-footer-menu ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.QarzMitra-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.QarzMitra-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.QarzMitra-footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Animation Classes */
.QarzMitra-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.QarzMitra-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.QarzMitra-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.QarzMitra-mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .QarzMitra-faq-hero-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .QarzMitra-faq-hero-text {
        text-align: center;
    }
    
    .QarzMitra-faq-hero-text h1 {
        font-size: 2.4rem;
    }
    
    .QarzMitra-faq-categories {
        justify-content: center;
    }
    
    .QarzMitra-faq-wrapper {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .QarzMitra-header {
        position: sticky;
    }
    
    .QarzMitra-faq-hero {
        padding: 30px 0;
    }
    
    .QarzMitra-faq-hero-text h1 {
        font-size: 2rem;
    }
    
    .QarzMitra-faq-hero-text p {
        font-size: 1rem;
    }
    
    .QarzMitra-faq-categories {
        overflow-x: auto;
        padding-bottom: 15px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
    }
    
    .QarzMitra-category-btn {
        white-space: nowrap;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .QarzMitra-menu {
        display: none;
    }
    
    .QarzMitra-menu.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .QarzMitra-menu.active ul {
        flex-direction: column;
    }
    
    .QarzMitra-menu.active li {
        margin: 10px 0;
    }
    
    .QarzMitra-mobile-menu-toggle {
        display: flex;
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .QarzMitra-footer-top {
        flex-direction: column;
    }
    
    .QarzMitra-footer-links {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .QarzMitra-faq-hero-content {
        padding: 20px;
    }
    
    .QarzMitra-faq-question h3 {
        font-size: 1.1rem;
    }
    
    .QarzMitra-faq-wrapper {
        padding: 20px 15px;
    }
} 