/* ===== PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 90px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-content h2 .material-icons {
    font-size: 32px;
}

/* About Page */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon .material-icons {
    font-size: 56px;
    color: var(--white);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .material-icons {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
}

.how-it-works-section {
    margin-bottom: 80px;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon .material-icons {
    font-size: 36px;
    color: var(--white);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
}

.step-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.9rem;
}

.step-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.why-choose-us {
    margin-bottom: 80px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.reason-item .material-icons {
    font-size: 56px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.reason-item p {
    font-size: 0.95rem;
}

.service-areas {
    margin-bottom: 80px;
}

.service-areas > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.location-item .material-icons {
    font-size: 48px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.location-item h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.location-item p {
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-primary {
    background: var(--secondary-color);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-box .btn-primary:hover {
    background: #e65100;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card .material-icons {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    margin: 0;
}

.info-card a {
    color: var(--text-color);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--primary-color);
}

.map-section {
    margin-top: 60px;
}

.map-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-container h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.map-info .material-icons {
    color: var(--secondary-color);
    font-size: 22px;
}

.map-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.privacy-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h3 .material-icons {
    font-size: 28px;
}

.privacy-section h4 {
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul, 
.privacy-section ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    list-style-position: outside;
}

.privacy-section ul li {
    list-style-type: disc;
}

.privacy-section ol li {
    list-style-type: decimal;
}

.privacy-section strong {
    color: var(--text-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.last-updated {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
}

/* Active menu item */
.nav-menu a.active {
    color: var(--secondary-color);
}

.header.scrolled .nav-menu a.active {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-card:hover {
        transform: translateY(-5px);
    }

    .cta-box {
        padding: 40px 25px;
    }

    .privacy-section {
        padding: 25px 20px;
    }

    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .features-grid,
    .reasons-grid,
    .contact-info,
    .locations-list {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }
}
