/* =========================================
   SERVICE PAGES STYLES
========================================= */

/* --- Hero Section --- */
.service-hero {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    color: white;
    padding-top: 180px;
    padding-bottom: 80px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
}

.service-hero__content {
    max-width: 600px;
}

.service-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.service-hero__title span {
    position: relative;
    display: inline-block;
}

.service-hero__underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
}

.service-hero__underline path {
    stroke: #967259;
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.service-hero__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Quote Form --- */
.quote-form-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 100;
}

.quote-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 24px;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.quote-form label span {
    color: #EF4444;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 15px;
    color: #1F2937;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #967259;
}

.quote-form .btn-submit {
    width: 100%;
    background: #967259;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.quote-form .btn-submit:hover {
    background: #755541;
}

.quote-form-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.quote-form-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4B5563;
}

.quote-form-contact-item svg {
    width: 20px;
    height: 20px;
    color: #967259;
}

.quote-form-contact-item strong {
    color: #1F2937;
}

/* --- Why Choose Section --- */
.service-why {
    padding: 100px 0;
    background: white;
    position: relative;
}

.service-why h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 16px;
}

.service-why>.container>p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    max-width: 800px;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    border-radius: 10px;
    color: white;
}

.why-item__icon svg {
    width: 24px;
    height: 24px;
}

.why-item__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.why-item__content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
}

/* --- Service Details Section --- */
.service-details {
    padding: 100px 0;
    background: #F9FAFB;
}

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

.service-details__content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 24px;
}

.service-details__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 16px;
}

.service-details__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-details__images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- CTA Banner --- */
.service-cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    color: white;
}

.service-cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-cta-banner p {
    font-size: 22px;
    font-weight: 600;
    max-width: 600px;
}

.service-cta-banner .btn {
    background: #0F172A;
    color: white;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.service-cta-banner .btn:hover {
    background: white;
    color: #0F172A;
}

/* --- Related Services --- */
.related-services {
    padding: 80px 0;
    background: white;
}

.related-services h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    margin-bottom: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-card {
    background: #F9FAFB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card__content {
    padding: 20px;
}

.related-card__content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.related-card__content p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .service-hero .container {
        grid-template-columns: 1fr;
    }

    .service-hero__title {
        font-size: 36px;
    }

    .quote-form-card {
        max-width: 400px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-details__grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}