/* ===== Pages-specific styles ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail */
.service-detail { padding: 80px 0; }
.service-detail.alt { background: var(--gray-100); }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 28px;
}

.service-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    padding: 160px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.8;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section { padding: 80px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-item {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.value-item .icon { font-size: 40px; margin-bottom: 16px; }

.value-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details { list-style: none; }

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-800);
}

.contact-details li .icon {
    font-size: 20px;
    min-width: 24px;
}

.contact-details a {
    color: var(--green-dark);
    text-decoration: none;
}

.contact-details a:hover { color: var(--gold); }

.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

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

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Geo Landing Pages */
.geo-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    padding: 160px 0 80px;
    text-align: center;
}

.geo-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.geo-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.geo-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.geo-stat {
    text-align: center;
}

.geo-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.geo-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.geo-content { padding: 80px 0; }

.geo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.geo-feature {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.geo-feature:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.geo-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.geo-feature p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Nav active state */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .service-detail-grid,
    .service-detail-grid.reverse,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-detail-grid.reverse { direction: ltr; }
    .values-grid { grid-template-columns: 1fr; }
    .geo-stats { flex-wrap: wrap; gap: 20px; }
    .contact-form-wrapper { padding: 24px; }
}
