/* static_pages.css - Modern V3 styling for static pages */
.staticPageWrapper {
    background-color: #f7f9fc;
    min-height: calc(100vh - 80px);
    padding: 60px 0;
    font-family: 'Inter', 'Heebo', sans-serif;
    direction: rtl;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.staticPageHeader {
    text-align: center;
    margin-bottom: 50px;
}

.staticPageHeader h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.staticPageHeader p {
    font-size: 1.75rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.staticPageCard {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    font-size: 1.75rem;
    line-height: 1.8;
}

.staticPageCard h2, .staticPageCard h3,
.staticPageCard article.post-large h2, .staticPageCard article.post-large h3 {
    color: #333;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.4;
}

.staticPageCard p, .staticPageCard span, .staticPageCard li {
    font-size: 1.75rem;
    color: #444;
    line-height: 1.8;
}

/* Contact Us Specific */
.contactUsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contactUsFormCol {
    flex: 1 1 500px;
}

.contactUsDetailsCol {
    flex: 1 1 300px;
}

.modernFormGroup {
    margin-bottom: 20px;
}

.modernFormGroup label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 1.75rem;
}

.modernFormInput {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #333;
}

.modernFormInput:focus {
    outline: none;
    border-color: #4d8fe2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(77, 143, 226, 0.1);
}

textarea.modernFormInput {
    resize: vertical;
    min-height: 120px;
}

.modernBtn {
    background: linear-gradient(119.54deg, #4d8fe2, #6857ed);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(104, 87, 237, 0.3);
    display: inline-block;
    text-align: center;
    width: 100%;
}

.modernBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(104, 87, 237, 0.4);
    text-decoration: none;
}

.contactDetailsList {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contactDetailsList li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.75rem;
    color: #444;
}

.contactDetailsList i {
    color: #4d8fe2;
    font-size: 1.6rem;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    background: #f0f4f8;
    padding: 10px;
    border-radius: 50%;
}

.contactDetailsList a {
    color: #4d8fe2;
    text-decoration: none;
    font-weight: 600;
}

.contactDetailsList a:hover {
    text-decoration: underline;
}

.socialIconsModern {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.socialIconModern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #4d8fe2;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.socialIconModern:hover {
    background: #4d8fe2;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .staticPageHeader h1 {
        font-size: 2.2rem;
    }
    
    .staticPageCard {
        padding: 25px;
    }
}
