/* File: /css/policy-style.css */

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

:root {
    --primary-color: #007bff;
    --secondary-color: #333;
    --background-color: #f4f7f9;
    --card-bg-color: #ffffff;
    --text-color: #4a4a4a;
    --heading-color: #2a2a2a;
    --border-color: #e1e4e8;
    --footer-bg-color: #212529;
    --footer-text-color: #adb5bd;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Header & Navigation --- */
.site-header {
    background-color: var(--card-bg-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.brand-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--heading-color);
    text-decoration: none;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.nav-toggle { display: none; } /* Mobile menu button */

/* --- Main Content --- */
.page-container {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}
.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.page-header h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}
.content-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}
.content-card h2, .content-card h3 {
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 1rem;
}
.content-card p, .content-card li {
    margin-bottom: 1rem;
}
.content-card ul {
    padding-left: 20px;
}
.content-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* --- Policy Page Accordion --- */
details {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
summary {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--heading-color);
}
summary::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}
details[open] summary::after {
    transform: rotate(180deg);
}
.details-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* --- Contact Page Specific --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 5px;
    width: 25px;
}
.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}


/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}
.site-footer .footer-nav {
    margin-bottom: 1.5rem;
}
.site-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 400;
}
.site-footer p {
    margin: 0.5rem 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--card-bg-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    .main-nav li { width: 100%; }
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .page-header h1 { font-size: 2rem; }
    .content-card { padding: 1.5rem; }
}
  .urdu {
            font-family: 'Noto Nastaliq Urdu', serif;
            direction: rtl;
            text-align: right;
            color: #6c757d; /* Muted color for translation */
            font-size: 1rem;
            display: block;
            margin-top: 8px;
        }
        .delivery-info-section {
            background-color: #f8f9fa;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        .delivery-info-section h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
        }