/**
 * Prabha Properties - Page-Specific Styles
 * Contains styles for individual pages (About, Contact, FAQ, Privacy Policy, etc.)
 */

/* ========================================
   Home Page Styles
   ======================================== */

.service-card, .feature-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon, .feature-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--theme-color2);
}

/* ========================================
   Breadcrumb Section
   ======================================== */
.breadcumb-wrapper {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.breadcumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.breadcumb-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcumb-menu li {
    color: #fff;
}

.breadcumb-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcumb-menu a:hover {
    color: var(--theme-color, #ff6b35);
}

/* ========================================
   About Page
   ======================================== */
.about-content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.about-content-wrapper h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.about-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.mission-vision-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mission-box,
.vision-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-box i,
.vision-box i {
    font-size: 48px;
    color: var(--theme-color, #ff6b35);
    margin-bottom: 20px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--theme-color, #ff6b35);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color, #ff6b35);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card:hover .icon {
    background: #fff;
    color: var(--theme-color, #ff6b35);
}

.contact-info-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info-card p {
    margin: 0;
    font-size: 15px;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--theme-color, #ff6b35);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-category-tabs {
    margin-bottom: 40px;
}

.faq-category-tabs .nav-pills .nav-link {
    padding: 12px 24px;
    border-radius: 25px;
    margin: 5px;
    background: #f8f9fa;
    color: #333;
    border: none;
    transition: all 0.3s ease;
}

.faq-category-tabs .nav-pills .nav-link:hover {
    background: #e9ecef;
}

.faq-category-tabs .nav-pills .nav-link.active {
    background: var(--theme-color, #ff6b35);
    color: #fff;
}

.faq-accordion .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
    background: #fff;
    color: #333;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--theme-color, #ff6b35);
    color: #fff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--theme-color, #ff6b35);
}

.faq-accordion .accordion-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.faq-cta-box {
    background: linear-gradient(135deg, var(--theme-color, #ff6b35) 0%, #ff8c5a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.faq-cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.faq-cta-box p {
    font-size: 16px;
    margin-bottom: 25px;
}

/* ========================================
   Privacy Policy & Terms Page
   ======================================== */
.privacy-policy-content,
.terms-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.content-wrapper h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.content-wrapper h3:first-child {
    margin-top: 0;
}

.content-wrapper p {
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}

.content-wrapper a {
    color: var(--theme-color, #ff6b35);
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .breadcumb-title {
        font-size: 32px;
    }

    .contact-form-wrapper,
    .about-content-wrapper,
    .privacy-policy-content,
    .terms-content {
        padding: 25px;
    }

    .mission-vision-boxes {
        grid-template-columns: 1fr;
    }

    .faq-category-tabs .nav-pills {
        flex-wrap: wrap;
    }

    .faq-category-tabs .nav-pills .nav-link {
        font-size: 14px;
        padding: 10px 18px;
    }
}

