/* Pages CSS */
.services-detail {
    padding: 80px 0;
    background: var(--cream);
}

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

.service-detail-card.reverse {
    direction: rtl;
}

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

.service-detail-image {
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--navy);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    color: var(--charcoal);
}

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

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background: var(--cream);
}

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

.contact-info-box {
    background: white;
    padding: 48px;
    border: 1px solid var(--border-color);
}

.contact-info-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
}

.info-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 14px;
    color: var(--charcoal);
}

.contact-form-box {
    background: white;
    padding: 48px;
    border: 1px solid var(--border-color);
}

.contact-form-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 24px;
}

/* Reviews Page */
.reviews-section {
    padding: 80px 0;
    background: var(--cream);
}

.review-form-container {
    background: white;
    padding: 48px;
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.rating-input {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 32px;
    cursor: pointer;
    color: #ddd;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--gold);
}

.reviews-list {
    display: grid;
    gap: 32px;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background: var(--cream);
}

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

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

.about-image {
    overflow: hidden;
}

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

.about-text h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--charcoal);
}

@media (max-width: 968px) {
    .service-detail-card,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-card.reverse {
        direction: ltr;
    }
}
